Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-libs/libqalculate: ChangeLog libqalculate-0.9.7.ebuild
Date: Thu, 29 Sep 2011 19:46:04
Message-Id: 20110929194548.B084320036@flycatcher.gentoo.org
1 ssuominen 11/09/29 19:45:48
2
3 Modified: ChangeLog libqalculate-0.9.7.ebuild
4 Log:
5 USE="static-libs" and remove libtool file
6
7 (Portage version: 2.2.0_alpha59/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.48 sci-libs/libqalculate/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/libqalculate/ChangeLog?rev=1.48&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/libqalculate/ChangeLog?rev=1.48&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/libqalculate/ChangeLog?r1=1.47&r2=1.48
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sci-libs/libqalculate/ChangeLog,v
19 retrieving revision 1.47
20 retrieving revision 1.48
21 diff -u -r1.47 -r1.48
22 --- ChangeLog 2 Mar 2011 20:59:42 -0000 1.47
23 +++ ChangeLog 29 Sep 2011 19:45:48 -0000 1.48
24 @@ -1,6 +1,10 @@
25 # ChangeLog for sci-libs/libqalculate
26 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/libqalculate/ChangeLog,v 1.47 2011/03/02 20:59:42 jlec Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/libqalculate/ChangeLog,v 1.48 2011/09/29 19:45:48 ssuominen Exp $
29 +
30 + 29 Sep 2011; Samuli Suominen <ssuominen@g.o>
31 + libqalculate-0.9.7.ebuild:
32 + USE="static-libs" and remove libtool file
33
34 02 Mar 2011; Justin Lecher <jlec@g.o> libqalculate-0.9.7.ebuild:
35 Correct Slots for gtk 3 introduction to tree
36
37
38
39 1.11 sci-libs/libqalculate/libqalculate-0.9.7.ebuild
40
41 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/libqalculate/libqalculate-0.9.7.ebuild?rev=1.11&view=markup
42 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/libqalculate/libqalculate-0.9.7.ebuild?rev=1.11&content-type=text/plain
43 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/libqalculate/libqalculate-0.9.7.ebuild?r1=1.10&r2=1.11
44
45 Index: libqalculate-0.9.7.ebuild
46 ===================================================================
47 RCS file: /var/cvsroot/gentoo-x86/sci-libs/libqalculate/libqalculate-0.9.7.ebuild,v
48 retrieving revision 1.10
49 retrieving revision 1.11
50 diff -u -r1.10 -r1.11
51 --- libqalculate-0.9.7.ebuild 2 Mar 2011 20:59:42 -0000 1.10
52 +++ libqalculate-0.9.7.ebuild 29 Sep 2011 19:45:48 -0000 1.11
53 @@ -1,8 +1,8 @@
54 # Copyright 1999-2011 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/libqalculate/libqalculate-0.9.7.ebuild,v 1.10 2011/03/02 20:59:42 jlec Exp $
57 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/libqalculate/libqalculate-0.9.7.ebuild,v 1.11 2011/09/29 19:45:48 ssuominen Exp $
58
59 -EAPI=2
60 +EAPI=4
61
62 DESCRIPTION="A modern multi-purpose calculator library"
63 HOMEPAGE="http://qalculate.sourceforge.net/"
64 @@ -11,7 +11,7 @@
65 LICENSE="GPL-2"
66 SLOT="0"
67 KEYWORDS="alpha amd64 ~arm hppa ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux"
68 -IUSE="readline"
69 +IUSE="readline static-libs"
70
71 COMMON_DEPEND=">=sci-libs/cln-1.2
72 dev-libs/libxml2:2
73 @@ -42,11 +42,12 @@
74
75 src_configure() {
76 econf \
77 - --disable-dependency-tracking \
78 + $(use_enable static-libs static) \
79 $(use_with readline)
80 }
81
82 src_install() {
83 - emake DESTDIR="${D}" install || die
84 + emake DESTDIR="${D}" install
85 dodoc AUTHORS ChangeLog NEWS README* TODO
86 + rm -f "${ED}"usr/lib*/${PN}.la
87 }