summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2004-01-29 10:19:42 +0000
committerMike Frysinger <vapier@gentoo.org>2004-01-29 10:19:42 +0000
commit5a605f0c0074a6571d32189f7a5d310942030f7a (patch)
treea689f3043cdc66cec1b4bd5255bcd2dfbb7e25ac /media-gfx/graphviz
parentremove gcc DEPEND #35193 (diff)
downloadhistorical-5a605f0c0074a6571d32189f7a5d310942030f7a.tar.gz
historical-5a605f0c0074a6571d32189f7a5d310942030f7a.tar.bz2
historical-5a605f0c0074a6571d32189f7a5d310942030f7a.zip
old
Diffstat (limited to 'media-gfx/graphviz')
-rw-r--r--media-gfx/graphviz/files/digest-graphviz-1.93
-rw-r--r--media-gfx/graphviz/graphviz-1.9.ebuild47
2 files changed, 0 insertions, 50 deletions
diff --git a/media-gfx/graphviz/files/digest-graphviz-1.9 b/media-gfx/graphviz/files/digest-graphviz-1.9
deleted file mode 100644
index 263c7a020deb..000000000000
--- a/media-gfx/graphviz/files/digest-graphviz-1.9
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 5e8726d7d859188692efcfe9e9155761 /files/gdgen.c.patch 756
-MD5 a986a9f2a382c2698fb68a2ef6790eef /graphviz-1.9.ebuild 1080
-MD5 5f8d1e1f15594f4869fc9c68f32e7dbb graphviz-1.9.tar.gz 3173162
diff --git a/media-gfx/graphviz/graphviz-1.9.ebuild b/media-gfx/graphviz/graphviz-1.9.ebuild
deleted file mode 100644
index c9482cd78958..000000000000
--- a/media-gfx/graphviz/graphviz-1.9.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2003 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/graphviz/graphviz-1.9.ebuild,v 1.10 2003/12/06 13:01:44 caleb Exp $
-
-IUSE="tcltk"
-
-DESCRIPTION="open source graph drawing software"
-SRC_URI="http://www.graphviz.org/pub/graphviz/ARCHIVE/${P}.tar.gz"
-HOMEPAGE="http://www.research.att.com/sw/tools/graphviz/"
-
-SLOT="0"
-LICENSE="as-is | ATT"
-KEYWORDS="x86 ppc sparc alpha hppa"
-
-#Can use freetype-1.3 or 2.0, but not both
-DEPEND=">=sys-libs/zlib-1.1.3
- >=sys-devel/gcc-3.2
- >=media-libs/libpng-1.2
- >=media-libs/jpeg-6b
- media-libs/freetype
- tcltk? ( >=dev-lang/tk-8.3 )"
-
-src_unpack() {
- unpack ${A}
- cd ${S}
-}
-
-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}
-
- emake || die
-}
-
-src_install() {
- make DESTDIR=${D} install || die
-
- dodoc AUTHORS ChangeLog FAQ.txt INSTALL MINTERMS.txt \
- NEWS README
-
- dohtml -r .
- dodoc doc/*.pdf
-}