diff options
author | andreas <andreas@FreeBSD.org> | 1997-08-24 22:36:26 +0800 |
---|---|---|
committer | andreas <andreas@FreeBSD.org> | 1997-08-24 22:36:26 +0800 |
commit | d4154098ef4283a879cbb77326083d52ee696484 (patch) | |
tree | 1e1ef0bb1933e5e67a6eeaabc5354734e1533bc9 /print/ghostscript8/Makefile | |
parent | 80a0acc9a48c892ea5696ffe3701825f701b7375 (diff) | |
download | freebsd-ports-gnome-d4154098ef4283a879cbb77326083d52ee696484.tar.gz freebsd-ports-gnome-d4154098ef4283a879cbb77326083d52ee696484.tar.zst freebsd-ports-gnome-d4154098ef4283a879cbb77326083d52ee696484.zip |
Upgrade to ghostscript 5.03
Makefile:
- Changed WRKSRC
- New GS_SOURCES
- Make symbolic link from jpeg-6a and libpng port's workdir into
WRKSRC, instead of patching unix-gcc.mak further:
ln -s ${PORTSDIR}/graphics/jpeg/work/jpeg-6a ${WRKSRC}/jpeg-6a
ln -s ${PORTSDIR}/graphics/png/work/libpng-0.96 ${WRKSRC}/libpng
- updated md5 files
patches/patch-aa:
- new unified diff because some of the above mentioned changes
- Only commented out the default DEVICE_DEVS
- make our zlib compile again
pkg/DESCR:
- bumped version number
pkg/PLIST:
- updated PLIST
- added proper @dirrm's for a successfull pkg_delete action
scripts/configure:
- added new drivers
"la70t" "DEC LA70 printer with low resol. text enhancement" ON \
"lq850" "EPSON LQ-850 (360x360), ok for Canon BJ300 in LQ850 emul" ON \
- rmoved one unnecessary "pdfwrite"
- same for scripts/configure.batch
As requested by: Lars Koeller ;-)
Diffstat (limited to 'print/ghostscript8/Makefile')
-rw-r--r-- | print/ghostscript8/Makefile | 24 |
1 files changed, 13 insertions, 11 deletions
diff --git a/print/ghostscript8/Makefile b/print/ghostscript8/Makefile index 016802415e01..c6463d08a23a 100644 --- a/print/ghostscript8/Makefile +++ b/print/ghostscript8/Makefile @@ -3,10 +3,10 @@ # Date created: Tue Jun 10 21:58:54 CEST 1997 # Whom: Andreas Klemm <andreas@klemm.gtn.com> # -# $Id: Makefile,v 1.4 1997/06/14 09:36:28 andreas Exp $ +# $Id: Makefile,v 1.5 1997/07/13 18:49:28 max Exp $ # -DISTNAME= ghostscript-5.0 +DISTNAME= ghostscript-5.03 CATEGORIES= print MASTER_SITES= ftp://ftp.cs.wisc.edu/ghost/aladdin/ DISTFILES= ${GS_SOURCES} ${GS_FONTS_STD} ${GS_FONTS_OTHER} @@ -19,13 +19,13 @@ DEPENDS_TARGET= extract MAKE_ENV= PORTSDIR=${PORTSDIR} EXTRACT_ONLY= ${GS_SOURCES} -WRKSRC= ${WRKDIR}/gs5.0 +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.0.tar.gz -GS_SOURCES+= ghostscript-5.0gnu.tar.gz +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 @@ -46,12 +46,14 @@ pre-fetch: 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 + 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 do-configure: .if defined(BATCH) |