diff options
author | 2011-03-29 05:38:17 +0000 | |
---|---|---|
committer | 2011-03-29 05:38:17 +0000 | |
commit | 948779c0b20fb78362adc9b732ab2cb87c0d3739 (patch) | |
tree | 42ebbbcabee8198d45add6f0de1090d7d635fc62 /media-libs | |
parent | [bump] dev-perl/Encode-Locale-1.20.0 (diff) | |
download | gentoo-2-948779c0b20fb78362adc9b732ab2cb87c0d3739.tar.gz gentoo-2-948779c0b20fb78362adc9b732ab2cb87c0d3739.tar.bz2 gentoo-2-948779c0b20fb78362adc9b732ab2cb87c0d3739.zip |
Version bump.
(Portage version: 2.2.0_alpha29/cvs/Linux x86_64)
Diffstat (limited to 'media-libs')
-rw-r--r-- | media-libs/portaudio/ChangeLog | 10 | ||||
-rw-r--r-- | media-libs/portaudio/portaudio-19_pre20110317.ebuild | 53 |
2 files changed, 61 insertions, 2 deletions
diff --git a/media-libs/portaudio/ChangeLog b/media-libs/portaudio/ChangeLog index 4b59ff2f4b1b..5437af783d93 100644 --- a/media-libs/portaudio/ChangeLog +++ b/media-libs/portaudio/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for media-libs/portaudio -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/portaudio/ChangeLog,v 1.70 2010/02/11 22:59:04 abcd Exp $ +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/portaudio/ChangeLog,v 1.71 2011/03/29 05:38:17 ssuominen Exp $ + +*portaudio-19_pre20110317 (29 Mar 2011) + + 29 Mar 2011; Samuli Suominen <ssuominen@gentoo.org> + +portaudio-19_pre20110317.ebuild: + Version bump. 11 Feb 2010; Jonathan Callen <abcd@gentoo.org> portaudio-19_pre20090514.ebuild: diff --git a/media-libs/portaudio/portaudio-19_pre20110317.ebuild b/media-libs/portaudio/portaudio-19_pre20110317.ebuild new file mode 100644 index 000000000000..e20689faff4f --- /dev/null +++ b/media-libs/portaudio/portaudio-19_pre20110317.ebuild @@ -0,0 +1,53 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/portaudio/portaudio-19_pre20110317.ebuild,v 1.1 2011/03/29 05:38:17 ssuominen Exp $ + +EAPI=4 + +inherit libtool + +MY_P=pa_stable_candidate_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="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 static-libs" + +RDEPEND="alsa? ( media-libs/alsa-lib ) + jack? ( media-sound/jack-audio-connection-kit )" +DEPEND="${RDEPEND} + dev-util/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 +} |