blob: 09876898d8e7bf1dac870c9b4efa2c04954aa843 (
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
49
50
51
|
# 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.10.ebuild,v 1.18 2004/07/22 16:18:20 agriffis Exp $
inherit gnuconfig
DESCRIPTION="open source graph drawing software"
HOMEPAGE="http://www.research.att.com/sw/tools/graphviz/"
SRC_URI="http://www.graphviz.org/pub/graphviz/ARCHIVE/${P}.tar.gz"
LICENSE="as-is | ATT"
SLOT="0"
KEYWORDS="x86 ppc sparc alpha hppa amd64 ia64 mips ppc64"
IUSE="tcltk"
#Can use freetype-1.3 or 2.0, but not both
DEPEND=">=sys-libs/zlib-1.1.3
>=media-libs/libpng-1.2
>=media-libs/jpeg-6b
media-libs/freetype
tcltk? ( >=dev-lang/tk-8.3 )"
src_unpack() {
unpack ${A}
cd ${S}
sed -i -e "s:+0 -1:-k 1,2:" "${S}/dotneato/common/Makefile.in"
# Run gnuconfig_update on all arches, needed at least for mips
gnuconfig_update
}
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 "econf failed"
emake || die
}
src_install() {
make DESTDIR=${D} install || die
dodoc AUTHORS ChangeLog FAQ.txt INSTALL MINTERMS.txt \
NEWS README
dohtml -r .
dodoc doc/*.pdf
}
|