diff options
author | Juergen Daubert <jue@jue.li> | 2012-02-09 17:45:08 +0100 |
---|---|---|
committer | Juergen Daubert <jue@jue.li> | 2012-02-09 17:45:08 +0100 |
commit | fc24d0192e075be8868d9b2143ef971dcb2ed725 (patch) | |
tree | 1d95be2b52105b612dbadc03013cf08d71b5dd44 /ghostscript/Pkgfile | |
parent | 8edac15d00ff7c46bb3b008af087fc1aeb9c694b (diff) | |
download | opt-fc24d0192e075be8868d9b2143ef971dcb2ed725.tar.gz opt-fc24d0192e075be8868d9b2143ef971dcb2ed725.tar.xz |
ghostscript: update to 9.05, enable build of libijs
Diffstat (limited to 'ghostscript/Pkgfile')
-rw-r--r-- | ghostscript/Pkgfile | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/ghostscript/Pkgfile b/ghostscript/Pkgfile index d9f2aaf2f..cac7948ee 100644 --- a/ghostscript/Pkgfile +++ b/ghostscript/Pkgfile @@ -4,7 +4,7 @@ # Depends on: util-linux-ng, cups, fontconfig, xorg-libxt, xorg-libxext name=ghostscript -version=9.04 +version=9.05 release=1 source=(http://downloads.ghostscript.com/public/$name-$version.tar.bz2 http://downloads.sourceforge.net/sourceforge/gs-fonts/$name-fonts-std-8.11.tar.gz) @@ -18,12 +18,21 @@ build () { --with-install-cups \ --disable-gtk \ --with-drivers=ALL \ + --with-ijs \ --with-fontpath=/usr/share/ghostscript/fonts:/usr/share/fonts make so all make DESTDIR=$PKG install-so install + + cd ijs + ./autogen.sh + ./configure --prefix=/usr --mandir=/usr/man --enable-shared + make + make DESTDIR=$PKG install + cp -r $SRC/fonts $PKG/usr/share/ghostscript rm -r $PKG/usr/{share/ghostscript/$version/{examples,doc},man/de} rm $PKG/usr/share/ghostscript/fonts/[CRT]* + rm $PKG/usr/bin/ijs_{client,server}_example } |