Magellan Linux

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 24266 - (show annotations) (download)
Fri Feb 20 09:37:51 2015 UTC (9 years, 2 months ago) by niro
File size: 1259 byte(s)
-release branches/R11-stable
1 # $Id$
2
3 PNAME="gegl"
4 PVER="0.2.0"
5 PBUILD="r3"
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.42
13 >= x11-libs/cairo-1.12
14 >= x11-libs/pango-1.36
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.2
21 >= media-gfx/exiv2-0.24
22 >= gnome-base/librsvg-2.40"
23
24 SDEPEND=">= dev-lang/ruby-2.0
25 >= dev-util/intltool-0.50"
26
27 SRCFILE="${PNAME}-${PVER}.tar.bz2"
28 SRCDIR="${BUILDDIR}/${PNAME}-${PVER}"
29
30 sminclude mbuild
31 msetfeature "!check"
32
33 SRC_URI=(
34 http://download.gimp.org/pub/${PNAME}/${PVER%.*}/${SRCFILE}
35 mirror://${PNAME}/${SRCFILE}
36 )
37
38 # fixme
39 UP2DATE="echo ${PVER}"
40
41 src_compile()
42 {
43 cd ${SRCDIR}
44
45 mconfigure \
46 --disable-debug \
47 --enable-mmx \
48 --enable-sse \
49 --with-pango \
50 --with-gdk-pixbuf \
51 --with-cairo \
52 --with-pangocairo \
53 --with-libjpeg \
54 --with-jasper \
55 --with-libpng \
56 --with-librsvg \
57 --with-openexr \
58 --without-libv4l \
59 --with-exiv2 \
60 --without-libavformat \
61 --without-libopenraw \
62 --without-sdl \
63 --disable-docs \
64 --without-lua \
65 --without-graphiz \
66 --disable-workshop \
67 || die
68
69 mmake -j1 || die
70 }