Magellan Linux

Contents of /branches/R11-stable/extras/gegl/gegl-0.2.0-r2.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 18074 - (show annotations) (download)
Thu Jun 27 06:56:43 2013 UTC (10 years, 10 months ago) by niro
File size: 1226 byte(s)
-release branches/R11-stable
1 # $Id$
2
3 PNAME="gegl"
4 PVER="0.2.0"
5 PBUILD="r2"
6
7 PCAT="media-libs"
8
9 DESCRIPTION="GEGL is a graph based image processing framework."
10 HOMEPAGE="http://www.gegl.org/"
11
12 DEPEND=">= dev-libs/glib2-2.36
13 >= x11-libs/cairo-1.12
14 >= x11-libs/pango-1.34
15 >= x11-libs/gdk-pixbuf-2.24
16 >= media-libs/babl-0.1.10
17 >= media-libs/libpng-1.5
18 >= media-libs/libjpeg-8
19 >= media-libs/libjasper-1.900
20 >= media-libs/openexr-2.0
21 >= media-gfx/exiv2-0.23
22 >= gnome-base/librsvg-2.36"
23
24 SDEPEND=">= dev-lang/ruby-2.0"
25
26 SRCFILE="${PNAME}-${PVER}.tar.bz2"
27 SRCDIR="${BUILDDIR}/${PNAME}-${PVER}"
28
29 sminclude mbuild
30 msetfeature "!check"
31
32 SRC_URI=(
33 ftp://ftp.gimp.org/pub/${PNAME}/${PVER%.*}/${SRCFILE}
34 mirror://${PNAME}/${SRCFILE}
35 )
36
37 # fixme
38 UP2DATE="echo ${PVER}"
39
40 src_compile()
41 {
42 cd ${SRCDIR}
43
44 mconfigure \
45 --disable-debug \
46 --enable-mmx \
47 --enable-sse \
48 --with-pango \
49 --with-gdk-pixbuf \
50 --with-cairo \
51 --with-pangocairo \
52 --with-libjpeg \
53 --with-jasper \
54 --with-libpng \
55 --with-librsvg \
56 --with-openexr \
57 --without-libv4l \
58 --with-exiv2 \
59 --without-libavformat \
60 --without-libopenraw \
61 --without-sdl \
62 --disable-docs \
63 --without-lua \
64 --without-graphiz \
65 --disable-workshop \
66 || die
67
68 mmake -j1 || die
69 }