diff options
author | jseger <jseger@FreeBSD.org> | 1998-12-24 12:13:20 +0000 |
---|---|---|
committer | jseger <jseger@FreeBSD.org> | 1998-12-24 12:13:20 +0000 |
commit | f78f229c12b6ed7ee98673c394bb99ed1983c814 (patch) | |
tree | 06b0a98d0bb443e96769c5ad58db5e63f3ba4f0f /print/gsfonts/Makefile | |
parent | 79fe1773775a31e7b6cafc3da5c337ca56afae7a (diff) | |
download | FreeBSD-ports-f78f229c12b6ed7ee98673c394bb99ed1983c814.zip FreeBSD-ports-f78f229c12b6ed7ee98673c394bb99ed1983c814.tar.gz |
Import of gsfonts v5.10a
This package installs the required Adobe fonts from GNU Ghostscript's
distribution, and prepares the Type1 fonts so they may also work in the
Xwindows environment.
PR: ports/6311
Submitted by: giffunip@asme.org
Diffstat (limited to 'print/gsfonts/Makefile')
-rw-r--r-- | print/gsfonts/Makefile | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/print/gsfonts/Makefile b/print/gsfonts/Makefile new file mode 100644 index 0000000..e3f9d73 --- /dev/null +++ b/print/gsfonts/Makefile @@ -0,0 +1,34 @@ +# New ports collection makefile for: gsfonts +# Version required: 5.10a +# Date created: 11 September 1997 +# Whom: giffunip +# +# $Id$ +# + +DISTNAME= gsfonts-5.10 +CATEGORIES= print +MASTER_SITES= ftp://ftp.cs.wisc.edu/ghost/gnu/fonts/ \ + $(MASTER_SITE_GNU) +DISTFILES= ${GS_FONTS_STD} ${GS_FONTS_OTHER} + +MAINTAINER= ports@FreeBSD.org + +BUILD_DEPENDS= $(LOCALBASE)/bin/type1inst:${PORTSDIR}/x11-fonts/p5-type1inst \ + $(X11BASE)/bin/mkfontdir:${PORTSDIR}/x11/XFree86 + +EXTRACT_ONLY= +NO_BUILD= yes + +GS_FONTS_STD= ghostscript-fonts-5.10a.tar.gz +GS_FONTS_OTHER= ghostscript-fonts-other-5.10.tar.gz +GSDIR= ${PREFIX}/share/ghostscript + +do-install: + @${MKDIR} ${GSDIR}/fonts + tar -xzf ${DISTDIR}/${GS_FONTS_OTHER} -C ${GSDIR}/fonts + tar -xzf ${DISTDIR}/${GS_FONTS_STD} -C ${GSDIR}/fonts + (cd ${PREFIX}/share/ghostscript/fonts; $(LOCALBASE)/bin/type1inst -nogs -nolog -q) + mkfontdir ${GSDIR}/fonts + +.include <bsd.port.mk> |