Magellan Linux

Contents of /branches/magellan-next/core/graphviz/graphviz-2.26.3-r1.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 7270 - (show annotations) (download)
Wed Oct 13 11:13:22 2010 UTC (13 years, 7 months ago) by niro
File size: 1262 byte(s)
-fixed dependencies
1 # $Id: graphviz-2.24.0-r1.smage2 3526 2009-10-23 08:56:30Z niro $
2
3 PNAME="graphviz"
4 PVER="2.26.3"
5 PBUILD="r1"
6
7 PCATEGORIE="media-gfx"
8 STATE="unstable"
9
10 DESCRIPTION="Graphviz - Graph Visualization Software."
11 HOMEPAGE="http://www.research.att.com/sw/tools/graphviz/"
12
13 DEPEND=">= dev-libs/expat-2
14 >= sys-libs/zlib-1.2
15 >= media-libs/libpng-1.4
16 >= media-libs/libjpeg-8
17 >= media-libs/freetype-2.4
18 >= media-libs/fontconfig-2.8
19 >= media-libs/gd-2.0.35
20 >= gnome-base/librsvg-2.32
21 >= x11-libs/libXaw-1
22 >= x11-libs/cairo-1.8"
23
24 SDEPEND=">= sys-apps/sed-4"
25
26 SRCFILE="${PNAME}-${PVER}.tar.gz"
27 SRCDIR="${BUILDDIR}/${PNAME}-${PVER}"
28
29 sminclude mbuild
30
31 SRC_URI=(
32 http://www.graphviz.org/pub/${PNAME}/ARCHIVE/${SRCFILE}
33 mirror://${PNAME}/${SRCFILE}
34 )
35
36 UP2DATE="updatecmd http://www.graphviz.org/pub/${PNAME}/ARCHIVE/ | grep ${PNAME}-[0-9] | lasttarball gz"
37
38 src_compile()
39 {
40 cd ${SRCDIR}
41
42 mconfigure \
43 --enable-ltdl \
44 --with-png \
45 --with-jpeg \
46 --with-gd \
47 --with-freetype2 \
48 --with-fontconfig \
49 --with-pangocairo \
50 --without-gtk \
51 --without-gnomegui \
52 --disable-tcl \
53 --disable-tk \
54 --disable-sharp \
55 --disable-ruby \
56 --disable-python \
57 --disable-lua \
58 --disable-guile \
59 --disable-perl \
60 --disable-java \
61 || die
62
63 mmake || die
64 }