diff options
author | 2011-11-30 15:24:04 +0000 | |
---|---|---|
committer | 2011-11-30 15:24:04 +0000 | |
commit | fc225667ddead059d483be523edd9a80260e2ab2 (patch) | |
tree | 0640b50abf2164cc8048558d8f70be6a2d1e86b5 /media-libs | |
parent | Version bump. (diff) | |
download | gentoo-2-fc225667ddead059d483be523edd9a80260e2ab2.tar.gz gentoo-2-fc225667ddead059d483be523edd9a80260e2ab2.tar.bz2 gentoo-2-fc225667ddead059d483be523edd9a80260e2ab2.zip |
Version bump, remove old.
(Portage version: 2.1.10.38/cvs/Linux x86_64)
Diffstat (limited to 'media-libs')
-rw-r--r-- | media-libs/audiofile/ChangeLog | 8 | ||||
-rw-r--r-- | media-libs/audiofile/audiofile-0.3.2.ebuild (renamed from media-libs/audiofile/audiofile-0.2.7.ebuild) | 21 | ||||
-rw-r--r-- | media-libs/audiofile/files/audiofile-largefile.patch | 24 |
3 files changed, 18 insertions, 35 deletions
diff --git a/media-libs/audiofile/ChangeLog b/media-libs/audiofile/ChangeLog index 0c4fa030266f..44a527ebd7ba 100644 --- a/media-libs/audiofile/ChangeLog +++ b/media-libs/audiofile/ChangeLog @@ -1,6 +1,12 @@ # 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.90 2011/10/30 17:16:42 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/audiofile/ChangeLog,v 1.91 2011/11/30 15:24:04 pacho Exp $ + +*audiofile-0.3.2 (30 Nov 2011) + + 30 Nov 2011; Pacho Ramos <pacho@gentoo.org> +audiofile-0.3.2.ebuild, + -audiofile-0.2.7.ebuild, -files/audiofile-largefile.patch: + Version bump, remove old. 30 Oct 2011; Raúl Porcel <armin76@gentoo.org> audiofile-0.3.1.ebuild: alpha/ia64/sh/sparc stable wrt #385699 diff --git a/media-libs/audiofile/audiofile-0.2.7.ebuild b/media-libs/audiofile/audiofile-0.3.2.ebuild index 370502b9bc5e..31b841a28284 100644 --- a/media-libs/audiofile/audiofile-0.2.7.ebuild +++ b/media-libs/audiofile/audiofile-0.3.2.ebuild @@ -1,28 +1,24 @@ # 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.2.7.ebuild,v 1.11 2011/04/26 20:14:00 scarabeus Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/audiofile/audiofile-0.3.2.ebuild,v 1.1 2011/11/30 15:24:04 pacho Exp $ -EAPI=4 +EAPI="4" -inherit autotools eutils +inherit autotools gnome.org 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" +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() { - epatch "${FILESDIR}"/${PN}-largefile.patch - - sed -i \ - -e 's:noinst_PROGRAMS:check_PROGRAMS:' \ - test/Makefile.am || die + # Don't build examples + sed -i -e "/^SRC_SUBDIRS/s: examples::" Makefile.am || die eautoreconf } @@ -30,9 +26,14 @@ src_prepare() { 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 diff --git a/media-libs/audiofile/files/audiofile-largefile.patch b/media-libs/audiofile/files/audiofile-largefile.patch deleted file mode 100644 index 64796a729f14..000000000000 --- a/media-libs/audiofile/files/audiofile-largefile.patch +++ /dev/null @@ -1,24 +0,0 @@ -http://bugs.gentoo.org/118600 -http://bugs.gentoo.org/237600 - ---- libaudiofile/audiofile.h -+++ libaudiofile/audiofile.h -@@ -29,6 +29,7 @@ - - #include <sys/types.h> - #include <aupvlist.h> -+#include <stdint.h> - - #define LIBAUDIOFILE_MAJOR_VERSION 0 - #define LIBAUDIOFILE_MINOR_VERSION 2 -@@ -45,8 +45,8 @@ typedef struct _AFfilesetup *AFfilesetup - typedef struct _AFfilehandle *AFfilehandle; - typedef void (*AFerrfunc)(long, const char *); - --typedef off_t AFframecount; --typedef off_t AFfileoffset; -+typedef int64_t AFframecount; -+typedef int64_t AFfileoffset; - - #define AF_NULL_FILESETUP ((struct _AFfilesetup *) 0) - #define AF_NULL_FILEHANDLE ((struct _AFfilehandle *) 0) |