[skip-ci] gimp: rebuild 2.8 against new gegl

This commit is contained in:
Francesco Marinucci 2018-07-16 15:57:39 +02:00
parent eae9f785ee
commit 13d11de8ca

View File

@ -1,33 +1,31 @@
pkgname=gimp pkgname=gimp
pkgver=2.10.4 pkgver=2.8.22
_pkgver=2.10 _pkgver=2.8
pkgrel=1 pkgrel=3
pkgdesc="GNU Image Manipulation Program (Development Version)" pkgdesc="GNU Image Manipulation Program (Development Version)"
arch=('x86_64') arch=('x86_64')
url="http://www.gimp.org/" url="http://www.gimp.org/"
license=('GPL3' 'LGPL3') license=('GPL3' 'LGPL3')
depends=('babl' 'dbus-glib' 'desktop-file-utils' 'gegl' 'glib-networking' 'hicolor-icon-theme' depends=('libpng' 'pygtk' 'lcms' 'libxpm' 'libwmf' 'librsvg' 'libmng' 'dbus-glib' \
'jasper' 'lcms' 'libheif' 'libexif' 'libgudev' 'libmng' 'libmypaint' 'librsvg' 'libwebp' 'jasper' 'libexif' 'gegl=0.2.0' 'desktop-file-utils' 'hicolor-icon-theme' 'babl')
'libwmf' 'libxmu' 'libxpm' 'mypaint-brushes' 'openexr' 'poppler-data' 'pygtk' 'libgexiv2') makedepends=('intltool' 'libwebkit-gtk2' 'poppler-glib' 'alsa-lib' 'iso-codes' 'curl' 'ghostscript')
makedepends=('alsa-lib' 'curl' 'ghostscript' 'gtk-doc' 'intltool' 'iso-codes' 'poppler-glib' 'poppler-data')
optdepends=('gutenprint: for sophisticated printing only as gimp has built-in cups print support' optdepends=('gutenprint: for sophisticated printing only as gimp has built-in cups print support'
'poppler-glib: for pdf support' 'poppler-glib: for pdf support'
'alsa-lib: for MIDI event controller module' 'alsa-lib: for MIDI event controller module'
'curl: for URI support' 'curl: for URI support'
'ghostscript: for postscript support') 'ghostscript: for postscript support')
source=("http://download.gimp.org/pub/gimp/v${_pkgver}/$pkgname-$pkgver.tar.bz2" "linux.gpl") options=('!makeflags')
md5sums=('9e0a3703a920da8b3e51e845fa3bff7d' install=gimp.install
source=("http://download.gimp.org/pub/gimp/v${_pkgver}/gimp-${pkgver}.tar.bz2" "linux.gpl")
md5sums=('7e4fd7a53b1d3c32dff642ab1a94b44d'
'bb27bc214261d36484093e857f015f38') 'bb27bc214261d36484093e857f015f38')
prepare() { prepare() {
cd $pkgname-$pkgver cd "${srcdir}/${pkgname}-${pkgver}"
_mypaintver=$(echo /usr/lib/libmypaint-*.so | grep -o -E '\-[0-9]+(\.[0-9]+)*' | head -1)
sed -i "s|\\(libmypaint\\)\\( >= libmypaint_required_version\\)|\\1${_mypaintver}\\2|g" configure.ac
autoreconf -vi
} }
build() { build() {
cd $pkgname-$pkgver cd "${srcdir}/gimp-${pkgver}"
PYTHON=/usr/bin/python2 ./configure --prefix=/usr --sysconfdir=/etc \ PYTHON=/usr/bin/python2 ./configure --prefix=/usr --sysconfdir=/etc \
--enable-mp \ --enable-mp \
--enable-gimp-console \ --enable-gimp-console \
@ -43,13 +41,13 @@ build() {
} }
package() { package() {
cd $pkgname-$pkgver cd "${srcdir}/gimp-${pkgver}"
make DESTDIR=$pkgdir install make DESTDIR="${pkgdir}" install
sed -i 's|#![ ]*/usr/bin/env python|#!/usr/bin/env python2|' $pkgdir/usr/lib/gimp/2.0/plug-ins/*.py sed -i 's|#![ ]*/usr/bin/env python|#!/usr/bin/env python2|' "${pkgdir}"/usr/lib/gimp/2.0/plug-ins/*.py
install -D -m644 ../linux.gpl $pkgdir/usr/share/gimp/2.0/palettes/Linux.gpl install -D -m644 "${srcdir}/linux.gpl" "${pkgdir}/usr/share/gimp/2.0/palettes/Linux.gpl"
ln -sf gimp-console-$pkgver.1.gz $pkgdir/usr/share/man/man1/gimp-console.1.gz ln -sf gimp-console-${pkgver}.1.gz "${pkgdir}/usr/share/man/man1/gimp-console.1.gz"
ln -sf gimprc-$pkgver.5.gz $pkgdir/usr/share/man/man5/gimprc.5.gz ln -sf gimprc-${pkgver}.5.gz "${pkgdir}/usr/share/man/man5/gimprc.5.gz"
ln -sf gimptool-2.0.1.gz $pkgdir/usr/share/man/man1/gimptool.1.gz ln -sf gimptool-2.0.1.gz "${pkgdir}/usr/share/man/man1/gimptool.1.gz"
ln -s gimp-$pkgver.1.gz $pkgdir/usr/share/man/man1/gimp.1.gz ln -s gimp-${pkgver}.1.gz "${pkgdir}/usr/share/man/man1/gimp.1.gz"
} }