diff options
author | 2011-09-15 07:22:23 +0000 | |
---|---|---|
committer | 2011-09-15 07:22:23 +0000 | |
commit | 25040dbe0d5d595fe08beb9de0714afe1582e7c9 (patch) | |
tree | d702f4c10bf2e8fd9b5d8c8c1880bbc9a15a746c /media-libs/audiofile | |
parent | Add bug 383027 to previous changelog commit. (diff) | |
download | gentoo-2-25040dbe0d5d595fe08beb9de0714afe1582e7c9.tar.gz gentoo-2-25040dbe0d5d595fe08beb9de0714afe1582e7c9.tar.bz2 gentoo-2-25040dbe0d5d595fe08beb9de0714afe1582e7c9.zip |
Version bump.
(Portage version: 2.2.0_alpha55/cvs/Linux x86_64)
Diffstat (limited to 'media-libs/audiofile')
-rw-r--r-- | media-libs/audiofile/ChangeLog | 7 | ||||
-rw-r--r-- | media-libs/audiofile/audiofile-0.3.0.ebuild | 40 |
2 files changed, 46 insertions, 1 deletions
diff --git a/media-libs/audiofile/ChangeLog b/media-libs/audiofile/ChangeLog index 1f2d8835aeed..4f415dd0a010 100644 --- a/media-libs/audiofile/ChangeLog +++ b/media-libs/audiofile/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-libs/audiofile # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/audiofile/ChangeLog,v 1.81 2011/04/26 20:14:00 scarabeus Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/audiofile/ChangeLog,v 1.82 2011/09/15 07:22:23 radhermit Exp $ + +*audiofile-0.3.0 (15 Sep 2011) + + 15 Sep 2011; Tim Harder <radhermit@gentoo.org> +audiofile-0.3.0.ebuild: + Version bump. 26 Apr 2011; Tomáš Chvátal <scarabeus@gentoo.org> audiofile-0.2.7.ebuild: Introduce possibility to disable static library. diff --git a/media-libs/audiofile/audiofile-0.3.0.ebuild b/media-libs/audiofile/audiofile-0.3.0.ebuild new file mode 100644 index 000000000000..7e1ba71ab398 --- /dev/null +++ b/media-libs/audiofile/audiofile-0.3.0.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/audiofile/audiofile-0.3.0.ebuild,v 1.1 2011/09/15 07:22:23 radhermit Exp $ + +EAPI=4 + +inherit autotools + +DESCRIPTION="An elegant API for accessing audio files" +HOMEPAGE="http://www.68k.org/~michael/audiofile/" +SRC_URI="http://www.68k.org/~michael/${PN}/${P}.tar.gz" + +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() { + sed -i -e "/^AM_CFLAGS =/s:-Werror ::" \ + libaudiofile/Makefile.am libaudiofile/modules/Makefile.am || die + + eautoreconf +} + +src_configure() { + econf \ + $(use_enable static-libs static) \ + --enable-largefile +} + +src_test() { + emake -C test check +} + +src_install() { + default + find "${ED}" -name '*.la' -delete +} |