Magellan Linux

Contents of /branches/R11-stable/extras/graphviz/graphviz-2.30.1-r1.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 16818 - (show annotations) (download)
Thu Mar 7 14:19:21 2013 UTC (11 years, 2 months ago) by niro
File size: 1226 byte(s)
-release branches/R11-stable
1 # $Id$
2
3 PNAME="graphviz"
4 PVER="2.30.1"
5 PBUILD="r1"
6
7 PCAT="media-gfx"
8
9 DESCRIPTION="Graphviz - Graph Visualization Software."
10 HOMEPAGE="http://www.research.att.com/sw/tools/graphviz/"
11
12 DEPEND=">= dev-libs/expat-2
13 >= sys-libs/zlib-1.2
14 >= sys-libs/libstdc++-4.7
15 >= media-libs/libpng-1.5
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.36
21 >= x11-libs/libXaw-1
22 >= x11-libs/cairo-1.12"
23
24 SDEPEND=">= virtual/sed"
25
26 SRCFILE="${PNAME}-${PVER}.tar.gz"
27 SRCDIR="${BUILDDIR}/${PNAME}-${PVER}"
28
29 sminclude mbuild
30 msetfeature "!check"
31
32 SRC_URI=(
33 http://www.graphviz.org/pub/${PNAME}/ARCHIVE/${SRCFILE}
34 mirror://${PNAME}/${SRCFILE}
35 )
36
37 UP2DATE="updatecmd http://www.graphviz.org/pub/${PNAME}/ARCHIVE/ | grep ${PNAME}-[0-9] | lasttarball gz"
38
39 src_compile()
40 {
41 cd ${SRCDIR}
42
43 mconfigure \
44 --enable-ltdl \
45 --with-png \
46 --with-jpeg \
47 --with-gd \
48 --with-freetype2 \
49 --with-fontconfig \
50 --with-pangocairo \
51 --without-gtk \
52 --without-gnomegui \
53 --disable-tcl \
54 --disable-tk \
55 --disable-sharp \
56 --disable-ruby \
57 --disable-python \
58 --disable-lua \
59 --disable-guile \
60 --disable-perl \
61 --disable-java \
62 || die
63
64 mmake || die
65 }