Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-arch/unshield: ChangeLog unshield-0.6.ebuild
Date: Sun, 27 Feb 2011 10:34:44
Message-Id: 20110227103425.52D0C2004F@flycatcher.gentoo.org
1 ssuominen 11/02/27 10:34:25
2
3 Modified: ChangeLog unshield-0.6.ebuild
4 Log:
5 USE="static-libs" and remove libunshield.la in favour of libunshield.pc.
6
7 (Portage version: 2.2.0_alpha24/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.19 app-arch/unshield/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/unshield/ChangeLog?rev=1.19&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/unshield/ChangeLog?rev=1.19&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/unshield/ChangeLog?r1=1.18&r2=1.19
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-arch/unshield/ChangeLog,v
19 retrieving revision 1.18
20 retrieving revision 1.19
21 diff -u -r1.18 -r1.19
22 --- ChangeLog 7 Aug 2009 01:41:44 -0000 1.18
23 +++ ChangeLog 27 Feb 2011 10:34:25 -0000 1.19
24 @@ -1,6 +1,9 @@
25 # ChangeLog for app-arch/unshield
26 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-arch/unshield/ChangeLog,v 1.18 2009/08/07 01:41:44 mescalinum Exp $
28 +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/app-arch/unshield/ChangeLog,v 1.19 2011/02/27 10:34:25 ssuominen Exp $
30 +
31 + 27 Feb 2011; Samuli Suominen <ssuominen@g.o> unshield-0.6.ebuild:
32 + USE="static-libs" and remove libunshield.la in favour of libunshield.pc.
33
34 *unshield-0.6 (07 Aug 2009)
35
36
37
38
39 1.3 app-arch/unshield/unshield-0.6.ebuild
40
41 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/unshield/unshield-0.6.ebuild?rev=1.3&view=markup
42 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/unshield/unshield-0.6.ebuild?rev=1.3&content-type=text/plain
43 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/unshield/unshield-0.6.ebuild?r1=1.2&r2=1.3
44
45 Index: unshield-0.6.ebuild
46 ===================================================================
47 RCS file: /var/cvsroot/gentoo-x86/app-arch/unshield/unshield-0.6.ebuild,v
48 retrieving revision 1.2
49 retrieving revision 1.3
50 diff -u -r1.2 -r1.3
51 --- unshield-0.6.ebuild 27 Feb 2011 10:13:09 -0000 1.2
52 +++ unshield-0.6.ebuild 27 Feb 2011 10:34:25 -0000 1.3
53 @@ -1,6 +1,6 @@
54 # Copyright 1999-2011 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 -# $Header: /var/cvsroot/gentoo-x86/app-arch/unshield/unshield-0.6.ebuild,v 1.2 2011/02/27 10:13:09 ssuominen Exp $
57 +# $Header: /var/cvsroot/gentoo-x86/app-arch/unshield/unshield-0.6.ebuild,v 1.3 2011/02/27 10:34:25 ssuominen Exp $
58
59 EAPI=2
60
61 @@ -11,12 +11,20 @@
62 LICENSE="MIT"
63 SLOT="0"
64 KEYWORDS="~amd64 ~hppa ~ppc ~x86"
65 -IUSE=""
66 +IUSE="static-libs"
67
68 RDEPEND=">=sys-libs/zlib-1.1.4"
69 DEPEND="${RDEPEND}"
70
71 +src_configure() {
72 + econf \
73 + --disable-dependency-tracking \
74 + $(use_enable static-libs static)
75 +}
76 +
77 src_install() {
78 emake DESTDIR="${D}" install || die
79 dodoc README
80 +
81 + find "${D}" -name '*.la' -exec rm -f {} +
82 }