diff options
author | 2013-01-04 18:46:03 +0000 | |
---|---|---|
committer | 2013-01-04 18:46:03 +0000 | |
commit | f786504470cb74a86099604e9db506b9ab980da6 (patch) | |
tree | d8559e740b0e8ec2f47fed30695c8917681bdf7e /media-libs | |
parent | Version bump (diff) | |
download | gentoo-2-f786504470cb74a86099604e9db506b9ab980da6.tar.gz gentoo-2-f786504470cb74a86099604e9db506b9ab980da6.tar.bz2 gentoo-2-f786504470cb74a86099604e9db506b9ab980da6.zip |
Remove old.
(Portage version: 2.2.0_alpha149/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
Diffstat (limited to 'media-libs')
-rw-r--r-- | media-libs/portaudio/ChangeLog | 8 | ||||
-rw-r--r-- | media-libs/portaudio/portaudio-19_pre20110326.ebuild | 53 |
2 files changed, 6 insertions, 55 deletions
diff --git a/media-libs/portaudio/ChangeLog b/media-libs/portaudio/ChangeLog index c8e20aa92037..2f1601c1972f 100644 --- a/media-libs/portaudio/ChangeLog +++ b/media-libs/portaudio/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for media-libs/portaudio -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/portaudio/ChangeLog,v 1.93 2012/11/13 16:49:09 ranger Exp $ +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/portaudio/ChangeLog,v 1.94 2013/01/04 18:46:03 radhermit Exp $ + + 04 Jan 2013; Tim Harder <radhermit@gentoo.org> + -portaudio-19_pre20110326.ebuild: + Remove old. 13 Nov 2012; Brent Baude <ranger@gentoo.org> portaudio-19_pre20111121.ebuild: Marking portaudio-19_pre20111121 ppc64 for bug 433982 diff --git a/media-libs/portaudio/portaudio-19_pre20110326.ebuild b/media-libs/portaudio/portaudio-19_pre20110326.ebuild deleted file mode 100644 index 46fc5d9e3493..000000000000 --- a/media-libs/portaudio/portaudio-19_pre20110326.ebuild +++ /dev/null @@ -1,53 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/portaudio/portaudio-19_pre20110326.ebuild,v 1.11 2012/09/28 08:08:28 chainsaw Exp $ - -EAPI=4 - -inherit libtool - -MY_P=pa_stable_v${PV/pre} - -DESCRIPTION="A free, cross-platform, open-source, audio I/O library" -HOMEPAGE="http://www.portaudio.com/" -SRC_URI="http://www.portaudio.com/archives/${MY_P}.tgz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sh sparc x86 ~amd64-linux ~x86-linux" -IUSE="alsa +cxx debug jack oss static-libs" - -RDEPEND="alsa? ( media-libs/alsa-lib ) - jack? ( media-sound/jack-audio-connection-kit )" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -S=${WORKDIR}/${PN} - -src_prepare() { - elibtoolize -} - -src_configure() { - econf \ - $(use_enable debug debug-output) \ - $(use_enable cxx) \ - $(use_enable static-libs static) \ - $(use_with alsa) \ - $(use_with jack) \ - $(use_with oss) -} - -src_compile() { - emake lib/libportaudio.la || die - emake || die -} - -src_install() { - default - - find "${D}" -name '*.la' -exec rm -f {} + - - dodoc README.txt - dohtml index.html -} |