blob: 85c4d6e86524e5d9b25908c7d35be891c4e5615f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
# 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-r1.ebuild,v 1.1 2002/12/04 22:15:51 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
DEPEND=">=sys-libs/zlib-1.1.3
>=media-libs/jpeg-6b
media-libs/freetype
tcltk? ( =dev-lang/tk-8.3* )"
src_unpack() {
unpack ${A}
cd ${S}/dotneato/common
patch gdgen.c < ${FILESDIR}/gdgen.c.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
}
|