Magellan Linux

Contents of /branches/magellan-next/extras/gegl/gegl-0.1.8-r1.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 9514 - (show annotations) (download)
Sun Dec 4 19:28:13 2011 UTC (12 years, 5 months ago) by niro
File size: 1319 byte(s)
-fixed ruby
1 # $Id$
2
3 PNAME="gegl"
4 PVER="0.1.8"
5 PBUILD="r1"
6
7 PCATEGORIE="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.28
13 >= x11-libs/cairo-1.10
14 >= x11-libs/pango-1.28
15 >= x11-libs/gdk-pixbuf-2.24
16 >= media-libs/babl-0.1.6
17 >= media-libs/libpng-1.5
18 >= media-libs/libjpeg-8
19 >= media-libs/libjasper-1.900
20 >= media-libs/openexr-1.7
21 >= media-gfx/exiv2-0.22
22 >= gnome-base/librsvg-2.34"
23
24 SDEPEND=">= dev-libs/gobject-introspection-0.10
25 >= dev-lang/vala-0.14
26 >= dev-lang/ruby-1.9"
27
28 SRCFILE="${PNAME}-${PVER}.tar.bz2"
29 SRCDIR="${BUILDDIR}/${PNAME}-${PVER}"
30
31 sminclude mbuild
32
33 SRC_URI=(
34 ftp://ftp.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 --enable-introspection \
50 --with-pango \
51 --with-gdk-pixbuf \
52 --with-cairo \
53 --with-pangocairo \
54 --with-libjpeg \
55 --with-jasper \
56 --with-libpng \
57 --with-librsvg \
58 --with-openexr \
59 --without-libv4l \
60 --with-exiv2 \
61 --without-libavformat \
62 --without-libopenraw \
63 --without-sdl \
64 --disable-docs \
65 --without-graphviz \
66 --without-lua \
67 --without-graphiz \
68 --disable-workshop \
69 || die
70
71 mmake || die
72 }