summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuca Barbato <lu_zero@gentoo.org>2006-07-05 16:56:01 +0000
committerLuca Barbato <lu_zero@gentoo.org>2006-07-05 16:56:01 +0000
commit2547d6e19ab30ca815b070f185195a826e5d5fcc (patch)
tree80251a99199a9cc5e7c3f79f83a9048564c9d637 /media-gfx/graphviz
parentx86 stable; security (diff)
downloadgentoo-2-2547d6e19ab30ca815b070f185195a826e5d5fcc.tar.gz
gentoo-2-2547d6e19ab30ca815b070f185195a826e5d5fcc.tar.bz2
gentoo-2-2547d6e19ab30ca815b070f185195a826e5d5fcc.zip
tk&tcl+tclsh fix, see bug #139333
(Portage version: 2.1.1_pre2-r1)
Diffstat (limited to 'media-gfx/graphviz')
-rw-r--r--media-gfx/graphviz/ChangeLog6
-rw-r--r--media-gfx/graphviz/graphviz-2.6-r1.ebuild12
2 files changed, 12 insertions, 6 deletions
diff --git a/media-gfx/graphviz/ChangeLog b/media-gfx/graphviz/ChangeLog
index e6248ff475b4..9a3e579189ee 100644
--- a/media-gfx/graphviz/ChangeLog
+++ b/media-gfx/graphviz/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for media-gfx/graphviz
# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/graphviz/ChangeLog,v 1.82 2006/07/03 15:59:39 pylon Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/graphviz/ChangeLog,v 1.83 2006/07/05 16:56:01 lu_zero Exp $
+
+ 05 Jul 2006; Luca Barbato <lu_zero@gentoo.org> graphviz-2.6-r1.ebuild:
+ Move to split tck and tk useflag, thanks to Fabian Groffen
+ <grobian@gentoo.org> for the fix about tclsh, bug #139333
03 Jul 2006; Lars Weiler <pylon@gentoo.org> graphviz-2.6-r1.ebuild:
Stable on ppc; needed for bug #138937.
diff --git a/media-gfx/graphviz/graphviz-2.6-r1.ebuild b/media-gfx/graphviz/graphviz-2.6-r1.ebuild
index 38dddf738f52..6a689b0d3596 100644
--- a/media-gfx/graphviz/graphviz-2.6-r1.ebuild
+++ b/media-gfx/graphviz/graphviz-2.6-r1.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/graphviz/graphviz-2.6-r1.ebuild,v 1.6 2006/07/03 15:59:39 pylon Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/graphviz/graphviz-2.6-r1.ebuild,v 1.7 2006/07/05 16:56:01 lu_zero Exp $
inherit eutils libtool
@@ -11,7 +11,7 @@ SRC_URI="http://www.graphviz.org/pub/graphviz/ARCHIVE/${P}.tar.gz"
LICENSE="CPL-1.0"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ppc ~ppc-macos ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
-IUSE="cairo tcltk X static"
+IUSE="cairo tcl tk X static"
RDEPEND=">=sys-libs/zlib-1.1.3
>=media-libs/libpng-1.2
@@ -20,7 +20,8 @@ RDEPEND=">=sys-libs/zlib-1.1.3
media-libs/fontconfig
dev-libs/expat
sys-libs/zlib
- tcltk? ( >=dev-lang/tk-8.3 >=dev-lang/tcl-8.3 )
+ tk? ( >=dev-lang/tk-8.3 )
+ tcl? ( >=dev-lang/tcl-8.3 )
cairo? ( >=x11-libs/libsvg-cairo-0.1.3 )
X? ( || (
( x11-libs/libXaw x11-libs/libXpm )
@@ -43,8 +44,9 @@ src_compile() {
econf --with-mylibgd \
--disable-dependency-tracking \
$(use_enable static) \
- $(use_with tcltk tcl) \
- $(use_with tcltk tk) \
+ $(use_with tcl tclsh) \
+ $(use_with tcl) \
+ $(use_with tk) \
$(use_with X x) || die "Configure Failed!"
emake || die "Compile Failed!"
}