Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/audiofile: ChangeLog audiofile-0.2.7.ebuild
Date: Wed, 28 Apr 2010 16:03:44
Message-Id: 20100428160340.8ED0C2C065@corvid.gentoo.org
1 ssuominen 10/04/28 16:03:40
2
3 Modified: ChangeLog
4 Added: audiofile-0.2.7.ebuild
5 Log:
6 Version bump.
7 (Portage version: 2.2_rc67/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.72 media-libs/audiofile/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/audiofile/ChangeLog?rev=1.72&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/audiofile/ChangeLog?rev=1.72&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/audiofile/ChangeLog?r1=1.71&r2=1.72
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-libs/audiofile/ChangeLog,v
19 retrieving revision 1.71
20 retrieving revision 1.72
21 diff -u -r1.71 -r1.72
22 --- ChangeLog 21 Feb 2010 04:55:25 -0000 1.71
23 +++ ChangeLog 28 Apr 2010 16:03:40 -0000 1.72
24 @@ -1,6 +1,12 @@
25 # ChangeLog for media-libs/audiofile
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-libs/audiofile/ChangeLog,v 1.71 2010/02/21 04:55:25 abcd Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-libs/audiofile/ChangeLog,v 1.72 2010/04/28 16:03:40 ssuominen Exp $
29 +
30 +*audiofile-0.2.7 (28 Apr 2010)
31 +
32 + 28 Apr 2010; Samuli Suominen <ssuominen@g.o>
33 + +audiofile-0.2.7.ebuild:
34 + Version bump.
35
36 21 Feb 2010; Jonathan Callen <abcd@g.o> audiofile-0.2.6-r4.ebuild:
37 Transfer prefix keywords (no other changes)
38
39
40
41 1.1 media-libs/audiofile/audiofile-0.2.7.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/audiofile/audiofile-0.2.7.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/audiofile/audiofile-0.2.7.ebuild?rev=1.1&content-type=text/plain
45
46 Index: audiofile-0.2.7.ebuild
47 ===================================================================
48 # Copyright 1999-2010 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/media-libs/audiofile/audiofile-0.2.7.ebuild,v 1.1 2010/04/28 16:03:40 ssuominen Exp $
51
52 EAPI=3
53 inherit autotools eutils
54
55 DESCRIPTION="An elegant API for accessing audio files"
56 HOMEPAGE="http://www.68k.org/~michael/audiofile/"
57 SRC_URI="http://www.68k.org/~michael/${PN}/${P}.tar.gz"
58
59 LICENSE="GPL-2 LGPL-2"
60 SLOT="0"
61 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"
62 IUSE=""
63
64 src_prepare() {
65 epatch "${FILESDIR}"/${PN}-largefile.patch
66
67 sed -i \
68 -e 's:noinst_PROGRAMS:check_PROGRAMS:' \
69 test/Makefile.am || die
70
71 eautoreconf
72 }
73
74 src_configure() {
75 econf \
76 --disable-dependency-tracking \
77 --enable-largefile
78 }
79
80 src_install() {
81 emake DESTDIR="${D}" install || die
82 dodoc ACKNOWLEDGEMENTS AUTHORS ChangeLog NEWS NOTES README TODO || die
83 }