Magellan Linux

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 8260 - (show annotations) (download)
Wed Jul 13 15:40:30 2011 UTC (12 years, 9 months ago) by niro
File size: 1187 byte(s)
auto added: ver bump to 2.28.0-r1
1 # $Id$
2
3 PNAME="graphviz"
4 PVER="2.28.0"
5 PBUILD="r1"
6
7 PCATEGORIE="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 >= media-libs/libpng-1.5
15 >= media-libs/libjpeg-8
16 >= media-libs/freetype-2.4
17 >= media-libs/fontconfig-2.8
18 >= media-libs/gd-2.0.35
19 >= gnome-base/librsvg-2.34
20 >= x11-libs/libXaw-1
21 >= x11-libs/cairo-1.10"
22
23 SDEPEND=">= sys-apps/sed-4"
24
25 SRCFILE="${PNAME}-${PVER}.tar.gz"
26 SRCDIR="${BUILDDIR}/${PNAME}-${PVER}"
27
28 sminclude mbuild
29
30 SRC_URI=(
31 http://www.graphviz.org/pub/${PNAME}/ARCHIVE/${SRCFILE}
32 mirror://${PNAME}/${SRCFILE}
33 )
34
35 UP2DATE="updatecmd http://www.graphviz.org/pub/${PNAME}/ARCHIVE/ | grep ${PNAME}-[0-9] | lasttarball gz"
36
37 src_compile()
38 {
39 cd ${SRCDIR}
40
41 mconfigure \
42 --enable-ltdl \
43 --with-png \
44 --with-jpeg \
45 --with-gd \
46 --with-freetype2 \
47 --with-fontconfig \
48 --with-pangocairo \
49 --without-gtk \
50 --without-gnomegui \
51 --disable-tcl \
52 --disable-tk \
53 --disable-sharp \
54 --disable-ruby \
55 --disable-python \
56 --disable-lua \
57 --disable-guile \
58 --disable-perl \
59 --disable-java \
60 || die
61
62 mmake || die
63 }