diff options
author | Graeme Gregory <dp@xora.org.uk> | 2006-07-06 10:27:57 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2006-07-06 10:27:57 +0000 |
commit | 536d14e5749ab489c018f30abad07ac93dadc4b6 (patch) | |
tree | b61cdeaae3a4a18bf150b6fb5ea72b94d427fa3a | |
parent | 0a893d07e577cf9eb3f5a874977027eae553ce64 (diff) | |
parent | c794a1af0d03ad7dd1e0605b26bcea058a4af625 (diff) |
merge of 02ca6b9a1133a17f5e162779af2eaee48c4115dc
and 5beb3d8e6566e09fca5c9db902bd8db27eb92282
-rw-r--r-- | packages/gimp/gimp_2.3.10.bb | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/packages/gimp/gimp_2.3.10.bb b/packages/gimp/gimp_2.3.10.bb new file mode 100644 index 0000000000..e469f3c101 --- /dev/null +++ b/packages/gimp/gimp_2.3.10.bb @@ -0,0 +1,23 @@ +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 \ + file://configure-libwmf.patch;patch=1" + +DEPENDS = "sed-native libart-lgpl gtk+ jpeg libpng libexif tiff" + +DEFAULT_PREFERENCE = "-1" + +inherit autotools pkgconfig +#Don't laugh, this just builds a threaded gimp +EXTRA_OECONF = " --disable-gtktest \ + --disable-print \ + --disable-python \ + --enable-mp \ + --without-libwmf" + +do_configure_append() { + find ${S} -name Makefile | xargs sed -i s:'-I$(includedir)':'-I.':g +} |