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/adplug: adplug-2.2.1.ebuild ChangeLog
Date: Fri, 23 Dec 2011 00:42:28
Message-Id: 20111223004218.A8ACC2004B@flycatcher.gentoo.org
1 ssuominen 11/12/23 00:42:18
2
3 Modified: adplug-2.2.1.ebuild ChangeLog
4 Log:
5 USE="static-libs" and remove unnecessary libadplug.la libtool archive.
6
7 (Portage version: 2.2.0_alpha79/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.4 media-libs/adplug/adplug-2.2.1.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/adplug/adplug-2.2.1.ebuild?rev=1.4&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/adplug/adplug-2.2.1.ebuild?rev=1.4&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/adplug/adplug-2.2.1.ebuild?r1=1.3&r2=1.4
15
16 Index: adplug-2.2.1.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-libs/adplug/adplug-2.2.1.ebuild,v
19 retrieving revision 1.3
20 retrieving revision 1.4
21 diff -u -r1.3 -r1.4
22 --- adplug-2.2.1.ebuild 7 Dec 2011 07:53:03 -0000 1.3
23 +++ adplug-2.2.1.ebuild 23 Dec 2011 00:42:18 -0000 1.4
24 @@ -1,8 +1,8 @@
25 # Copyright 1999-2011 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-libs/adplug/adplug-2.2.1.ebuild,v 1.3 2011/12/07 07:53:03 phajdan.jr Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-libs/adplug/adplug-2.2.1.ebuild,v 1.4 2011/12/23 00:42:18 ssuominen Exp $
29
30 -inherit eutils
31 +EAPI=4
32
33 DESCRIPTION="A free, cross-platform, hardware independent AdLib sound player library"
34 HOMEPAGE="http://adplug.sourceforge.net"
35 @@ -11,18 +11,21 @@
36 LICENSE="LGPL-2.1"
37 SLOT="0"
38 KEYWORDS="amd64 ~ppc ~sparc x86"
39 -IUSE="debug"
40 +IUSE="debug static-libs"
41
42 RDEPEND=">=dev-cpp/libbinio-1.4"
43 DEPEND="${RDEPEND}
44 dev-util/pkgconfig"
45
46 -src_compile() {
47 - econf --disable-dependency-tracking $(use_enable debug)
48 - emake || die "emake failed."
49 +DOCS=( AUTHORS BUGS ChangeLog NEWS README TODO )
50 +
51 +src_configure() {
52 + econf \
53 + $(use_enable static-libs static) \
54 + $(use_enable debug)
55 }
56
57 src_install() {
58 - emake DESTDIR="${D}" install || die "emake install failed."
59 - dodoc AUTHORS BUGS ChangeLog NEWS README TODO
60 + default
61 + rm -f "${ED}"usr/lib*/lib${PN}.la
62 }
63
64
65
66 1.33 media-libs/adplug/ChangeLog
67
68 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/adplug/ChangeLog?rev=1.33&view=markup
69 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/adplug/ChangeLog?rev=1.33&content-type=text/plain
70 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/adplug/ChangeLog?r1=1.32&r2=1.33
71
72 Index: ChangeLog
73 ===================================================================
74 RCS file: /var/cvsroot/gentoo-x86/media-libs/adplug/ChangeLog,v
75 retrieving revision 1.32
76 retrieving revision 1.33
77 diff -u -r1.32 -r1.33
78 --- ChangeLog 7 Dec 2011 07:53:03 -0000 1.32
79 +++ ChangeLog 23 Dec 2011 00:42:18 -0000 1.33
80 @@ -1,6 +1,9 @@
81 # ChangeLog for media-libs/adplug
82 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
83 -# $Header: /var/cvsroot/gentoo-x86/media-libs/adplug/ChangeLog,v 1.32 2011/12/07 07:53:03 phajdan.jr Exp $
84 +# $Header: /var/cvsroot/gentoo-x86/media-libs/adplug/ChangeLog,v 1.33 2011/12/23 00:42:18 ssuominen Exp $
85 +
86 + 23 Dec 2011; Samuli Suominen <ssuominen@g.o> adplug-2.2.1.ebuild:
87 + USE="static-libs" and remove unnecessary libadplug.la libtool archive.
88
89 07 Dec 2011; Pawel Hajdan jr <phajdan.jr@g.o> adplug-2.2.1.ebuild:
90 x86 stable wrt bug #391657