2009-10-08 21:19:37 +02:00
|
|
|
# Description: The GIMP
|
|
|
|
# URL: http://www.gimp.org/
|
|
|
|
# Maintainer: Thomas Penteker, tek at serverop dot de
|
|
|
|
# Packager: Simone Rota, sip at crux dot nu
|
2018-10-02 23:06:16 +10:00
|
|
|
# Depends on: gexiv2 libart_lgpl libmypaint librsvg mypaint-brushes poppler-data poppler-glib xorg-libxmu xorg-libxpm glib-networking
|
2019-04-08 20:08:19 +10:00
|
|
|
# Optional: gimp-print libsdl ghostscript libmng
|
2009-10-08 21:19:37 +02:00
|
|
|
|
|
|
|
name=gimp
|
2018-12-17 20:56:25 +01:00
|
|
|
version=2.10.8
|
2016-03-08 02:47:58 +01:00
|
|
|
release=1
|
2018-10-02 23:06:16 +10:00
|
|
|
source=(https://download.gimp.org/pub/gimp/v${version%.*}/gimp-$version.tar.bz2 cve-2013-1913)
|
2009-10-08 21:19:37 +02:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd gimp-$version
|
2013-12-09 18:27:34 +01:00
|
|
|
|
|
|
|
patch -p1 -i ../cve-2013-1913
|
|
|
|
|
2009-10-08 21:19:37 +02:00
|
|
|
sed -i -e '/$(helpbrowser)/d' plug-ins/Makefile.in
|
|
|
|
./configure --prefix=/usr \
|
2018-10-02 23:06:16 +10:00
|
|
|
--libexecdir=/usr/bin \
|
2009-10-08 21:19:37 +02:00
|
|
|
--disable-static \
|
|
|
|
--disable-python \
|
2011-05-17 09:45:12 +02:00
|
|
|
--disable-nls \
|
2015-12-06 21:03:30 +01:00
|
|
|
--without-webkit LIBS="-lm"
|
|
|
|
|
2009-10-08 21:19:37 +02:00
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -rf $PKG/usr/share/{gtk-doc,locale}
|
|
|
|
}
|