diff options
-rw-r--r-- | ghostscript/.footprint | 8 | ||||
-rw-r--r-- | ghostscript/Pkgfile | 12 |
2 files changed, 16 insertions, 4 deletions
diff --git a/ghostscript/.footprint b/ghostscript/.footprint index 13529e2b4..3d1894f09 100644 --- a/ghostscript/.footprint +++ b/ghostscript/.footprint @@ -35,11 +35,19 @@ drwxr-xr-x root/root usr/bin/ -rwxr-xr-x root/root usr/bin/pv.sh -rwxr-xr-x root/root usr/bin/unix-lpr.sh -rwxr-xr-x root/root usr/bin/wftopfa +drwxr-xr-x root/root usr/include/ +drwxr-xr-x root/root usr/include/ghostscript/ +-rw-r--r-- root/root usr/include/ghostscript/gdevdsp.h +-rw-r--r-- root/root usr/include/ghostscript/iapi.h +-rw-r--r-- root/root usr/include/ghostscript/ierrors.h drwxr-xr-x root/root usr/lib/ drwxr-xr-x root/root usr/lib/cups/ drwxr-xr-x root/root usr/lib/cups/filter/ -rwxr-xr-x root/root usr/lib/cups/filter/pstopxl -rwxr-xr-x root/root usr/lib/cups/filter/pstoraster +lrwxrwxrwx root/root usr/lib/libgs.so -> libgs.so.8.63 +lrwxrwxrwx root/root usr/lib/libgs.so.8 -> libgs.so.8.63 +-rwxr-xr-x root/root usr/lib/libgs.so.8.63 drwxr-xr-x root/root usr/man/ drwxr-xr-x root/root usr/man/man1/ -rw-r--r-- root/root usr/man/man1/dvipdf.1.gz diff --git a/ghostscript/Pkgfile b/ghostscript/Pkgfile index 5575d0704..c55af4645 100644 --- a/ghostscript/Pkgfile +++ b/ghostscript/Pkgfile @@ -5,20 +5,24 @@ name=ghostscript version=8.63 -release=1 +release=2 source=(http://dl.sourceforge.net/sourceforge/$name/$name-$version.tar.bz2 \ - http://dl.sourceforge.net/sourceforge/gs-fonts/$name-fonts-std-8.11.tar.gz) + http://dl.sourceforge.net/sourceforge/gs-fonts/$name-fonts-std-8.11.tar.gz) build () { cd $name-$version + ./configure --prefix=/usr \ --mandir=/usr/man \ --enable-cups \ + --disable-gtk \ --with-drivers=ALL - make -j1 - make DESTDIR=$PKG install + make -j1 so + make DESTDIR=$PKG install soinstall cp -r $SRC/fonts $PKG/usr/share/ghostscript + mv $PKG/usr/bin/gsc $PKG/usr/bin/gs + rm $PKG/usr/bin/gsx chown root:lp $PKG/etc/cups rm -r $PKG/usr/{share/ghostscript/$version/{examples,doc},man/de} rm $PKG/usr/share/ghostscript/fonts/[CRT]* |