Gentoo Archives: gentoo-commits

From: "Tomas Chvatal (scarabeus)" <scarabeus@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: Tue, 26 Apr 2011 20:14:09
Message-Id: 20110426201400.73E7120054@flycatcher.gentoo.org
1 scarabeus 11/04/26 20:14:00
2
3 Modified: ChangeLog audiofile-0.2.7.ebuild
4 Log:
5 Introduce possibility to disable static library.
6
7 (Portage version: 2.2.0_alpha30/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.81 media-libs/audiofile/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/audiofile/ChangeLog?rev=1.81&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/audiofile/ChangeLog?rev=1.81&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/audiofile/ChangeLog?r1=1.80&r2=1.81
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-libs/audiofile/ChangeLog,v
19 retrieving revision 1.80
20 retrieving revision 1.81
21 diff -u -r1.80 -r1.81
22 --- ChangeLog 3 Oct 2010 16:42:40 -0000 1.80
23 +++ ChangeLog 26 Apr 2011 20:14:00 -0000 1.81
24 @@ -1,6 +1,9 @@
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.80 2010/10/03 16:42:40 armin76 Exp $
28 +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/media-libs/audiofile/ChangeLog,v 1.81 2011/04/26 20:14:00 scarabeus Exp $
30 +
31 + 26 Apr 2011; Tomáš Chvátal <scarabeus@g.o> audiofile-0.2.7.ebuild:
32 + Introduce possibility to disable static library.
33
34 03 Oct 2010; Raúl Porcel <armin76@g.o> audiofile-0.2.7.ebuild:
35 ia64/sh/sparc stable wrt #327611
36
37
38
39 1.11 media-libs/audiofile/audiofile-0.2.7.ebuild
40
41 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/audiofile/audiofile-0.2.7.ebuild?rev=1.11&view=markup
42 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/audiofile/audiofile-0.2.7.ebuild?rev=1.11&content-type=text/plain
43 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/audiofile/audiofile-0.2.7.ebuild?r1=1.10&r2=1.11
44
45 Index: audiofile-0.2.7.ebuild
46 ===================================================================
47 RCS file: /var/cvsroot/gentoo-x86/media-libs/audiofile/audiofile-0.2.7.ebuild,v
48 retrieving revision 1.10
49 retrieving revision 1.11
50 diff -u -r1.10 -r1.11
51 --- audiofile-0.2.7.ebuild 3 Oct 2010 16:42:40 -0000 1.10
52 +++ audiofile-0.2.7.ebuild 26 Apr 2011 20:14:00 -0000 1.11
53 @@ -1,8 +1,9 @@
54 -# Copyright 1999-2010 Gentoo Foundation
55 +# Copyright 1999-2011 Gentoo Foundation
56 # Distributed under the terms of the GNU General Public License v2
57 -# $Header: /var/cvsroot/gentoo-x86/media-libs/audiofile/audiofile-0.2.7.ebuild,v 1.10 2010/10/03 16:42:40 armin76 Exp $
58 +# $Header: /var/cvsroot/gentoo-x86/media-libs/audiofile/audiofile-0.2.7.ebuild,v 1.11 2011/04/26 20:14:00 scarabeus Exp $
59 +
60 +EAPI=4
61
62 -EAPI=3
63 inherit autotools eutils
64
65 DESCRIPTION="An elegant API for accessing audio files"
66 @@ -12,7 +13,9 @@
67 LICENSE="GPL-2 LGPL-2"
68 SLOT="0"
69 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"
70 -IUSE=""
71 +IUSE="static-libs"
72 +
73 +DOCS=( ACKNOWLEDGEMENTS AUTHORS ChangeLog NEWS NOTES README TODO )
74
75 src_prepare() {
76 epatch "${FILESDIR}"/${PN}-largefile.patch
77 @@ -26,11 +29,11 @@
78
79 src_configure() {
80 econf \
81 - --disable-dependency-tracking \
82 + $(use_enable static-libs static) \
83 --enable-largefile
84 }
85
86 src_install() {
87 - emake DESTDIR="${D}" install || die
88 - dodoc ACKNOWLEDGEMENTS AUTHORS ChangeLog NEWS NOTES README TODO || die
89 + default
90 + find "${ED}" -name '*.la' -delete
91 }