mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-26 07:37:14 +00:00
cf1819332d
base_contains() is a compatibility wrapper and may warn in the future, so replace all instances with bb.utils.contains(). Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Armin Kuster <akuster808@gmail.com>
33 lines
1.1 KiB
BlitzBasic
33 lines
1.1 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 = "babl gdk-pixbuf-native libart-lgpl gtk+ jpeg libpng libexif tiff lcms gegl poppler jasper bzip2 libgudev"
|
|
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] = "233c948203383fa078434cc3f8f925cb"
|
|
SRC_URI[sha256sum] = "d82a958641c9c752d68e35f65840925c08e314cea90222ad845892a40e05b22d"
|
|
|
|
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"
|