Gentoo Archives: gentoo-commits

From: "Pacho Ramos (pacho)" <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/audiofile: audiofile-0.3.2.ebuild ChangeLog audiofile-0.2.7.ebuild
Date: Wed, 30 Nov 2011 15:24:19
Message-Id: 20111130152404.4E6302004B@flycatcher.gentoo.org
1 pacho 11/11/30 15:24:04
2
3 Modified: ChangeLog
4 Added: audiofile-0.3.2.ebuild
5 Removed: audiofile-0.2.7.ebuild
6 Log:
7 Version bump, remove old.
8
9 (Portage version: 2.1.10.38/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.91 media-libs/audiofile/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/audiofile/ChangeLog?rev=1.91&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/audiofile/ChangeLog?rev=1.91&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/audiofile/ChangeLog?r1=1.90&r2=1.91
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/media-libs/audiofile/ChangeLog,v
21 retrieving revision 1.90
22 retrieving revision 1.91
23 diff -u -r1.90 -r1.91
24 --- ChangeLog 30 Oct 2011 17:16:42 -0000 1.90
25 +++ ChangeLog 30 Nov 2011 15:24:04 -0000 1.91
26 @@ -1,6 +1,12 @@
27 # ChangeLog for media-libs/audiofile
28 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/media-libs/audiofile/ChangeLog,v 1.90 2011/10/30 17:16:42 armin76 Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/media-libs/audiofile/ChangeLog,v 1.91 2011/11/30 15:24:04 pacho Exp $
31 +
32 +*audiofile-0.3.2 (30 Nov 2011)
33 +
34 + 30 Nov 2011; Pacho Ramos <pacho@g.o> +audiofile-0.3.2.ebuild,
35 + -audiofile-0.2.7.ebuild, -files/audiofile-largefile.patch:
36 + Version bump, remove old.
37
38 30 Oct 2011; Raúl Porcel <armin76@g.o> audiofile-0.3.1.ebuild:
39 alpha/ia64/sh/sparc stable wrt #385699
40
41
42
43 1.1 media-libs/audiofile/audiofile-0.3.2.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/audiofile/audiofile-0.3.2.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/audiofile/audiofile-0.3.2.ebuild?rev=1.1&content-type=text/plain
47
48 Index: audiofile-0.3.2.ebuild
49 ===================================================================
50 # Copyright 1999-2011 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/media-libs/audiofile/audiofile-0.3.2.ebuild,v 1.1 2011/11/30 15:24:04 pacho Exp $
53
54 EAPI="4"
55
56 inherit autotools gnome.org
57
58 DESCRIPTION="An elegant API for accessing audio files"
59 HOMEPAGE="http://www.68k.org/~michael/audiofile/"
60
61 LICENSE="GPL-2 LGPL-2"
62 SLOT="0"
63 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"
64 IUSE="static-libs"
65
66 DOCS=( ACKNOWLEDGEMENTS AUTHORS ChangeLog NEWS NOTES README TODO )
67
68 src_prepare() {
69 # Don't build examples
70 sed -i -e "/^SRC_SUBDIRS/s: examples::" Makefile.am || die
71
72 eautoreconf
73 }
74
75 src_configure() {
76 econf \
77 $(use_enable static-libs static) \
78 --disable-werror \
79 --enable-largefile
80 }
81
82 src_test() {
83 emake -C test check
84 }
85
86 src_install() {
87 default
88 find "${ED}" -name '*.la' -delete
89 }