mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-16 16:27:27 +00:00
8a23ed2da8
Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
51 lines
1.3 KiB
BlitzBasic
51 lines
1.3 KiB
BlitzBasic
SUMMARY = "The GIMP is the GNU Image Manipulation Program"
|
|
HOMEPAGE = "http://www.gimp.org"
|
|
SECTION = "x11/graphics"
|
|
LICENSE = "GPLv3"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504"
|
|
|
|
DEPENDS = " \
|
|
gdk-pixbuf-native \
|
|
intltool-native \
|
|
libxslt-native \
|
|
gtk+ \
|
|
babl \
|
|
gegl \
|
|
libart-lgpl \
|
|
jpeg \
|
|
libpng \
|
|
libexif \
|
|
tiff \
|
|
lcms \
|
|
poppler \
|
|
jasper \
|
|
bzip2 \
|
|
libgudev \
|
|
libmng \
|
|
"
|
|
DEPENDS += "${@bb.utils.contains('DISTRO_FEATURES', 'x11', 'libxmu libxpm', '', d)}"
|
|
|
|
inherit gnome gtk-doc
|
|
|
|
SRC_URI = " \
|
|
http://ftp.gimp.org/pub/gimp/v2.8/gimp-${PV}.tar.bz2 \
|
|
file://0001-configure-ac-do-not-check-for-freetype-config.patch \
|
|
file://bump_Babl-GEGL_versions.patch \
|
|
"
|
|
SRC_URI[md5sum] = "d405640c426b234d6efc36fb4f5bae57"
|
|
SRC_URI[sha256sum] = "939ca1df70be865c672ffd654f4e20f188121d01601c5c90237214101533c805"
|
|
|
|
EXTRA_OECONF = "--disable-python \
|
|
--without-webkit \
|
|
--without-wmf"
|
|
|
|
do_configure_append() {
|
|
find ${B} -name Makefile | xargs sed -i s:'-I$(includedir)':'-I.':g
|
|
find ${B} -name Makefile | xargs sed -i s:'-I/usr/include':'-I${STAGING_INCDIR}':g
|
|
}
|
|
|
|
CFLAGS += "-fPIC"
|
|
|
|
FILES_${PN}-dbg += "${libdir}/gimp/2.0/*/.debug"
|
|
FILES_${PN} += "${datadir}/appdata"
|