diff options
author | andreas <andreas@FreeBSD.org> | 1997-06-11 14:37:54 +0800 |
---|---|---|
committer | andreas <andreas@FreeBSD.org> | 1997-06-11 14:37:54 +0800 |
commit | cb0c7ab700cf7b71b1e78900651aa7117d94011d (patch) | |
tree | 67b44607c51466c31a8e255fab84228eae923635 /print/ghostscript8/Makefile | |
parent | c03874623ca2ece5c8b5f6bc3182394a85666ebb (diff) | |
download | freebsd-ports-gnome-cb0c7ab700cf7b71b1e78900651aa7117d94011d.tar.gz freebsd-ports-gnome-cb0c7ab700cf7b71b1e78900651aa7117d94011d.tar.zst freebsd-ports-gnome-cb0c7ab700cf7b71b1e78900651aa7117d94011d.zip |
- The package other fonts doesn't have the trailing fonts/ path,
so other-fonts were extracted into /usr/local/share/ghostscript
instead of /usr/local/share/ghostscript/fonts
- Corrected PLIST file
Diffstat (limited to 'print/ghostscript8/Makefile')
-rw-r--r-- | print/ghostscript8/Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/print/ghostscript8/Makefile b/print/ghostscript8/Makefile index d0ce7d07f521..4024799942c5 100644 --- a/print/ghostscript8/Makefile +++ b/print/ghostscript8/Makefile @@ -3,7 +3,7 @@ # Date created: Tue Jun 10 21:58:54 CEST 1997 # Whom: Andreas Klemm <andreas@klemm.gtn.com> # -# $Id$ +# $Id: Makefile,v 1.1.1.1 1997/06/11 06:20:46 andreas Exp $ # DISTNAME= ghostscript-5.0 @@ -55,8 +55,10 @@ do-configure: pre-install: @${MKDIR} ${PREFIX}/share/ghostscript ${PREFIX}/bin ${PREFIX}/man/man1 - (cd ${PREFIX}/share/ghostscript ; tar -xzf ${DISTDIR}/${GS_FONTS_STD}) - (cd ${PREFIX}/share/ghostscript ; tar -xzf ${DISTDIR}/${GS_FONTS_OTHER}) + (cd ${PREFIX}/share/ghostscript ; \ + tar -xzf ${DISTDIR}/${GS_FONTS_STD}) + (cd ${PREFIX}/share/ghostscript/fonts ; \ + tar -xzf ${DISTDIR}/${GS_FONTS_OTHER}) post-install: strip ${PREFIX}/bin/gs |