Gentoo Archives: gentoo-commits

From: "Gilles Dartiguelongue (eva)" <eva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-libs/gtkmathview: ChangeLog gtkmathview-0.8.0.ebuild gtkmathview-0.7.6.ebuild
Date: Mon, 24 Jan 2011 18:55:50
Message-Id: 20110124185541.056FF20054@flycatcher.gentoo.org
1 eva 11/01/24 18:55:41
2
3 Modified: ChangeLog gtkmathview-0.8.0.ebuild
4 Removed: gtkmathview-0.7.6.ebuild
5 Log:
6 Clean up old revision. Bump to EAPI 3 for dependencies slot restrictions.
7
8 (Portage version: 2.2.0_alpha19/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.35 x11-libs/gtkmathview/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/gtkmathview/ChangeLog?rev=1.35&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/gtkmathview/ChangeLog?rev=1.35&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/gtkmathview/ChangeLog?r1=1.34&r2=1.35
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/x11-libs/gtkmathview/ChangeLog,v
20 retrieving revision 1.34
21 retrieving revision 1.35
22 diff -u -r1.34 -r1.35
23 --- ChangeLog 10 May 2009 15:53:42 -0000 1.34
24 +++ ChangeLog 24 Jan 2011 18:55:40 -0000 1.35
25 @@ -1,6 +1,10 @@
26 # ChangeLog for x11-libs/gtkmathview
27 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/gtkmathview/ChangeLog,v 1.34 2009/05/10 15:53:42 ssuominen Exp $
29 +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/gtkmathview/ChangeLog,v 1.35 2011/01/24 18:55:40 eva Exp $
31 +
32 + 24 Jan 2011; Gilles Dartiguelongue <eva@g.o>
33 + -gtkmathview-0.7.6.ebuild, gtkmathview-0.8.0.ebuild:
34 + Clean up old revision. Bump to EAPI 3 for dependencies slot restrictions.
35
36 10 May 2009; Samuli Suominen <ssuominen@g.o>
37 gtkmathview-0.8.0.ebuild, +files/gtkmathview-0.8.0-gcc44.patch:
38
39
40
41 1.11 x11-libs/gtkmathview/gtkmathview-0.8.0.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/gtkmathview/gtkmathview-0.8.0.ebuild?rev=1.11&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/gtkmathview/gtkmathview-0.8.0.ebuild?rev=1.11&content-type=text/plain
45 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/gtkmathview/gtkmathview-0.8.0.ebuild?r1=1.10&r2=1.11
46
47 Index: gtkmathview-0.8.0.ebuild
48 ===================================================================
49 RCS file: /var/cvsroot/gentoo-x86/x11-libs/gtkmathview/gtkmathview-0.8.0.ebuild,v
50 retrieving revision 1.10
51 retrieving revision 1.11
52 diff -u -r1.10 -r1.11
53 --- gtkmathview-0.8.0.ebuild 10 May 2009 15:53:42 -0000 1.10
54 +++ gtkmathview-0.8.0.ebuild 24 Jan 2011 18:55:40 -0000 1.11
55 @@ -1,6 +1,8 @@
56 -# Copyright 1999-2009 Gentoo Foundation
57 +# Copyright 1999-2011 Gentoo Foundation
58 # Distributed under the terms of the GNU General Public License v2
59 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/gtkmathview/gtkmathview-0.8.0.ebuild,v 1.10 2009/05/10 15:53:42 ssuominen Exp $
60 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/gtkmathview/gtkmathview-0.8.0.ebuild,v 1.11 2011/01/24 18:55:40 eva Exp $
61 +
62 +EAPI="3"
63
64 inherit eutils
65
66 @@ -14,11 +16,11 @@
67 KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 sparc x86"
68 IUSE="gtk svg t1lib"
69
70 -RDEPEND=">=dev-libs/glib-2.2.1
71 +RDEPEND=">=dev-libs/glib-2.2.1:2
72 >=dev-libs/popt-1.7
73 >=dev-libs/libxml2-2.6.7
74 gtk? (
75 - >=x11-libs/gtk+-2.2.1
76 + >=x11-libs/gtk+-2.2.1:2
77 >=media-libs/t1lib-5
78 >=dev-libs/gmetadom-0.1.8
79 x11-libs/pango
80 @@ -27,16 +29,13 @@
81 DEPEND="${RDEPEND}
82 dev-util/pkgconfig"
83
84 -src_unpack() {
85 - unpack ${A}
86 - cd "${S}"
87 -
88 +src_prepare() {
89 epatch "${FILESDIR}"/${P}-gcc43.patch \
90 "${FILESDIR}"/${P}-gcc44.patch \
91 "${FILESDIR}"/${P}-cond-t1.patch
92 }
93
94 -src_compile() {
95 +src_configure() {
96 # --disable-popt will build only the library and not the frontend
97 # TFM is needed for SVG, default value is 2
98 econf $(use_enable gtk) $(use_enable gtk gmetadom) \
99 @@ -51,10 +50,10 @@
100 --enable-breaks \
101 --enable-boxml \
102 || die "configure failed"
103 - emake || die "make failed"
104 }
105
106 src_install() {
107 emake install DESTDIR="${D}" || die "install failed"
108 - dodoc ANNOUNCEMENT AUTHORS BUGS CONTRIBUTORS ChangeLog HISTORY NEWS TODO
109 + dodoc ANNOUNCEMENT AUTHORS BUGS CONTRIBUTORS ChangeLog HISTORY NEWS TODO \
110 + || die "dodoc failed"
111 }