summaryrefslogtreecommitdiffstats
path: root/meta-gnome/recipes-gimp/gimp/gimp_2.10.34.bb
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2023-03-27 08:26:08 -0700
committerKhem Raj <raj.khem@gmail.com>2023-03-28 10:44:00 -0700
commiteccfc8bd2fcf07053f4d360d118a1142b1672c28 (patch)
tree2daaf956a716b31ba87b173872bf82c8fa35d1c2 /meta-gnome/recipes-gimp/gimp/gimp_2.10.34.bb
parentb1d0c7e03e126d9923dd7087fe5268ed6c14d7e7 (diff)
downloadmeta-openembedded-eccfc8bd2fcf07053f4d360d118a1142b1672c28.tar.gz
gimp: Update to 2.10.34
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-gnome/recipes-gimp/gimp/gimp_2.10.34.bb')
-rw-r--r--meta-gnome/recipes-gimp/gimp/gimp_2.10.34.bb69
1 files changed, 69 insertions, 0 deletions
diff --git a/meta-gnome/recipes-gimp/gimp/gimp_2.10.34.bb b/meta-gnome/recipes-gimp/gimp/gimp_2.10.34.bb
new file mode 100644
index 0000000000..76825d96c5
--- /dev/null
+++ b/meta-gnome/recipes-gimp/gimp/gimp_2.10.34.bb
@@ -0,0 +1,69 @@
1SUMMARY = "The GIMP is the GNU Image Manipulation Program"
2HOMEPAGE = "http://www.gimp.org"
3SECTION = "x11/graphics"
4LICENSE = "GPL-3.0-only"
5LIC_FILES_CHKSUM = "file://COPYING;md5=c678957b0c8e964aa6c70fd77641a71e"
6
7DEPENDS = " \
8 alsa-lib \
9 atk \
10 cairo \
11 fontconfig \
12 freetype \
13 gdk-pixbuf-native \
14 intltool-native \
15 libxslt-native \
16 gegl-native \
17 dbus-glib \
18 gtk+ \
19 babl \
20 gegl \
21 libmypaint \
22 mypaint-brushes-1.0 \
23 gexiv2 \
24 jpeg \
25 libmng \
26 libpng \
27 libexif \
28 tiff \
29 lcms \
30 poppler \
31 poppler-data \
32 jasper \
33 bzip2 \
34 libgudev \
35 libmng \
36 ${@bb.utils.contains('DISTRO_FEATURES', 'x11', 'libxmu libxpm', '', d)} \
37"
38DEPENDS:append:libc-musl = " libexecinfo"
39
40inherit features_check gnomebase gtk-icon-cache gtk-doc mime-xdg
41
42REQUIRED_DISTRO_FEATURES = "x11"
43
44SHPV = "${@gnome_verdir("${PV}")}"
45
46SRC_URI = "https://download.gimp.org/pub/${BPN}/v${SHPV}/${BP}.tar.bz2"
47SRC_URI[sha256sum] = "84004642d351b398a4293cd7fd3592044a944f05bb52850ee6068f247c657aa3"
48
49EXTRA_OECONF = "--disable-python \
50 --without-webkit \
51 --disable-check-update \
52 --without-wmf"
53
54EXTRA_OECONF += "${@oe.utils.conditional('SITEINFO_BITS', '32', ' --disable-vector-icons', '', d)}"
55
56do_configure:append() {
57 find ${B} -name Makefile | xargs sed -i s:'-I$(includedir)':'-I.':g
58 find ${B} -name Makefile | xargs sed -i s:'-I/usr/include':'-I${STAGING_INCDIR}':g
59}
60
61do_compile:prepend() {
62 # Let native babl/gegl find their plugins
63 export BABL_PATH=`find ${STAGING_LIBDIR_NATIVE} -maxdepth 1 -name 'babl-*'`
64 export GEGL_PATH=`find ${STAGING_LIBDIR_NATIVE} -maxdepth 1 -name 'gegl-*'`
65}
66
67FILES:${PN} += "${datadir}/metainfo"
68
69RDEPENDS:${PN} += "mypaint-brushes-1.0"