2006-02-23 15:26:10 +00:00
|
|
|
# Description: The GIMP
|
|
|
|
# URL: http://www.gimp.org/
|
2007-10-24 15:44:17 -05:00
|
|
|
# Maintainer: Matt Housh, jaeger at crux dot nu
|
|
|
|
# Depends on: gtk, libart_lgpl, xorg-libxmu, xorg-libxpm
|
|
|
|
|
|
|
|
# Nice to have: gimp-print
|
2006-02-23 15:26:10 +00:00
|
|
|
|
|
|
|
name=gimp
|
2008-01-17 10:05:46 -06:00
|
|
|
version=2.4.3
|
2007-04-24 14:02:52 -05:00
|
|
|
release=1
|
2007-10-24 15:44:17 -05:00
|
|
|
source=(ftp://ftp.gimp.org/pub/gimp/v2.4/gimp-$version.tar.bz2)
|
2006-02-23 15:26:10 +00:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd gimp-$version
|
|
|
|
sed -i -e '/$(helpbrowser)/d' plug-ins/Makefile.in
|
|
|
|
./configure --prefix=/usr \
|
2006-09-09 15:34:45 +00:00
|
|
|
--mandir=/usr/man \
|
2007-10-24 15:44:17 -05:00
|
|
|
--disable-static \
|
|
|
|
--disable-python
|
2006-02-23 15:26:10 +00:00
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -rf $PKG/usr/share/{gtk-doc,locale}
|
|
|
|
}
|