Magellan Linux

Contents of /smage/trunk/extras/graphviz/graphviz-2.40.1-r2.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 11584 - (show annotations) (download)
Fri Dec 22 10:21:18 2017 UTC (6 years, 4 months ago) by niro
File size: 1243 byte(s)
auto added: ver bump to 2.40.1-r2
1 # $Id$
2
3 PNAME="graphviz"
4 PVER="2.40.1"
5 PBUILD="r2"
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++-6.3
15 >= sys-libs/libltdl-2.4
16 >= media-libs/libpng-1.5
17 >= virtual/libjpeg
18 >= media-libs/freetype-2.6
19 >= media-libs/fontconfig-2.11
20 >= x11-libs/libXaw-1
21 >= x11-libs/cairo-1.14"
22
23 SDEPEND=">= virtual/sed
24 >= sys-dev/libtool-2.4"
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] | highesttarball gz"
38
39 src_compile()
40 {
41 cd ${SRCDIR}
42
43 mconfigure \
44 --enable-ltdl \
45 --with-png \
46 --with-jpeg \
47 --without-gd \
48 --without-rsvg \
49 --with-freetype2 \
50 --with-fontconfig \
51 --with-pangocairo \
52 --without-gtk \
53 --without-gnomegui \
54 --disable-tcl \
55 --disable-tk \
56 --disable-sharp \
57 --disable-ruby \
58 --disable-python \
59 --disable-lua \
60 --disable-guile \
61 --disable-perl \
62 --disable-java \
63 || die
64
65 mmake || die
66 }