freebsd-ports/print/ghostscript8/Makefile

92 lines
2.8 KiB
Makefile
Raw Normal View History

1997-06-11 08:20:47 +02:00
# 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>
#
1998-12-03 09:24:21 +01:00
# $Id: Makefile,v 1.25 1998/12/01 09:59:46 asami Exp $
1997-06-11 08:20:47 +02:00
#
1998-12-03 09:24:21 +01:00
DISTNAME= ghostscript-5.50
1997-06-11 08:20:47 +02:00
CATEGORIES= print
1998-12-03 09:24:21 +01:00
MASTER_SITES= ftp://ftp.cs.wisc.edu/ghost/aladdin/gs550/ \
http://www.erdw.ethz.ch/~bonk/ftp/gs-driver-distrib/ \
http://www.ozemail.com.au/~geoffk/pdfencrypt/
DISTFILES= ${GS_SOURCES} ${GS_FONTS_STD} ${GS_FONTS_OTHER} \
${HP850_DRV} ${DECRYPT_PDF}
1998-12-03 09:24:21 +01:00
MAINTAINER= andreas@FreeBSD.ORG
1997-06-11 08:20:47 +02:00
BUILD_DEPENDS= /nonexistent:${PORTSDIR}/graphics/jpeg:extract \
/nonexistent:${PORTSDIR}/graphics/png:extract \
unzip:${PORTSDIR}/archivers/unzip
1998-12-03 09:24:21 +01:00
LIB_DEPENDS= png.2:${PORTSDIR}/graphics/png
1997-06-11 08:20:47 +02:00
1998-11-28 10:07:24 +01:00
USE_XLIB= yes
1997-06-11 08:20:47 +02:00
EXTRACT_ONLY= ${GS_SOURCES}
1998-12-03 09:24:21 +01:00
WRKSRC= ${WRKDIR}/gs5.50
USE_GMAKE= yes
1997-06-11 08:20:47 +02:00
MAKEFILE= unix-gcc.mak
1998-12-03 09:24:21 +01:00
MAN1= gs.1 pdf2dsc.1 pdf2ps.1 ps2ascii.1 ps2epsi.1 ps2pdf.1 ps2ps.1
1997-06-11 08:20:47 +02:00
1998-12-03 09:24:21 +01:00
GS_SOURCES= ghostscript-5.50.tar.gz
GS_SOURCES+= ghostscript-5.50gnu.tar.gz
1997-06-11 08:20:47 +02:00
# 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-5.10.tar.gz
GS_FONTS_OTHER= ghostscript-fonts-other-5.10.tar.gz
1997-06-11 08:20:47 +02:00
1998-12-03 09:24:21 +01:00
# Additional driver HP 850, see http://www.erdw.ethz.ch/~bonk/hp850/hp850.html
HP850_DRV= hp8xxs13.zip
# replacement for pdf_sec.ps, that allows you to read encrypted PDF files
DECRYPT_PDF= pdf_sec.ps
.if defined(A4)
1997-06-11 08:20:47 +02:00
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
1997-06-11 08:20:47 +02:00
post-extract:
1998-12-03 09:24:21 +01:00
${LN} -s ${WRKDIRPREFIX}${PORTSDIR}/graphics/jpeg/work/jpeg-6b ${WRKSRC}/jpeg
${LN} -s ${WRKDIRPREFIX}${PORTSDIR}/graphics/png/work/libpng-1.0.2 ${WRKSRC}/libpng
${MV} ${WRKSRC}/devs.mak ${WRKSRC}/devs.mak.bak
cd ${WRKSRC} && unzip -Lao ${DISTDIR}/${HP850_DRV}
1998-12-03 09:24:21 +01:00
${MV} ${WRKSRC}/devs.mak.bak ${WRKSRC}/devs.mak
1997-06-11 08:20:47 +02:00
do-configure:
.if defined(BATCH)
1998-12-03 09:24:21 +01:00
@${SETENV} WRKSRC=${WRKSRC} ${SH} ${SCRIPTDIR}/configure.batch
1997-06-11 08:20:47 +02:00
.else
1998-12-03 09:24:21 +01:00
@${SETENV} WRKSRC=${WRKSRC} ${SH} ${SCRIPTDIR}/configure
1997-06-11 08:20:47 +02:00
.endif
1998-12-03 09:24:21 +01:00
pre-build:
${MKDIR} ${WRKSRC}/obj
1997-06-11 08:20:47 +02:00
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})
1997-06-11 08:20:47 +02:00
# install the readme and license file of the hp8xxx driver as well
1997-06-11 08:20:47 +02:00
post-install:
strip ${PREFIX}/bin/gs
${INSTALL_DATA} ${DISTDIR}/${DECRYPT_PDF} \
1998-12-03 09:24:21 +01:00
${PREFIX}/share/ghostscript/5.50
${INSTALL_DATA} ${WRKSRC}/license.hp8 \
1998-12-03 09:24:21 +01:00
${PREFIX}/share/ghostscript/5.50/doc
${INSTALL_DATA} ${WRKSRC}/readme.hp8 \
1998-12-03 09:24:21 +01:00
${PREFIX}/share/ghostscript/5.50/doc
1997-06-11 08:20:47 +02:00
.include <bsd.port.mk>