Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-libs/libsexy: ChangeLog libsexy-0.1.11-r2.ebuild
Date: Mon, 04 Apr 2011 15:18:03
Message-Id: 20110404151751.51C5020054@flycatcher.gentoo.org
1 ssuominen 11/04/04 15:17:51
2
3 Modified: ChangeLog libsexy-0.1.11-r2.ebuild
4 Log:
5 USE="static-libs" and punt useless libtool archive.
6
7 (Portage version: 2.2.0_alpha29/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.49 x11-libs/libsexy/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libsexy/ChangeLog?rev=1.49&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libsexy/ChangeLog?rev=1.49&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libsexy/ChangeLog?r1=1.48&r2=1.49
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/x11-libs/libsexy/ChangeLog,v
19 retrieving revision 1.48
20 retrieving revision 1.49
21 diff -u -r1.48 -r1.49
22 --- ChangeLog 20 May 2010 01:53:20 -0000 1.48
23 +++ ChangeLog 4 Apr 2011 15:17:51 -0000 1.49
24 @@ -1,6 +1,9 @@
25 # ChangeLog for x11-libs/libsexy
26 -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/libsexy/ChangeLog,v 1.48 2010/05/20 01:53:20 jer Exp $
28 +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/libsexy/ChangeLog,v 1.49 2011/04/04 15:17:51 ssuominen Exp $
30 +
31 + 04 Apr 2011; Samuli Suominen <ssuominen@g.o> libsexy-0.1.11-r2.ebuild:
32 + USE="static-libs" and punt useless libtool archive.
33
34 20 May 2010; Jeroen Roovers <jer@g.o> libsexy-0.1.11-r1.ebuild:
35 Stable for HPPA (bug #305521).
36
37
38
39 1.2 x11-libs/libsexy/libsexy-0.1.11-r2.ebuild
40
41 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libsexy/libsexy-0.1.11-r2.ebuild?rev=1.2&view=markup
42 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libsexy/libsexy-0.1.11-r2.ebuild?rev=1.2&content-type=text/plain
43 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libsexy/libsexy-0.1.11-r2.ebuild?r1=1.1&r2=1.2
44
45 Index: libsexy-0.1.11-r2.ebuild
46 ===================================================================
47 RCS file: /var/cvsroot/gentoo-x86/x11-libs/libsexy/libsexy-0.1.11-r2.ebuild,v
48 retrieving revision 1.1
49 retrieving revision 1.2
50 diff -u -r1.1 -r1.2
51 --- libsexy-0.1.11-r2.ebuild 25 Feb 2010 20:50:54 -0000 1.1
52 +++ libsexy-0.1.11-r2.ebuild 4 Apr 2011 15:17:51 -0000 1.2
53 @@ -1,6 +1,6 @@
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/x11-libs/libsexy/libsexy-0.1.11-r2.ebuild,v 1.1 2010/02/25 20:50:54 grobian Exp $
58 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/libsexy/libsexy-0.1.11-r2.ebuild,v 1.2 2011/04/04 15:17:51 ssuominen Exp $
59
60 EAPI=3
61 inherit autotools eutils
62 @@ -12,7 +12,7 @@
63 LICENSE="LGPL-2.1"
64 SLOT="0"
65 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
66 -IUSE="doc"
67 +IUSE="doc static-libs"
68
69 RDEPEND=">=dev-libs/glib-2.6:2
70 >=x11-libs/gtk+-2.6:2
71 @@ -38,6 +38,7 @@
72 src_configure() {
73 econf \
74 --disable-dependency-tracking \
75 + $(use_enable static-libs static) \
76 $(use_enable doc gtk-doc) \
77 --with-html-dir="${EPREFIX}"/usr/share/doc/${PF}/html
78 }
79 @@ -45,4 +46,6 @@
80 src_install() {
81 emake DESTDIR="${D}" install || die
82 dodoc AUTHORS ChangeLog NEWS
83 +
84 + find "${ED}" -name '*.la' -exec rm -f {} +
85 }