1997-06-11 06:20:47 +00: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>
|
|
|
|
#
|
1997-09-02 16:48:55 +00:00
|
|
|
# $Id: Makefile,v 1.8 1997/08/27 16:00:04 andreas Exp $
|
1997-06-11 06:20:47 +00:00
|
|
|
#
|
|
|
|
|
1997-08-24 14:36:26 +00:00
|
|
|
DISTNAME= ghostscript-5.03
|
1997-06-11 06:20:47 +00:00
|
|
|
CATEGORIES= print
|
1997-09-02 16:48:55 +00:00
|
|
|
MASTER_SITES= ftp://ftp.cs.wisc.edu/ghost/aladdin/gs503/ \
|
1997-08-27 06:52:44 +00:00
|
|
|
ftp://bonk.ethz.ch/gs-driver-distrib/
|
|
|
|
DISTFILES= ${GS_SOURCES} ${GS_FONTS_STD} ${GS_FONTS_OTHER} \
|
|
|
|
${HP850_DRV}
|
1997-06-11 06:20:47 +00:00
|
|
|
|
|
|
|
MAINTAINER= andreas@FreeBSD.org
|
|
|
|
|
|
|
|
BUILD_DEPENDS= /nonexistent:${PORTSDIR}/graphics/jpeg \
|
1997-08-27 06:52:44 +00:00
|
|
|
/nonexistent:${PORTSDIR}/graphics/png \
|
|
|
|
unzip:${PORTSDIR}/archiver/unzip
|
1997-06-11 06:20:47 +00:00
|
|
|
DEPENDS_TARGET= extract
|
|
|
|
|
|
|
|
MAKE_ENV= PORTSDIR=${PORTSDIR}
|
|
|
|
EXTRACT_ONLY= ${GS_SOURCES}
|
1997-08-24 14:36:26 +00:00
|
|
|
WRKSRC= ${WRKDIR}/gs5.03
|
1997-06-11 06:20:47 +00:00
|
|
|
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
|
|
|
|
|
1997-08-24 14:36:26 +00:00
|
|
|
GS_SOURCES= ghostscript-5.03.tar.gz
|
|
|
|
GS_SOURCES+= ghostscript-5.03gnu.tar.gz
|
1997-06-11 06:20:47 +00: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-4.0.tar.gz
|
|
|
|
GS_FONTS_OTHER= ghostscript-fonts-other-5.0.tar.gz
|
|
|
|
|
1997-08-27 06:52:44 +00:00
|
|
|
# Additional driver HP 850, see http://bonk.ethz.ch/hp850/hp850.html
|
|
|
|
HP850_DRV= hp850.zip
|
|
|
|
|
Major cleanup for ghostscript5 port.
- merged patch-af into patch-aa, both patches hacked unix-gcc.mak
- merged the scripts/{configure,configure.batch} changes into
patch-aa, so that unix-gcc.mak is hacked only by patch-aa
- when doing interactive configuration, every device driver is
now turned on, so you have to deselect devices
- when using BATCH compilation, you now get every supported device,
this one is especially for Satoshi, when making gs packages !
- Added a note into unix-gcc.mak, that DEVICE_DEVS now completely
are removed in the makefile, instead of this, the two configure
scripts now completely control, which devices have to be compiled in.
So, the configure target "patches" the unix-gcc.mak Makefile and
puts a DEVICE_DEVS line at line 1. When doing batch compilation
every device is included in this line, or the wanted devices ...
- The compilation option -DA4 is now included if you compile the port
by saying "make A4=yes".
I hope, I didn't forget a driver, look at that long line ;-)
BTW, I didn't create that DEVICE_DEVS line by hand, I did the
interactive installation, which created it automatically, and
after that I "stealed" that DEVICE_DEVS line for inclusion
into configure.batch ;-) So the devices in configure and configure.batch
are exactly the same, you only have to compare devices.mak with one
of the configure scripts.
BTW, should we nuke ghostscript4 ??? Does somebody know if any
port needs gs4 ???
1997-06-14 09:36:31 +00:00
|
|
|
.if defined(A4)
|
1997-06-11 06:20:47 +00:00
|
|
|
CFLAGS+= -DA4
|
Major cleanup for ghostscript5 port.
- merged patch-af into patch-aa, both patches hacked unix-gcc.mak
- merged the scripts/{configure,configure.batch} changes into
patch-aa, so that unix-gcc.mak is hacked only by patch-aa
- when doing interactive configuration, every device driver is
now turned on, so you have to deselect devices
- when using BATCH compilation, you now get every supported device,
this one is especially for Satoshi, when making gs packages !
- Added a note into unix-gcc.mak, that DEVICE_DEVS now completely
are removed in the makefile, instead of this, the two configure
scripts now completely control, which devices have to be compiled in.
So, the configure target "patches" the unix-gcc.mak Makefile and
puts a DEVICE_DEVS line at line 1. When doing batch compilation
every device is included in this line, or the wanted devices ...
- The compilation option -DA4 is now included if you compile the port
by saying "make A4=yes".
I hope, I didn't forget a driver, look at that long line ;-)
BTW, I didn't create that DEVICE_DEVS line by hand, I did the
interactive installation, which created it automatically, and
after that I "stealed" that DEVICE_DEVS line for inclusion
into configure.batch ;-) So the devices in configure and configure.batch
are exactly the same, you only have to compare devices.mak with one
of the configure scripts.
BTW, should we nuke ghostscript4 ??? Does somebody know if any
port needs gs4 ???
1997-06-14 09:36:31 +00:00
|
|
|
.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 06:20:47 +00:00
|
|
|
|
|
|
|
post-extract:
|
1997-08-24 14:36:26 +00:00
|
|
|
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
|
1997-08-27 16:00:04 +00:00
|
|
|
cd ${WRKSRC} && unzip -La ${DISTDIR}/${HP850_DRV}
|
1997-06-11 06:20:47 +00:00
|
|
|
|
|
|
|
do-configure:
|
|
|
|
.if defined(BATCH)
|
|
|
|
@${SETENV} PORTSDIR=${PORTSDIR} WRKSRC=${WRKSRC} \
|
1997-07-13 18:49:31 +00:00
|
|
|
${SH} ${SCRIPTDIR}/configure.batch
|
1997-06-11 06:20:47 +00:00
|
|
|
.else
|
|
|
|
@${SETENV} PORTSDIR=${PORTSDIR} WRKSRC=${WRKSRC} \
|
1997-07-13 18:49:31 +00:00
|
|
|
${SH} ${SCRIPTDIR}/configure
|
1997-06-11 06:20:47 +00:00
|
|
|
.endif
|
|
|
|
|
|
|
|
pre-install:
|
|
|
|
@${MKDIR} ${PREFIX}/share/ghostscript ${PREFIX}/bin ${PREFIX}/man/man1
|
1997-06-11 06:37:54 +00:00
|
|
|
(cd ${PREFIX}/share/ghostscript ; \
|
|
|
|
tar -xzf ${DISTDIR}/${GS_FONTS_STD})
|
|
|
|
(cd ${PREFIX}/share/ghostscript/fonts ; \
|
|
|
|
tar -xzf ${DISTDIR}/${GS_FONTS_OTHER})
|
1997-06-11 06:20:47 +00:00
|
|
|
|
|
|
|
post-install:
|
|
|
|
strip ${PREFIX}/bin/gs
|
|
|
|
|
|
|
|
.include <bsd.port.mk>
|