diff options
author | George Shapovalov <george@gentoo.org> | 2002-11-11 11:25:21 +0000 |
---|---|---|
committer | George Shapovalov <george@gentoo.org> | 2002-11-11 11:25:21 +0000 |
commit | ac200d7d86b5ecb8667bc56de066060c980940cf (patch) | |
tree | 5934585c2fd05163d6b5749e5d5370d176d5ea9b /media-gfx/graphviz | |
parent | resolves bug #10282 (diff) | |
download | gentoo-2-ac200d7d86b5ecb8667bc56de066060c980940cf.tar.gz gentoo-2-ac200d7d86b5ecb8667bc56de066060c980940cf.tar.bz2 gentoo-2-ac200d7d86b5ecb8667bc56de066060c980940cf.zip |
new version, fixes some libpng related issues
Diffstat (limited to 'media-gfx/graphviz')
-rw-r--r-- | media-gfx/graphviz/ChangeLog | 9 | ||||
-rw-r--r-- | media-gfx/graphviz/files/digest-graphviz-1.8.10 | 1 | ||||
-rw-r--r-- | media-gfx/graphviz/graphviz-1.8.10.ebuild | 50 |
3 files changed, 59 insertions, 1 deletions
diff --git a/media-gfx/graphviz/ChangeLog b/media-gfx/graphviz/ChangeLog index c42744cf3a35..cd49842ef377 100644 --- a/media-gfx/graphviz/ChangeLog +++ b/media-gfx/graphviz/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for media-gfx/graphviz # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/media-gfx/graphviz/ChangeLog,v 1.3 2002/08/14 11:13:49 pvdabeel Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/graphviz/ChangeLog,v 1.4 2002/11/11 11:25:21 george Exp $ + +*graphviz-1.8.10 (10 Nov 2002) + + 10 Nov 2002; George Shapovalov <george@gentoo.org> graphviz-1.8.10.ebuild : + new version. + Fixes some weird issue, possibly libpng related. This app still depends on libpng-1.0.x!! + Corrected the dependency. See #9702 for more details. *graphviz-1.7.15-r2 (12 Apr 2002) diff --git a/media-gfx/graphviz/files/digest-graphviz-1.8.10 b/media-gfx/graphviz/files/digest-graphviz-1.8.10 new file mode 100644 index 000000000000..83e5bdee4202 --- /dev/null +++ b/media-gfx/graphviz/files/digest-graphviz-1.8.10 @@ -0,0 +1 @@ +MD5 7c9663c8e2cde4f7edc2b412cc148330 graphviz-1.8.10.tar.gz 2837389 diff --git a/media-gfx/graphviz/graphviz-1.8.10.ebuild b/media-gfx/graphviz/graphviz-1.8.10.ebuild new file mode 100644 index 000000000000..66d6d02e40cd --- /dev/null +++ b/media-gfx/graphviz/graphviz-1.8.10.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/graphviz/graphviz-1.8.10.ebuild,v 1.1 2002/11/11 11:25:21 george Exp $ + +IUSE="tcltk" + +S=${WORKDIR}/${P} +DESCRIPTION="open source graph drawing software" +SRC_URI="http://www.graphviz.org/pub/graphviz/${P}.tar.gz" +HOMEPAGE="http://www.research.att.com/sw/tools/graphviz/" + +SLOT="0" +LICENSE="as-is | ATT" +KEYWORDS="~x86 ~ppc" + +#Can use freetype-1.3 or 2.0, but not both +#!!!requires libpng-1.0.x!!! +DEPEND=">=sys-libs/zlib-1.1.3 + =media-libs/libpng-1.0* + >=media-libs/jpeg-6b + media-libs/freetype + tcltk? ( =dev-lang/tk-8.3* )" + +#src_unpack() { +# unpack ${A} +# +# cd ${S}/agraph +# patch scan.l < ${FILESDIR}/${P}-scan.l.patch +#} + +src_compile() { + local myconf + #if no tcltk, this will generate configure warnings, but will + #compile without tcltk support + use tcltk || myconf="${myconf} --without-tcl --without-tk" + + econf ${myconf} || die "./configure failed" + + make || die +} + +src_install() { + make DESTDIR=${D} install || die + + dodoc AUTHORS ChangeLog FAQ.txt INSTALL MINTERMS.txt \ + NEWS README + + dohtml -r . + dodoc doc/*.pdf +} |