diff options
author | Graeme Gregory <dp@xora.org.uk> | 2006-04-04 12:02:57 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2006-04-04 12:02:57 +0000 |
commit | 60cf6e6971fbb1b44cf41dc3bab39c5424d8661e (patch) | |
tree | 0df7c7839dc5bfe073e2358feafa1cdd31ad753f /packages/gimp/gimp_2.2.10.bb | |
parent | 414a70ace8cf06857958fad7f87cfcb63b350072 (diff) |
gimp_2.2.10.bb : add newest stable gimp
gimp_2.2.7.bb, gimp_2.3.3.bb : drop older versions.
Diffstat (limited to 'packages/gimp/gimp_2.2.10.bb')
-rw-r--r-- | packages/gimp/gimp_2.2.10.bb | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/packages/gimp/gimp_2.2.10.bb b/packages/gimp/gimp_2.2.10.bb new file mode 100644 index 0000000000..59fb0a0467 --- /dev/null +++ b/packages/gimp/gimp_2.2.10.bb @@ -0,0 +1,20 @@ +DESCRIPTION = "The GIMP is the GNU Image Manipulation Program." +HOMEPAGE = "http://www.gimp.org" +LICENSE = "GPL" +MAINTAINER = "Koen Kooi <koen@handhelds.org>" + +SRC_URI = "ftp://ftp.gimp.org/pub/gimp/v2.2/gimp-${PV}.tar.bz2" + +DEPENDS = "gtk+ jpeg libpng libexif" + +inherit autotools pkgconfig +#Don't laugh, this just builds a threaded gimp +EXTRA_OECONF = " --disable-gtktest \ + --without-libtiff \ + --disable-print \ + --enable-mp" + +do_configure_append() { + find ${S} -name Makefile | xargs sed -i s:'-I$(includedir)':'-I.':g +} + |