Gentoo Archives: gentoo-commits

From: "Torsten Veller (tove)" <tove@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-perl/GD: ChangeLog GD-2.460.0.ebuild
Date: Thu, 01 Dec 2011 20:18:31
Message-Id: 20111201201820.CE0F92004B@flycatcher.gentoo.org
1 tove 11/12/01 20:18:20
2
3 Modified: ChangeLog GD-2.460.0.ebuild
4 Log:
5 Add missing RDEPEND. Thanks to Tiziano Müller
6
7 (Portage version: 2.2.0_alpha79/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.101 dev-perl/GD/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/GD/ChangeLog?rev=1.101&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/GD/ChangeLog?rev=1.101&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/GD/ChangeLog?r1=1.100&r2=1.101
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-perl/GD/ChangeLog,v
19 retrieving revision 1.100
20 retrieving revision 1.101
21 diff -u -r1.100 -r1.101
22 --- ChangeLog 30 Jul 2011 08:18:03 -0000 1.100
23 +++ ChangeLog 1 Dec 2011 20:18:20 -0000 1.101
24 @@ -1,6 +1,9 @@
25 # ChangeLog for dev-perl/GD
26 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-perl/GD/ChangeLog,v 1.100 2011/07/30 08:18:03 tove Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-perl/GD/ChangeLog,v 1.101 2011/12/01 20:18:20 tove Exp $
29 +
30 + 01 Dec 2011; Torsten Veller <tove@g.o> GD-2.460.0.ebuild:
31 + Add missing RDEPEND. Thanks to Tiziano Müller
32
33 30 Jul 2011; Torsten Veller <tove@g.o> -GD-2.45-r1.ebuild:
34 Cleanup
35
36
37
38 1.2 dev-perl/GD/GD-2.460.0.ebuild
39
40 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/GD/GD-2.460.0.ebuild?rev=1.2&view=markup
41 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/GD/GD-2.460.0.ebuild?rev=1.2&content-type=text/plain
42 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/GD/GD-2.460.0.ebuild?r1=1.1&r2=1.2
43
44 Index: GD-2.460.0.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/dev-perl/GD/GD-2.460.0.ebuild,v
47 retrieving revision 1.1
48 retrieving revision 1.2
49 diff -u -r1.1 -r1.2
50 --- GD-2.460.0.ebuild 2 May 2011 18:49:15 -0000 1.1
51 +++ GD-2.460.0.ebuild 1 Dec 2011 20:18:20 -0000 1.2
52 @@ -1,6 +1,6 @@
53 # Copyright 1999-2011 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 -# $Header: /var/cvsroot/gentoo-x86/dev-perl/GD/GD-2.460.0.ebuild,v 1.1 2011/05/02 18:49:15 tove Exp $
56 +# $Header: /var/cvsroot/gentoo-x86/dev-perl/GD/GD-2.460.0.ebuild,v 1.2 2011/12/01 20:18:20 tove Exp $
57
58 EAPI=4
59
60 @@ -15,7 +15,7 @@
61 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-solaris"
62 IUSE="animgif gif jpeg png truetype xpm"
63
64 -DEPEND=">=media-libs/gd-2.0.33
65 +RDEPEND=">=media-libs/gd-2.0.33
66 png? (
67 media-libs/gd[png]
68 media-libs/libpng
69 @@ -34,6 +34,7 @@
70 x11-libs/libXpm
71 )
72 gif? ( media-libs/giflib )"
73 +DEPEND="${RDEPEND}"
74
75 SRC_TEST=do
76
77 @@ -45,12 +46,12 @@
78
79 src_configure() {
80 myconf=""
81 - use gif && use animgif && myconf="${myconf},ANIMGIF"
82 - use jpeg && myconf="${myconf},JPEG"
83 - use truetype && myconf="${myconf},FREETYPE"
84 - use png && myconf="${myconf},PNG"
85 - use xpm && myconf="${myconf},XPM"
86 - use gif && myconf="${myconf},GIF"
87 + use gif && use animgif && myconf+=",ANIMGIF"
88 + use jpeg && myconf+=",JPEG"
89 + use truetype && myconf+=",FREETYPE"
90 + use png && myconf+=",PNG"
91 + use xpm && myconf+=",XPM"
92 + use gif && myconf+=",GIF"
93 myconf="-options \"${myconf:1}\""
94 perl-module_src_configure
95 }