freebsd-ports/print/ghostscript5/Makefile
Satoshi Asami 5114e2637e Adjust port Makefiles to new EXTRACT_* variable defaults. See log of
bsd.port.mk rev. 1.304 for details on the change.

The fix here is one of the following.

(1) Define USE_BZIP2 instead of BUILD_DEPENDS on bzip2 and redefining
    EXTRACT_* commands.

(2) Change ${EXTRACT_CMD} to ${TAR} when the command is obviously
    calling the "tar" command (i.e., arguments like "-xzf" are spelled
    out).

(3) If ${EXTRACT_CMD} is called directly with ${EXTRACT_BEFORE_ARGS},
    add ${EXTRACT_AFTER_ARGS} to the command line as well.

(4) If any of EXTRACT_CMD, EXTRACT_BEFORE_ARGS or EXTRACT_AFTER_ARGS
    is set, define the other two too.
1999-02-03 11:12:01 +00:00

62 lines
1.9 KiB
Makefile

# New ports collection makefile for: ghostscript
# Version required: 5.10
# Date created: 11 December 1998
# Whom: giffunip
#
# $Id: Makefile,v 1.31 1999/01/27 07:41:25 fenner Exp $
#
DISTNAME= ghostscript-5.10
CATEGORIES= print
MASTER_SITES= ftp://ftp.pdb.sni.de/pub/utilities/misc/ \
http://www.ozemail.com.au/~geoffk/pdfencrypt/ \
ftp://ftp.cs.wisc.edu/ghost/gnu/gs510/ \
$(MASTER_SITE_GNU)
MASTER_SITE_SUBDIR= ghostscript
DISTFILES= ${PCL3_DRV} ${DECRYPT_PDF} ghostscript-5.10.tar.gz
MAINTAINER= ports@FreeBSD.org
RUN_DEPENDS= $(LOCALBASE)/share/ghostscript/fonts/Fontmap:${PORTSDIR}/print/gsfonts
BUILD_DEPENDS= /nonexistent:${PORTSDIR}/graphics/jpeg:extract \
/nonexistent:${PORTSDIR}/graphics/png:extract
LIB_DEPENDS= png.3:${PORTSDIR}/graphics/png
USE_XLIB= yes
EXTRACT_ONLY= ${GS_SOURCES} ${PCL3_DRV}
WRKSRC= ${WRKDIR}/gs5.10
MAKEFILE= unix-gcc.mak
MAKE_FLAGS= prefix=${PREFIX} CFLAGS="${CFLAGS}" -f
MAN1= gs.1 pdf2dsc.1 pdf2ps.1 ps2ascii.1 ps2epsi.1 ps2pdf.1 gs-hpdj.1
GS_SOURCES= ghostscript-5.10.tar.gz
# Additional driver for HP PCL3 Printers
PCL3_DRV= hpdj-2.5.tar.gz
# replacement for pdf_sec.ps, that allows you to read encrypted PDF files
DECRYPT_PDF= pdf_sec.ps
post-extract:
${LN} -s ${WRKDIRPREFIX}${PORTSDIR}/graphics/jpeg/work/jpeg-6b ${WRKSRC}/jpeg
${LN} -s ${WRKDIRPREFIX}${PORTSDIR}/graphics/png/work/libpng-1.0.3 ${WRKSRC}/libpng
# additional PCL3 driver
$(TAR) -xvf ${WRKDIR}/hpdj-2.5/hpdj.tar -C $(WRKSRC)
${PATCH} --directory=${WRKSRC} <${WRKSRC}/devs.mak-5.10.diff
${PATCH} --directory=${WRKSRC} <${WRKSRC}/zmedia2.c-5.10.diff
do-configure:
@(cd ${WRKSRC}; /bin/sh tar_cat )
post-install:
strip ${PREFIX}/bin/gs
${INSTALL_DATA} ${DISTDIR}/${DECRYPT_PDF} \
${PREFIX}/share/ghostscript/5.10
$(MKDIR) ${PREFIX}/libexec/lpr
${INSTALL_SCRIPT} $(WRKSRC)/pj-gs.sh ${PREFIX}/libexec/lpr
${INSTALL_SCRIPT} $(WRKSRC)/sysvlp.sh ${PREFIX}/libexec/lpr
${INSTALL_SCRIPT} $(WRKSRC)/if-hpdj ${PREFIX}/libexec/lpr
.include <bsd.port.mk>