diff options
author | 2011-03-31 21:06:38 +0000 | |
---|---|---|
committer | 2011-03-31 21:06:38 +0000 | |
commit | 53f2c9127f55450a583941a2c0a0c42fc3a66d3f (patch) | |
tree | 0656d25c94a741e992664f2e404389c37171eaff /media-libs/portaudio | |
parent | Fix installation with USE="oss" wrt #361369 by Kamen Dokov. (diff) | |
download | gentoo-2-53f2c9127f55450a583941a2c0a0c42fc3a66d3f.tar.gz gentoo-2-53f2c9127f55450a583941a2c0a0c42fc3a66d3f.tar.bz2 gentoo-2-53f2c9127f55450a583941a2c0a0c42fc3a66d3f.zip |
old
(Portage version: 2.2.0_alpha29/cvs/Linux x86_64)
Diffstat (limited to 'media-libs/portaudio')
-rw-r--r-- | media-libs/portaudio/portaudio-19_pre20090514.ebuild | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/media-libs/portaudio/portaudio-19_pre20090514.ebuild b/media-libs/portaudio/portaudio-19_pre20090514.ebuild deleted file mode 100644 index 82cc80f11084..000000000000 --- a/media-libs/portaudio/portaudio-19_pre20090514.ebuild +++ /dev/null @@ -1,45 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/portaudio/portaudio-19_pre20090514.ebuild,v 1.3 2010/02/11 22:59:04 abcd Exp $ - -EAPI=2 - -inherit libtool - -MY_P=pa_stable_v${PV/pre} - -DESCRIPTION="An open-source cross platform audio API." -HOMEPAGE="http://www.portaudio.com" -SRC_URI="mirror://gentoo/${MY_P}.tar.gz" - -LICENSE="as-is" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos" -IUSE="alsa +cxx debug jack oss" - -RDEPEND="alsa? ( media-libs/alsa-lib ) - jack? ( >=media-sound/jack-audio-connection-kit-0.109.2-r1 )" -DEPEND="${RDEPEND} - dev-util/pkgconfig" - -S=${WORKDIR}/${PN} - -src_prepare() { - elibtoolize -} - -src_configure() { - econf $(use_enable cxx) $(use_with jack) $(use_with alsa) \ - $(use_with oss) $(use_with debug debug-output) -} - -src_compile() { - emake lib/libportaudio.la || die - emake || die -} - -src_install() { - emake DESTDIR="${D}" install || die "emake install failed." - dodoc README.txt - dohtml index.html -} |