summaryrefslogtreecommitdiff
path: root/pcr/gimp-git
diff options
context:
space:
mode:
authorcoadde [Márcio Alexandre Silva Delgado] <coadde@parabola.nu>2015-11-09 01:30:10 -0300
committercoadde [Márcio Alexandre Silva Delgado] <coadde@parabola.nu>2015-11-09 01:30:10 -0300
commit554e7ae992602a5962eea6013413dda946b97c80 (patch)
tree8b3ef5f32d60605ecbbd7c7bf355f4e08fcae836 /pcr/gimp-git
parenteec94dac98502f265ebcef267da6f8b3a21bc9e2 (diff)
gimp-git: add pkg to [pcr]
Diffstat (limited to 'pcr/gimp-git')
-rw-r--r--pcr/gimp-git/PKGBUILD61
1 files changed, 61 insertions, 0 deletions
diff --git a/pcr/gimp-git/PKGBUILD b/pcr/gimp-git/PKGBUILD
new file mode 100644
index 000000000..5b13525a5
--- /dev/null
+++ b/pcr/gimp-git/PKGBUILD
@@ -0,0 +1,61 @@
+# Maintainer: Márcio Silva <coadde@parabola.nu>
+# Maintainer (Arch): Daniel Isenmann <daniel@archlinux.org>
+
+_pkgname=gimp
+pkgname=gimp-git
+pkgver=r35719.dac5493 # get rev with "git rev-list --count HEAD" and commit with "git rev-parse --short HEAD"
+pkgrel=1
+pkgdesc="GNU Image Manipulation Program"
+arch=('i686' 'x86_64' 'armv7h')
+url="http://www.${_pkgname}.org/"
+license=('GPL' 'LGPL')
+depends=('pygtk' 'lcms2' 'libxpm' 'libwmf' 'libxmu' 'librsvg' 'libmng' 'dbus-glib'
+ 'libgexiv2' 'gegl-git' 'jasper' 'desktop-file-utils' 'hicolor-icon-theme' 'babl'
+ 'openexr' 'libgudev' 'libmypaint')
+makedepends=('intltool' 'webkitgtk2' 'poppler-glib' 'alsa-lib' 'iso-codes' 'ghostscript'
+ 'git' 'gtk-doc')
+optdepends=('gutenprint: for sophisticated printing only as gimp has built-in cups print support'
+ 'webkitgtk2: for the help browser'
+ 'poppler-glib: for pdf support'
+ 'alsa-lib: for MIDI event controller module'
+ 'ghostscript: for postscript support')
+options=('!makeflags')
+provides=("${_pkgname}")
+conflicts=("${_pkgname}")
+install=${_pkgname}.install
+source=(${_pkgname}-${pkgver}::git+git://git.gnome.org/${_pkgname}.git
+ linux-kernel.gpl)
+md5sums=('SKIP'
+ '36854ad996c96df06249f1e94bd996d5')
+
+pkgver() {
+ cd "${srcdir}/${_pkgname}-${pkgver}"
+ printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
+}
+
+prepare () {
+ cd "${srcdir}/${_pkgname}-${pkgver}"
+ # fix headers patch
+ sed -i 's|[<]mypaint-brush[.]h[>]|"libmypaint-git/mypaint-brush.h"|
+ s|[<]mypaint-tiled-surface[.]h[>]|"libmypaint-git/mypaint-tiled-surface.h"|
+ ' app/paint/gimpmybrush.c
+}
+
+
+build() {
+ cd "${srcdir}/${_pkgname}-${pkgver}"
+ ./autogen.sh
+ PYTHON=/usr/bin/python2 ./configure --prefix=/usr --sysconfdir=/etc \
+ --enable-mp --enable-gimp-console --enable-python --without-aa
+ make
+}
+
+package() {
+ cd "${srcdir}/${_pkgname}-${pkgver}"
+ make DESTDIR="${pkgdir}" install
+ sed -i 's|#!/usr/bin/env python|#!/usr/bin/env python2|' "${pkgdir}"/usr/lib/gimp/2.0/plug-ins/*.py
+ install -D -m644 "${srcdir}/linux-kernel.gpl" "${pkgdir}/usr/share/gimp/2.0/palettes/Linux-kernel.gpl"
+
+ ln -s gimptool-2.0 "${pkgdir}/usr/bin/gimptool"
+ ln -sf gimptool-2.0.1.gz "${pkgdir}/usr/share/man/man1/gimptool.1.gz"
+}