diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2008-01-31 13:42:51 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2008-01-31 13:42:51 +0000 |
commit | 7832f882ccb743f6b1c64bdd945a07cff7e4714e (patch) | |
tree | 48b362fd00fdc9d242098041b1bb0a565c3a20c2 /media-libs/libao/libao-0.8.5.ebuild | |
parent | Remove mask for netperf. New version includes security fixes. (diff) | |
download | historical-7832f882ccb743f6b1c64bdd945a07cff7e4714e.tar.gz historical-7832f882ccb743f6b1c64bdd945a07cff7e4714e.tar.bz2 historical-7832f882ccb743f6b1c64bdd945a07cff7e4714e.zip |
amd64 stable wrt #207682
Package-Manager: portage-2.1.4
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, 0 insertions, 49 deletions
diff --git a/media-libs/libao/libao-0.8.5.ebuild b/media-libs/libao/libao-0.8.5.ebuild deleted file mode 100644 index 265a5aeaddf5..000000000000 --- a/media-libs/libao/libao-0.8.5.ebuild +++ /dev/null @@ -1,49 +0,0 @@ -# Copyright 1999-2006 Gentoo Foundation -# 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.22 2008/01/29 21:45:57 grobian Exp $ - -inherit libtool eutils - -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="alpha amd64 arm hppa ia64 mips ppc ppc64 sh sparc x86" -IUSE="alsa arts esd nas mmap" - -DEPEND="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 -} |