Magellan Linux

Contents of /branches/R11-stable/extras/gimp/gimp-2.8.6-r1.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 18075 - (show annotations) (download)
Thu Jun 27 06:56:49 2013 UTC (10 years, 11 months ago) by niro
File size: 2206 byte(s)
-release branches/R11-stable
1 # $Id$
2
3 PNAME="gimp"
4 PVER="2.8.6"
5 PBUILD="r1"
6
7 PCAT="media-gfx"
8
9 DESCRIPTION="The Gimp - GNU Image Manipulation Program."
10 HOMEPAGE="http://www.gimp.org/"
11
12 DEPEND=">= dev-libs/glib2-2.36
13 >= dev-libs/atk-2.8
14 >= x11-libs/cairo-1.12
15 >= x11-libs/gdk-pixbuf-2.26
16 >= x11-libs/gtk2+-2.24
17 >= x11-libs/libX11-1.6
18 >= x11-libs/libXcursor-1.1
19 >= x11-libs/libXext-1.3
20 >= x11-libs/libXfixes-5
21 >= x11-libs/libXmu-1.1
22 >= x11-libs/pango-1.34
23 >= dev-libs/libxml2-2.7
24 >= dev-libs/libxslt-1.1.28
25 >= x11-themes/hicolor-icon-theme-0.12
26 >= media-libs/freetype-2.4
27 >= media-libs/fontconfig-2.10
28 >= media-libs/libart_lgpl-2.3.21
29 >= x11-libs/libXpm-3.5
30 >= media-libs/libpng-1.5
31 >= media-libs/libjasper-1.900
32 >= media-libs/libjpeg-8
33 >= media-libs/libexif-0.6.21
34 >= media-libs/libtiff-4
35 >= media-libs/libmng-1.0.10
36 >= media-libs/libwmf-0.2.8.4
37 >= media-libs/lcms-1.19
38 >= media-libs/alsa-lib-1.0.27
39 >= app-arch/bzip2-1
40 >= sys-libs/zlib-1.2.5
41 >= gnome-base/librsvg-2.36
42 >= app-text/poppler-glib-0.22
43 >= app-text/ghostscript-gpl-9
44 >= dev-lang/python-2.7
45 >= dev-python/pygtk-2.24
46 >= sys-apps/dbus-1.6
47 >= dev-libs/dbus-glib-0.100
48 >= sys-fs/libgudev-204
49 >= net-misc/curl-7
50 >= media-libs/gegl-0.2
51 >= x11-apps/xdg-utils-1.1"
52
53 SDEPEND=">= dev-util/pkgconfig-0.26
54 >= dev-util/intltool-0.50
55 >= sys-dev/gettext-0.18"
56
57 SRCFILE="${PNAME}-${PVER}.tar.bz2"
58 SRCDIR="${BUILDDIR}/${PNAME}-${PVER}"
59
60 sminclude mtools mbuild
61 msetfeature "!check"
62
63 SRC_URI=(
64 ftp://ftp.gimp.org/pub/${PNAME}/v${PVER:0:3}/${SRCFILE}
65 mirror://${PNAME}/${SRCFILE}
66 )
67
68 # only 'stable' releases
69 UP2DATE="updatecmd -listonly ftp://ftp.gimp.org/pub/gimp/stable/ | grep LATEST | sed 's:.*-\(.*\):\1:'"
70
71 src_compile()
72 {
73 cd ${SRCDIR}
74
75 # gutenprint provides the gimp plugin !
76 mconfigure \
77 --enable-default-binary \
78 --with-x \
79 --with-alsa \
80 --with-dbus \
81 --with-hal \
82 --with-lcms \
83 --with-libcurl \
84 --with-libpng \
85 --with-libjpeg \
86 --with-libexif \
87 --with-libtiff \
88 --with-libmng \
89 --with-librsvg \
90 --with-poppler \
91 --with-wmf \
92 --without-aa \
93 --without-gvfs \
94 --without-gnomevfs \
95 --without-hal \
96 --enable-python \
97 --disable-gnome \
98 --disable-print \
99 --disable-debug \
100 || die
101
102 mmake || die
103 }