Gentoo Archives: gentoo-commits

From: "Markus Meier (maekke)" <maekke@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-gfx/graphviz: graphviz-2.16.1-r2.ebuild ChangeLog
Date: Thu, 03 Jan 2008 12:04:48
Message-Id: E1JAOIb-0000hj-T2@stork.gentoo.org
1 maekke 08/01/03 11:31:45
2
3 Modified: graphviz-2.16.1-r2.ebuild ChangeLog
4 Log:
5 sanitize built_with_use checks for media-libs/gd, thanks jakub in bug #204153
6 (Portage version: 2.1.4_rc14)
7
8 Revision Changes Path
9 1.5 media-gfx/graphviz/graphviz-2.16.1-r2.ebuild
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/graphviz/graphviz-2.16.1-r2.ebuild?rev=1.5&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/graphviz/graphviz-2.16.1-r2.ebuild?rev=1.5&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/graphviz/graphviz-2.16.1-r2.ebuild?r1=1.4&r2=1.5
14
15 Index: graphviz-2.16.1-r2.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/media-gfx/graphviz/graphviz-2.16.1-r2.ebuild,v
18 retrieving revision 1.4
19 retrieving revision 1.5
20 diff -u -r1.4 -r1.5
21 --- graphviz-2.16.1-r2.ebuild 29 Dec 2007 00:28:42 -0000 1.4
22 +++ graphviz-2.16.1-r2.ebuild 3 Jan 2008 11:31:45 -0000 1.5
23 @@ -1,6 +1,6 @@
24 -# Copyright 1999-2007 Gentoo Foundation
25 +# Copyright 1999-2008 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/graphviz/graphviz-2.16.1-r2.ebuild,v 1.4 2007/12/29 00:28:42 maekke Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/graphviz/graphviz-2.16.1-r2.ebuild,v 1.5 2008/01/03 11:31:45 maekke Exp $
29
30 WANT_AUTOCONF=latest
31 WANT_AUTOMAKE=latest
32 @@ -95,15 +95,17 @@
33 eerror "SWIG has to be built with tcl support."
34 die "Missing tcl USE-flag for dev-lang/swig"
35 fi
36 +
37 # bug 181147
38 - if use png && ! built_with_use media-libs/gd png ; then
39 - eerror "media-libs/gd has to be built with png support"
40 - die "remerge media-libs/gd with USE=\"png\""
41 - fi
42 - if use jpeg && ! built_with_use media-libs/gd jpeg ; then
43 - eerror "media-libs/gd has to be built with jpeg support"
44 - die "remerge media-libs/gd with USE=\"jpeg\""
45 + local gdflags
46 + use png && gdflags="png"
47 + use jpeg && gdflags="${gdflags} jpeg"
48 + if [[ -n ${gdflags} ]] && ! built_with_use media-libs/gd ${gdflags} ; then
49 + local diemsg="Re-emerge media-libs/gd with USE=\"${gdflags}\""
50 + eerror "${diemsg}"
51 + die "${diemsg}"
52 fi
53 +
54 # bug 202781
55 if use cairo && ! built_with_use x11-libs/cairo svg ; then
56 eerror "x11-libs/cairo has to be built with svg support"
57
58
59
60 1.134 media-gfx/graphviz/ChangeLog
61
62 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/graphviz/ChangeLog?rev=1.134&view=markup
63 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/graphviz/ChangeLog?rev=1.134&content-type=text/plain
64 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/graphviz/ChangeLog?r1=1.133&r2=1.134
65
66 Index: ChangeLog
67 ===================================================================
68 RCS file: /var/cvsroot/gentoo-x86/media-gfx/graphviz/ChangeLog,v
69 retrieving revision 1.133
70 retrieving revision 1.134
71 diff -u -r1.133 -r1.134
72 --- ChangeLog 29 Dec 2007 00:28:42 -0000 1.133
73 +++ ChangeLog 3 Jan 2008 11:31:45 -0000 1.134
74 @@ -1,6 +1,9 @@
75 # ChangeLog for media-gfx/graphviz
76 -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
77 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/graphviz/ChangeLog,v 1.133 2007/12/29 00:28:42 maekke Exp $
78 +# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
79 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/graphviz/ChangeLog,v 1.134 2008/01/03 11:31:45 maekke Exp $
80 +
81 + 03 Jan 2008; Markus Meier <maekke@g.o> graphviz-2.16.1-r2.ebuild:
82 + sanitize built_with_use checks for media-libs/gd, thanks jakub in bug #204153
83
84 29 Dec 2007; Markus Meier <maekke@g.o>
85 +files/graphviz-2.16.1-tcltk.patch, graphviz-2.16.1-r2.ebuild:
86
87
88
89 --
90 gentoo-commits@g.o mailing list