diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2004-12-14 14:38:00 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2004-12-14 14:38:00 +0000 |
commit | 12b2465b38b0b8d3cd35dd37dcee5765ed58119e (patch) | |
tree | d6917f820b7b5e4f2dbc0eb27d9b53759f883c6f /media-gfx/graphviz | |
parent | use CBUILD / CHOST in the default case of tc-is-cross-compiler (diff) | |
download | gentoo-2-12b2465b38b0b8d3cd35dd37dcee5765ed58119e.tar.gz gentoo-2-12b2465b38b0b8d3cd35dd37dcee5765ed58119e.tar.bz2 gentoo-2-12b2465b38b0b8d3cd35dd37dcee5765ed58119e.zip |
Can't seperate out GD yet, still a few bugs.
Diffstat (limited to 'media-gfx/graphviz')
-rw-r--r-- | media-gfx/graphviz/ChangeLog | 5 | ||||
-rw-r--r-- | media-gfx/graphviz/graphviz-1.16.ebuild | 10 |
2 files changed, 12 insertions, 3 deletions
diff --git a/media-gfx/graphviz/ChangeLog b/media-gfx/graphviz/ChangeLog index 3fa8339889b5..eece11f850cd 100644 --- a/media-gfx/graphviz/ChangeLog +++ b/media-gfx/graphviz/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for media-gfx/graphviz # Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/graphviz/ChangeLog,v 1.35 2004/12/14 10:17:47 robbat2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/graphviz/ChangeLog,v 1.36 2004/12/14 14:38:00 robbat2 Exp $ + + 14 Dec 2004; Robin H. Johnson <robbat2@gentoo.org> graphviz-1.16.ebuild: + Can't seperate out GD yet, still a few bugs. *graphviz-1.16 (14 Dec 2004) diff --git a/media-gfx/graphviz/graphviz-1.16.ebuild b/media-gfx/graphviz/graphviz-1.16.ebuild index 87e81eab928d..1430d5e21ac1 100644 --- a/media-gfx/graphviz/graphviz-1.16.ebuild +++ b/media-gfx/graphviz/graphviz-1.16.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/graphviz/graphviz-1.16.ebuild,v 1.1 2004/12/14 10:17:47 robbat2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/graphviz/graphviz-1.16.ebuild,v 1.2 2004/12/14 14:38:00 robbat2 Exp $ inherit gnuconfig eutils @@ -19,6 +19,8 @@ DEPEND=">=sys-libs/zlib-1.1.3 >=media-libs/jpeg-6b media-libs/freetype dev-util/pkgconfig + >=media-libs/gd-2.0.29 + media-libs/fontconfig tcltk? ( >=dev-lang/tk-8.3 )" src_unpack() { @@ -27,6 +29,10 @@ src_unpack() { # Run gnuconfig_update on all arches, needed at least for mips gnuconfig_update + + #EPATCH_OPTS="-p1 -d${S}" epatch ${FILESDIR}/${P}-fontconfig-externalgd.diff || die "Failed to patch" + einfo "Running aclocal/automake/autoconf" + aclocal && libtoolize --copy --force && automake && autoconf || die "Failed to aclocal/libtoolize/automake/autoconf" } src_compile() { @@ -36,7 +42,7 @@ src_compile() { # compile without tcltk support use tcltk || myconf="${myconf} --without-tcl --without-tk" - myconf="${myconf} --enable-dynagraph" + myconf="${myconf} --enable-dynagraph --with-mylibgd" econf ${myconf} || die "econf failed" emake || die |