summaryrefslogtreecommitdiff
path: root/print/ghostscript8/Makefile
diff options
context:
space:
mode:
authorAndreas Klemm <andreas@FreeBSD.org>1997-06-11 06:20:47 +0000
committerAndreas Klemm <andreas@FreeBSD.org>1997-06-11 06:20:47 +0000
commit788376e24db31cdc3880bf56b13b40b05015b3a0 (patch)
tree587e74390c2f4885c85f4f5a25bf410568518f9a /print/ghostscript8/Makefile
parentUSE_X11 is not necessary if USE_IMAKE is defined. While I'm here, (diff)
New ghostscript 5 port
Notes
Notes: svn path=/head/; revision=6858
Diffstat (limited to 'print/ghostscript8/Makefile')
-rw-r--r--print/ghostscript8/Makefile65
1 files changed, 65 insertions, 0 deletions
diff --git a/print/ghostscript8/Makefile b/print/ghostscript8/Makefile
new file mode 100644
index 000000000000..d0ce7d07f521
--- /dev/null
+++ b/print/ghostscript8/Makefile
@@ -0,0 +1,65 @@
+# New ports collection makefile for: ghostscript
+# Version required: 5.0
+# Date created: Tue Jun 10 21:58:54 CEST 1997
+# Whom: Andreas Klemm <andreas@klemm.gtn.com>
+#
+# $Id$
+#
+
+DISTNAME= ghostscript-5.0
+CATEGORIES= print
+MASTER_SITES= ftp://ftp.cs.wisc.edu/ghost/aladdin/
+DISTFILES= ${GS_SOURCES} ${GS_FONTS_STD} ${GS_FONTS_OTHER}
+
+MAINTAINER= andreas@FreeBSD.org
+
+BUILD_DEPENDS= /nonexistent:${PORTSDIR}/graphics/jpeg \
+ /nonexistent:${PORTSDIR}/graphics/png
+DEPENDS_TARGET= extract
+
+MAKE_ENV= PORTSDIR=${PORTSDIR}
+EXTRACT_ONLY= ${GS_SOURCES}
+WRKSRC= ${WRKDIR}/gs5.0
+MAKEFILE= unix-gcc.mak
+MAKE_FLAGS= prefix=${PREFIX} zlibc_=-lz CFLAGS="${CFLAGS}" -f
+MAN1= gs.1 pdf2dsc.1 pdf2ps.1 ps2ascii.1 ps2epsi.1 ps2pdf.1
+
+GS_SOURCES= ghostscript-5.0.tar.gz
+GS_SOURCES+= ghostscript-5.0gnu.tar.gz
+# Note: the following two are real files that have symlinks with
+# later version numbers pointing to them. To avoid unnecessarily
+# downloading distfiles, do not change these when upgrading the port
+# unless the files really change.
+GS_FONTS_STD= ghostscript-fonts-std-4.0.tar.gz
+GS_FONTS_OTHER= ghostscript-fonts-other-5.0.tar.gz
+
+#if you are using DIN A4 paper format, keep this _here_ before MAKE_FLAGS
+CFLAGS+= -DA4
+
+post-extract:
+ touch $(WRKSRC)/adler32.c
+ touch $(WRKSRC)/deflate.c
+ touch $(WRKSRC)/trees.c
+ touch $(WRKSRC)/adler32.o
+ touch $(WRKSRC)/deflate.o
+ touch $(WRKSRC)/trees.o
+
+do-configure:
+.if defined(BATCH)
+ @${SETENV} PORTSDIR=${PORTSDIR} WRKSRC=${WRKSRC} \
+ /bin/sh ${SCRIPTDIR}/configure.batch
+.else
+ @${SETENV} PORTSDIR=${PORTSDIR} WRKSRC=${WRKSRC} \
+ /bin/sh ${SCRIPTDIR}/configure
+.endif
+
+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})
+
+post-install:
+ strip ${PREFIX}/bin/gs
+
+.include <bsd.port.mk>
+