571b5c1bfb
For some reason, gegl doesn't report the gegl:introspect operation as available unless graphviz is installed. Since gegl:introspect isn't necessarily required by other gegl dependants, add graphviz as a gimp dependency instead. Without this, if the user doesn't have graphviz installed, gimp will fail to launch and complain that gegl doesn't support gegl:introspect.
67 lines
2.1 KiB
Bash
67 lines
2.1 KiB
Bash
# Template file for 'gimp'
|
|
pkgname=gimp
|
|
version=2.10.22
|
|
revision=2
|
|
build_style=gnu-configure
|
|
configure_args="--disable-check-update --datadir=/usr/share"
|
|
hostmakedepends="automake gegl gettext-devel glib-devel gtk+-devel intltool
|
|
libtool pkg-config pygtk-devel perl-XML-Parser gtk-doc iso-codes"
|
|
makedepends="aalib-devel alsa-lib-devel babl-devel dbus-glib-devel gegl-devel
|
|
ghostscript-devel jasper-devel lcms2-devel libXcursor-devel libXpm-devel
|
|
libgexiv2-devel libgudev-devel libmng-devel libmypaint-devel
|
|
libopenexr-devel librsvg-devel libwmf-devel mypaint-brushes1
|
|
poppler-glib-devel pygtk-devel glib-networking libwebp-devel
|
|
libheif-devel libopenjpeg2-devel x265-devel"
|
|
# graphviz is necessary to enable gegl:introspect
|
|
depends="desktop-file-utils hicolor-icon-theme iso-codes mypaint-brushes1 graphviz"
|
|
short_desc="GNU image manipulation program"
|
|
conf_files="/etc/gimp/${version%%.*}.0/*"
|
|
maintainer="fosslinux <fosslinux@aussies.space>"
|
|
license="GPL-3.0-only"
|
|
homepage="https://www.gimp.org"
|
|
distfiles="https://download.gimp.org/pub/gimp/v${version%.*}/gimp-${version}.tar.bz2"
|
|
checksum=2db84b57f3778d80b3466d7c21a21d22e315c7b062de2883cbaaeda9a0f618bb
|
|
python_version=2
|
|
lib32disabled=yes
|
|
no_generic_pkgconfig_link=yes
|
|
|
|
pre_configure() {
|
|
NOCONFIGURE=1 autoreconf -fi
|
|
if [ "$CROSS_BUILD" ]; then
|
|
vsed -i 's:^py_prefix=`:py_prefix='"$XBPS_CROSS_BASE"'`:' configure
|
|
fi
|
|
# don't allow configure to set DATADIRNAME=lib
|
|
vsed -i 's/DATADIRNAME=lib/DATADIRNAME=share/' configure
|
|
}
|
|
|
|
libgimp_package() {
|
|
short_desc+=" - runtime libraries"
|
|
pkg_install() {
|
|
vmove usr/lib/*.so.*
|
|
}
|
|
}
|
|
|
|
gimp-devel_package() {
|
|
depends="gegl-devel gtk+-devel lcms2-devel libgimp>=${version}_${revision}"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/pkgconfig
|
|
vmove usr/share/gtk-doc
|
|
vmove usr/share/aclocal
|
|
vmove "usr/lib/*.so"
|
|
}
|
|
}
|
|
|
|
gimp-python_package() {
|
|
lib32disabled=yes
|
|
depends="pygtk"
|
|
pycompile_dirs="usr/lib/gimp/2.0"
|
|
short_desc+=" - Python2 bindings"
|
|
pkg_install() {
|
|
vmove usr/lib/gimp/2.0/python
|
|
for file in $(find ${DESTDIR}/usr/lib/gimp/2.0/plug-ins -name *.py); do
|
|
vmove ${file/$DESTDIR/}
|
|
done
|
|
}
|
|
}
|