diff options
author | D.M.D. Ljungmark <spider@gentoo.org> | 2004-03-26 09:10:57 +0000 |
---|---|---|
committer | D.M.D. Ljungmark <spider@gentoo.org> | 2004-03-26 09:10:57 +0000 |
commit | 593d69598607147d5f11c58b6fc3ee95d523d4b2 (patch) | |
tree | b32676f0dd2b883134ddf479d13d7c9fd0fa3870 /media-libs/libao/libao-0.8.5.ebuild | |
parent | fix bug #45774. (diff) | |
download | historical-593d69598607147d5f11c58b6fc3ee95d523d4b2.tar.gz historical-593d69598607147d5f11c58b6fc3ee95d523d4b2.tar.bz2 historical-593d69598607147d5f11c58b6fc3ee95d523d4b2.zip |
" Remove alsa 1.0 and esound patches"
Diffstat (limited to 'media-libs/libao/libao-0.8.5.ebuild')
-rw-r--r-- | media-libs/libao/libao-0.8.5.ebuild | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/media-libs/libao/libao-0.8.5.ebuild b/media-libs/libao/libao-0.8.5.ebuild new file mode 100644 index 000000000000..58213e77d44f --- /dev/null +++ b/media-libs/libao/libao-0.8.5.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libao/libao-0.8.5.ebuild,v 1.1 2004/03/26 09:10:56 spider Exp $ + +inherit libtool + +DESCRIPTION="the audio output library" +HOMEPAGE="http://www.xiph.org/ao/" +SRC_URI="http://www.xiph.org/ao/src/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86 ~ppc ~sparc ~alpha ~hppa ~amd64 ~mips" +IUSE="alsa arts esd nas mmap" + +DEPEND="virtual/glibc + alsa? ( media-libs/alsa-lib ) + arts? ( kde-base/arts ) + esd? ( >=media-sound/esound-0.2.22 ) + nas? ( media-libs/nas )" + +src_unpack() { + unpack ${A} + cd ${S} + elibtoolize +} + +src_compile() { + # this is called alsa09 even if it is alsa 1.0 + econf \ + `use_enable alsa alsa09` \ + `use_enable mmap alsa09-mmap` \ + `use_enable arts` \ + `use_enable esd` \ + `use_enable nas` \ + --enable-shared \ + --enable-static || die + + # See bug #37218. Build problems with parallel make. + emake -j1 || die +} + +src_install () { + make DESTDIR=${D} install || die + + rm -rf ${D}/usr/share/doc + dodoc AUTHORS CHANGES COPYING README TODO + dohtml -A c doc/*.html +} |