freebsd-ports/print/ghostscript-afpl/Makefile
Andreas Klemm 6895bfa18f Included new driver version 1.2 for HP 850 printers and related ...
See: http://bonk.ethz.ch/hp850/hp850.html
Additional driver will be fetched directly from internet now
Because this driver source is packed as a .zip file (tada *sigh*)
and contains ^M's (where the combination \^M confuses gcc) we have
to BUILD_DEPEND on unzip and pipe the source and header files through
sed to wipe out the ^M's ...
As requested by:	Lars Koeller
1997-08-27 06:52:44 +00:00

89 lines
2.6 KiB
Makefile

# 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: Makefile,v 1.6 1997/08/24 14:36:24 andreas Exp $
#
DISTNAME= ghostscript-5.03
CATEGORIES= print
MASTER_SITES= ftp://ftp.cs.wisc.edu/ghost/aladdin/ \
ftp://bonk.ethz.ch/gs-driver-distrib/
DISTFILES= ${GS_SOURCES} ${GS_FONTS_STD} ${GS_FONTS_OTHER} \
${HP850_DRV}
MAINTAINER= andreas@FreeBSD.org
BUILD_DEPENDS= /nonexistent:${PORTSDIR}/graphics/jpeg \
/nonexistent:${PORTSDIR}/graphics/png \
unzip:${PORTSDIR}/archiver/unzip
DEPENDS_TARGET= extract
MAKE_ENV= PORTSDIR=${PORTSDIR}
EXTRACT_ONLY= ${GS_SOURCES}
WRKSRC= ${WRKDIR}/gs5.03
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.03.tar.gz
GS_SOURCES+= ghostscript-5.03gnu.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
# Additional driver HP 850, see http://bonk.ethz.ch/hp850/hp850.html
HP850_DRV= hp850.zip
.if defined(A4)
CFLAGS+= -DA4
.endif
pre-fetch:
.if !defined(A4)
@${ECHO_MSG} "Type \"make A4=yes\" if you want -DA4 for compilation."
.else
@${ECHO_MSG} "Using -DA4 for compilation."
.endif
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
ln -s ${PORTSDIR}/graphics/jpeg/work/jpeg-6a ${WRKSRC}/jpeg-6a
ln -s ${PORTSDIR}/graphics/png/work/libpng-0.96 ${WRKSRC}/libpng
cd ${WRKSRC} && unzip ${DISTDIR}/${HP850_DRV}
.for file in gdevcd8.c gdevcd8.h
# ( cd ${WRKSRC} && sed -e "s/\\\\,//" < ${file} | sed -e "s/\\
//" > ${file}.tmp && mv ${file}.tmp ${file} )
( cd ${WRKSRC} && sed -e "s/
//" < ${file} > ${file}.tmp && mv ${file}.tmp ${file} )
.endfor
do-configure:
.if defined(BATCH)
@${SETENV} PORTSDIR=${PORTSDIR} WRKSRC=${WRKSRC} \
${SH} ${SCRIPTDIR}/configure.batch
.else
@${SETENV} PORTSDIR=${PORTSDIR} WRKSRC=${WRKSRC} \
${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/fonts ; \
tar -xzf ${DISTDIR}/${GS_FONTS_OTHER})
post-install:
strip ${PREFIX}/bin/gs
.include <bsd.port.mk>