summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2004-01-25 23:08:57 +0000
committerMike Frysinger <vapier@gentoo.org>2004-01-25 23:08:57 +0000
commitafeb97108b1feda45197a928e48b9f1b3a35ea85 (patch)
treefffcc4c199c088591654896eb4e9496d78542d89 /media-gfx/graphviz/graphviz-1.8.10.ebuild
parentstable on x86/hppa (diff)
downloadhistorical-afeb97108b1feda45197a928e48b9f1b3a35ea85.tar.gz
historical-afeb97108b1feda45197a928e48b9f1b3a35ea85.tar.bz2
historical-afeb97108b1feda45197a928e48b9f1b3a35ea85.zip
old
Diffstat (limited to 'media-gfx/graphviz/graphviz-1.8.10.ebuild')
-rw-r--r--media-gfx/graphviz/graphviz-1.8.10.ebuild50
1 files changed, 0 insertions, 50 deletions
diff --git a/media-gfx/graphviz/graphviz-1.8.10.ebuild b/media-gfx/graphviz/graphviz-1.8.10.ebuild
deleted file mode 100644
index 8f5537dcd54d..000000000000
--- a/media-gfx/graphviz/graphviz-1.8.10.ebuild
+++ /dev/null
@@ -1,50 +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.8.10.ebuild,v 1.5 2003/11/16 18:56:43 brad_mssw 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 amd64"
-
-#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
-}