diff options
author | John Bowler <jbowler@nslu2-linux.org> | 2005-08-02 00:51:34 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2005-08-02 00:51:34 +0000 |
commit | e62c3d12f0ab466cdfa01a49fb86674969e7179d (patch) | |
tree | 85bf98102e86950da1726f9ef04f09476fff9eac /packages/gimp/gimp_2.3.2.bb | |
parent | 471d4c7a1a8d509f8bbd71b78fcdd0ab31427547 (diff) | |
parent | fde83d7aabf6c0f8d56dbe1e1aba0783b004bab3 (diff) |
propagate from branch 'org.openembedded.dev' (head 47c2f7f436790105a8af32ec352907b8ff53aba1)
to branch 'org.openembedded.nslu2-linux' (head a69b542d88fdbf378cd19a8ef701895615c143f7)
Diffstat (limited to 'packages/gimp/gimp_2.3.2.bb')
-rw-r--r-- | packages/gimp/gimp_2.3.2.bb | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/packages/gimp/gimp_2.3.2.bb b/packages/gimp/gimp_2.3.2.bb new file mode 100644 index 0000000000..98237579d0 --- /dev/null +++ b/packages/gimp/gimp_2.3.2.bb @@ -0,0 +1,19 @@ +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.3/gimp-${PV}.tar.bz2" + +DEPENDS = "sed-native gtk+ jpeg libpng libexif tiff" + +inherit autotools pkgconfig +#Don't laugh, this just builds a threaded gimp +EXTRA_OECONF = " --disable-gtktest \ + --disable-print \ + --disable-python \ + --enable-mp" + +do_configure_append() { + find ${S} -name Makefile | xargs sed -i s:'-I$(includedir)':'-I.':g +} |