blob: a899e1f81cd7ad799cbd390b7473206646ebeb13 (
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/graphviz/graphviz-2.6-r1.ebuild,v 1.8 2006/09/26 17:32:18 grobian Exp $
inherit eutils libtool
DESCRIPTION="Open Source Graph Visualization Software"
HOMEPAGE="http://www.graphviz.org/"
SRC_URI="http://www.graphviz.org/pub/graphviz/ARCHIVE/${P}.tar.gz"
LICENSE="CPL-1.0"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ppc ppc-macos ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
IUSE="cairo tcl tk X static"
RDEPEND=">=sys-libs/zlib-1.1.3
>=media-libs/libpng-1.2
>=media-libs/jpeg-6b
media-libs/freetype
media-libs/fontconfig
dev-libs/expat
sys-libs/zlib
tk? ( >=dev-lang/tk-8.3 )
tcl? ( >=dev-lang/tcl-8.3 )
cairo? ( >=x11-libs/libsvg-cairo-0.1.3 )
X? ( || (
( x11-libs/libXaw x11-libs/libXpm )
virtual/x11 )
)"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}/${P}"-macos.patch || die "epatch failed"
elibtoolize
}
src_compile() {
econf --with-mylibgd \
--disable-dependency-tracking \
--without-ruby \
$(use_enable static) \
$(use_with tcl) \
$(use_with tk) \
$(use_with X x) || die "Configure Failed!"
emake || die "Compile Failed!"
}
src_install() {
sed -i -e "s:htmldir:htmlinfodir:g" doc/info/Makefile
make DESTDIR="${D}" \
txtdir=/usr/share/doc/${PF} \
htmldir=/usr/share/doc/${PF}/html \
htmlinfodir=/usr/share/doc/${PF}/html/info \
pdfdir=/usr/share/doc/${PF}/pdf \
pkgconfigdir=/usr/$(get_libdir)/pkgconfig \
install || die "Install Failed!"
}
pkg_postinst() {
dot -c
}
|