diff options
author | Tim Harder <radhermit@gentoo.org> | 2012-05-01 13:18:58 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2012-05-01 13:18:58 +0000 |
commit | 164ea86ef98069378906a3e9a47afc753e7e0cef (patch) | |
tree | 343465657598fbcf335727703343f2ef6f5090db /media-libs | |
parent | Add OSX support, bug #359993 (diff) | |
download | gentoo-2-164ea86ef98069378906a3e9a47afc753e7e0cef.tar.gz gentoo-2-164ea86ef98069378906a3e9a47afc753e7e0cef.tar.bz2 gentoo-2-164ea86ef98069378906a3e9a47afc753e7e0cef.zip |
Version bump.
(Portage version: 2.2.0_alpha101/cvs/Linux x86_64)
Diffstat (limited to 'media-libs')
-rw-r--r-- | media-libs/audiofile/ChangeLog | 7 | ||||
-rw-r--r-- | media-libs/audiofile/audiofile-0.3.4.ebuild | 40 |
2 files changed, 46 insertions, 1 deletions
diff --git a/media-libs/audiofile/ChangeLog b/media-libs/audiofile/ChangeLog index fbed48592efa..e462399e769e 100644 --- a/media-libs/audiofile/ChangeLog +++ b/media-libs/audiofile/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-libs/audiofile # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/audiofile/ChangeLog,v 1.105 2012/04/29 15:58:13 maekke Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/audiofile/ChangeLog,v 1.106 2012/05/01 13:18:58 radhermit Exp $ + +*audiofile-0.3.4 (01 May 2012) + + 01 May 2012; Tim Harder <radhermit@gentoo.org> +audiofile-0.3.4.ebuild: + Version bump. 29 Apr 2012; Markus Meier <maekke@gentoo.org> audiofile-0.3.3.ebuild: x86 stable, bug #410611 diff --git a/media-libs/audiofile/audiofile-0.3.4.ebuild b/media-libs/audiofile/audiofile-0.3.4.ebuild new file mode 100644 index 000000000000..459ec1dc9839 --- /dev/null +++ b/media-libs/audiofile/audiofile-0.3.4.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/audiofile/audiofile-0.3.4.ebuild,v 1.1 2012/05/01 13:18:58 radhermit Exp $ + +EAPI="4" + +inherit autotools eutils gnome.org + +DESCRIPTION="An elegant API for accessing audio files" +HOMEPAGE="http://www.68k.org/~michael/audiofile/" + +LICENSE="GPL-2 LGPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris" +IUSE="static-libs" + +DOCS=( ACKNOWLEDGEMENTS AUTHORS ChangeLog NEWS NOTES README TODO ) + +src_prepare() { + # Don't build examples + sed -i -e "/^SRC_SUBDIRS/s: examples::" Makefile.am || die + + eautoreconf +} + +src_configure() { + econf \ + $(use_enable static-libs static) \ + --disable-werror \ + --enable-largefile +} + +src_test() { + emake -C test check +} + +src_install() { + default + find "${ED}" -name '*.la' -delete +} |