Magellan Linux

Contents of /branches/R11-unstable/extras/graphviz/graphviz-2.38.0-r1.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 25275 - (show annotations) (download)
Tue Nov 25 03:20:03 2014 UTC (9 years, 5 months ago) by niro
File size: 1273 byte(s)
-release branches/R11-unstable
1 # $Id$
2
3 PNAME="graphviz"
4 PVER="2.38.0"
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.8
15 >= sys-libs/libltdl-2.4
16 >= media-libs/libpng-1.5
17 >= media-libs/libjpeg-8
18 >= media-libs/freetype-2.5
19 >= media-libs/fontconfig-2.11
20 >= media-libs/gd-2.1
21 >= gnome-base/librsvg-2.40
22 >= x11-libs/libXaw-1
23 >= x11-libs/cairo-1.12"
24
25 SDEPEND=">= virtual/sed
26 >= sys-dev/libtool-2.4"
27
28 SRCFILE="${PNAME}-${PVER}.tar.gz"
29 SRCDIR="${BUILDDIR}/${PNAME}-${PVER}"
30
31 sminclude mbuild
32 msetfeature "!check"
33
34 SRC_URI=(
35 http://www.graphviz.org/pub/${PNAME}/ARCHIVE/${SRCFILE}
36 mirror://${PNAME}/${SRCFILE}
37 )
38
39 UP2DATE="updatecmd http://www.graphviz.org/pub/${PNAME}/ARCHIVE/ | grep ${PNAME}-[0-9] | lasttarball gz"
40
41 src_compile()
42 {
43 cd ${SRCDIR}
44
45 mconfigure \
46 --enable-ltdl \
47 --with-png \
48 --with-jpeg \
49 --with-gd \
50 --with-freetype2 \
51 --with-fontconfig \
52 --with-pangocairo \
53 --without-gtk \
54 --without-gnomegui \
55 --disable-tcl \
56 --disable-tk \
57 --disable-sharp \
58 --disable-ruby \
59 --disable-python \
60 --disable-lua \
61 --disable-guile \
62 --disable-perl \
63 --disable-java \
64 || die
65
66 mmake || die
67 }