Magellan Linux

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 9512 - (show annotations) (download)
Sun Dec 4 19:19:30 2011 UTC (12 years, 5 months ago) by niro
File size: 1204 byte(s)
auto added: ver bump to 0.1.8-r1
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/gtk2+-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 SRCFILE="${PNAME}-${PVER}.tar.bz2"
25 SRCDIR="${BUILDDIR}/${PNAME}-${PVER}"
26
27 sminclude mbuild
28
29 SRC_URI=(
30 ftp://ftp.gimp.org/pub/${PNAME}/${PVER%.*}/${SRCFILE}
31 mirror://${PNAME}/${SRCFILE}
32 )
33
34 # fixme
35 UP2DATE="echo ${PVER}"
36
37 src_compile()
38 {
39 cd ${SRCDIR}
40
41 mconfigure \
42 --disable-debug \
43 --enable-mmx \
44 --enable-sse \
45 --with-gtk \
46 --with-pango \
47 --with-gdk-pixbuf \
48 --with-cairo \
49 --with-pangocairo \
50 --with-libjpeg \
51 --with-libjasper \
52 --with-libpng \
53 --with-librsvg \
54 --with-openexr \
55 --with-libv4l \
56 --with-exiv2 \
57 --without-libavformat \
58 --without-libopenraw \
59 --without-sdl \
60 --disable-docs \
61 --without-graphviz \
62 --without-lua \
63 --without-ruby \
64 --without-workshop \
65 || die
66
67 mmake || die
68 }