1998-07-29 16:55:49 +02:00
|
|
|
# New ports collection makefile for: freetype-ghostscript
|
1999-09-03 19:52:40 +02:00
|
|
|
# Date created: 27 Mar 1998
|
1999-04-02 05:48:54 +02:00
|
|
|
# Whom: CHOI Junho <cjh@kr.freebsd.org>
|
1998-07-29 16:55:49 +02:00
|
|
|
#
|
1999-08-30 14:09:14 +02:00
|
|
|
# $FreeBSD$
|
1998-07-29 16:55:49 +02:00
|
|
|
#
|
1999-09-03 19:52:40 +02:00
|
|
|
# Based on print/ghostscript5 and japanese/vfghostscript5
|
|
|
|
# use Adobe's CID-keyed Korean font because there are no wide accepted
|
|
|
|
# default korean font yet
|
1998-07-29 16:55:49 +02:00
|
|
|
#
|
|
|
|
|
2000-04-13 11:17:26 +02:00
|
|
|
PORTNAME= ghostscript
|
|
|
|
PORTVERSION= 5.10
|
2001-09-13 05:26:18 +02:00
|
|
|
PORTREVISION= 1
|
1998-07-29 16:55:49 +02:00
|
|
|
CATEGORIES= korean print
|
1999-09-03 19:52:40 +02:00
|
|
|
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) \
|
1998-07-29 16:55:49 +02:00
|
|
|
http://www.ldl.jaist.ac.jp/~akr/nonresearch/free-software/ghostscript/ \
|
|
|
|
http://itohws03.ee.noda.sut.ac.jp/~matsuda/VFlib-FT/ \
|
1999-09-03 19:52:40 +02:00
|
|
|
ftp://ftp.kr.freebsd.org/pub/users/cjh/gs-ko/ \
|
|
|
|
ftp://ftp.kr.freebsd.org/pub/users/cjh/gs-ko/misc/
|
|
|
|
MASTER_SITE_SUBDIR= ghostscript
|
2000-04-13 11:17:26 +02:00
|
|
|
PKGNAMESUFFIX= -ft
|
|
|
|
DISTNAME= ${PKGNAME}
|
1999-09-03 19:52:40 +02:00
|
|
|
DISTFILES= ${PCL3_DRV} ${DECRYPT_PDF} ${GS_SOURCES} \
|
|
|
|
${VFLIB_GS} ${KFFTYPE} ${KFFTYPE_PATCH} \
|
|
|
|
${HFFTYPE} ${GS_CID_PATCH}
|
2001-10-03 20:09:23 +02:00
|
|
|
DIST_SUBDIR= ghostscript
|
2000-07-15 15:14:53 +02:00
|
|
|
EXTRACT_ONLY= ${GS_SOURCES} ${PCL3_DRV}
|
1998-07-29 16:55:49 +02:00
|
|
|
|
2000-07-15 15:14:53 +02:00
|
|
|
MAINTAINER= cjh@FreeBSD.org
|
1998-10-16 03:03:23 +02:00
|
|
|
|
2000-07-15 15:14:53 +02:00
|
|
|
RUN_DEPENDS= $(LOCALBASE)/share/ghostscript/fonts:${PORTSDIR}/print/gsfonts \
|
|
|
|
$(LOCALBASE)/share/ghostscript/fonts/CMap:${PORTSDIR}/korean/munhwafonts-cid \
|
|
|
|
$(X11BASE)/lib/X11/fonts/TrueType/gulim.ttf:${PORTSDIR}/korean/baekmukfonts-ttf
|
2001-06-01 00:22:59 +02:00
|
|
|
BUILD_DEPENDS= ${NONEXISTENT}:${PORTSDIR}/graphics/jpeg:extract \
|
|
|
|
${NONEXISTENT}:${PORTSDIR}/graphics/png:extract
|
2001-09-13 05:26:18 +02:00
|
|
|
LIB_DEPENDS= png.5:${PORTSDIR}/graphics/png
|
1998-07-29 16:55:49 +02:00
|
|
|
|
2000-07-15 15:14:53 +02:00
|
|
|
USE_XLIB= YES
|
(1) Add new variable, XFREE86_VERSION, to specify which version of
XFree86 (3 or 4) to depend to when USE_XLIB is set.
XFREE86_VERSION defaults to 3 for now, but adventurous users can
override it in /etc/make.conf. When XFREE86_VERSION=3, USE_XLIB
will add a dependency to x11/XFree86; when it is set to 4, the
dependency will be to x11/XFree86-4-libraries. When
XFREE86_VERSION=4, the PKG_IGNORE_DEPENDS and ALWAYS_BUILD_DEPENDS
hacks to avoid messing with XFree86 are turned off.
Since XFree86 version 4 includes some software that used to be
separate ports, when XFREE86_VERSION=3 the following variables are
provided:
USE_DGS LIB_DEPENDS on x11/dgs
USE_FREETYPE LIB_DEPENDS on print/freetype
USE_MESA LIB_DEPENDS on graphics/Mesa3
USE_XPM LIB_DEPENDS on graphics/xpm
When XFREE86_VERSION=4, these variables have no effect. The
LIB_DEPENDS in the tree for the above four ports have all been
converted to the USE_* counterparts. For your information, this
is the count of the number of ports:
USE_DGS 0
USE_FREETYPE 16
USE_MESA 36
USE_XPM 236
There is a new variable, XAWVER, which is set to 6 when
XFREE86_VERSION=3 and 7 when XFREE86_VERSION=4. This is also
passed to PLIST_SUB so ports that build Xaw based shared libraries
can use this variable to substitute the shlib version number.
There is also a provision of using a separate mtree file for
XFREE86_VERSION=4, but that part is not enabled yet.
Reviewed by: the ports list
Tested by: make index (XFREE86_VERSION=3 only)
(2) Add hebrew to list of valid categories.
Submitted by: nbm
2000-08-03 11:28:57 +02:00
|
|
|
USE_FREETYPE= YES
|
1998-07-29 16:55:49 +02:00
|
|
|
WRKSRC= ${WRKDIR}/gs5.10
|
1999-09-03 19:52:40 +02:00
|
|
|
|
1998-07-29 16:55:49 +02:00
|
|
|
MAKEFILE= unix-gcc.mak
|
1999-09-03 19:52:40 +02:00
|
|
|
#MAKE_FLAGS= prefix=${PREFIX} CFLAGS="${CFLAGS}" -f
|
|
|
|
MAKE_FLAGS= prefix=${PREFIX} -f
|
|
|
|
MAN1= gs.1 pdf2dsc.1 pdf2ps.1 ps2ascii.1 ps2epsi.1 ps2pdf.1 gs-hpdj.1
|
1998-07-29 16:55:49 +02:00
|
|
|
|
|
|
|
GS_SOURCES= ghostscript-5.10.tar.gz
|
|
|
|
|
1999-09-03 19:52:40 +02:00
|
|
|
# Additional driver for HP PCL3 Printers
|
2000-01-29 23:00:48 +01:00
|
|
|
PCL3_DRV= hpdj-2.6.tar.gz
|
1998-07-29 16:55:49 +02:00
|
|
|
|
|
|
|
# replacement for pdf_sec.ps, that allows you to read encrypted PDF files
|
|
|
|
DECRYPT_PDF= pdf_sec.ps
|
|
|
|
|
1999-09-03 19:52:40 +02:00
|
|
|
# Korean patch files
|
1998-07-29 16:55:49 +02:00
|
|
|
# vflib patch
|
1999-09-03 19:52:40 +02:00
|
|
|
VFLIB_GS= gs5.10-vflib-1.1.tar.gz
|
1998-07-29 16:55:49 +02:00
|
|
|
# kfftype
|
2001-02-06 14:25:13 +01:00
|
|
|
KFFTYPE= gs5-kfftype.tar.gz
|
1998-07-29 16:55:49 +02:00
|
|
|
# kfftype patches
|
1999-09-03 19:52:40 +02:00
|
|
|
KFFTYPE_PATCH= gs5-kfftype-patch1.diff gs5-kfftype-patch2.diff
|
1998-07-29 16:55:49 +02:00
|
|
|
# hfftype patch
|
2001-02-06 14:25:13 +01:00
|
|
|
HFFTYPE= gs5-hfftype-0.2.tar.gz
|
1998-07-29 16:55:49 +02:00
|
|
|
# cid-keyed font bug patch for 5.10
|
1999-09-03 19:52:40 +02:00
|
|
|
GS_CID_PATCH= gs5.10-cid-bugfix.diff
|
1998-07-29 16:55:49 +02:00
|
|
|
|
|
|
|
post-extract:
|
2000-06-30 15:29:55 +02:00
|
|
|
${LN} -s ${WRKDIRPREFIX}${.CURDIR}/../../graphics/jpeg/work/jpeg-* ${WRKSRC}/jpeg
|
|
|
|
${LN} -s ${WRKDIRPREFIX}${.CURDIR}/../../graphics/png/work/libpng-* ${WRKSRC}/libpng
|
1999-09-03 19:52:40 +02:00
|
|
|
# additional PCL3 driver
|
2000-01-29 23:00:48 +01:00
|
|
|
$(TAR) -xvf ${WRKDIR}/hpdj-2.6/hpdj.tar -C $(WRKSRC)
|
|
|
|
@${CAT} ${WRKSRC}/devs.mak-5.10.add >> ${WRKSRC}/devs.mak
|
|
|
|
@${PATCH} -d ${WRKSRC} --forward --quiet -E < ${WRKSRC}/zmedia2.c-5.10.diff
|
1998-07-29 16:55:49 +02:00
|
|
|
|
|
|
|
pre-patch:
|
2001-10-03 20:09:23 +02:00
|
|
|
cd ${WRKSRC} && tar -xzf ${_DISTDIR}/${VFLIB_GS} && \
|
1998-07-29 16:55:49 +02:00
|
|
|
${PATCH} -s -p1 < gs5.10-vflib-1.1/gs5.10-vflib-1.1.diff
|
2001-10-03 20:09:23 +02:00
|
|
|
cd ${WRKSRC} && tar -xzf ${_DISTDIR}/${KFFTYPE} && \
|
1998-07-29 16:55:49 +02:00
|
|
|
cd ${WRKSRC}/kfftype && \
|
|
|
|
for file in ${KFFTYPE_PATCH}; do \
|
2001-10-03 20:09:23 +02:00
|
|
|
${PATCH} -s -p0 < ${_DISTDIR}/$$file; \
|
1998-07-29 16:55:49 +02:00
|
|
|
done && \
|
|
|
|
${CP} -r ${WRKSRC}/kfftype/* ${WRKSRC}/
|
2001-10-03 20:09:23 +02:00
|
|
|
cd ${WRKSRC} && tar -xzf ${_DISTDIR}/${HFFTYPE} && \
|
1999-09-03 19:52:40 +02:00
|
|
|
${CP} -r ${WRKSRC}/gs5-hfftype-0.2/* ${WRKSRC}/
|
1998-07-29 16:55:49 +02:00
|
|
|
cd ${WRKSRC} && ${PATCH} -s -p1 < \
|
1999-09-03 19:52:40 +02:00
|
|
|
${WRKSRC}/gs5-hfftype-0.2/gs5.10-hfftype.diff
|
1998-07-29 16:55:49 +02:00
|
|
|
cd ${WRKSRC} && ${PATCH} ${PATCH_DIST_ARGS} < \
|
2001-10-03 20:09:23 +02:00
|
|
|
${_DISTDIR}/${GS_CID_PATCH}
|
1998-07-29 16:55:49 +02:00
|
|
|
|
|
|
|
do-configure:
|
1999-09-03 19:52:40 +02:00
|
|
|
@(cd ${WRKSRC}; ${SH} tar_cat )
|
1998-07-29 16:55:49 +02:00
|
|
|
|
2000-07-15 15:14:53 +02:00
|
|
|
pre-build:
|
|
|
|
${SED} -e "s@%%PREFIX%%@${X11BASE}@g" \
|
|
|
|
${FILESDIR}/hconfig.ps.in > \
|
|
|
|
${WRKSRC}/hangul/hconfig.ps
|
|
|
|
|
1998-07-29 16:55:49 +02:00
|
|
|
pre-install:
|
|
|
|
@${MKDIR} ${PREFIX}/share/ghostscript ${PREFIX}/bin ${PREFIX}/man/man1
|
|
|
|
|
|
|
|
post-install:
|
|
|
|
strip ${PREFIX}/bin/gs
|
2001-10-03 20:09:23 +02:00
|
|
|
${INSTALL_DATA} ${_DISTDIR}/${DECRYPT_PDF} \
|
1998-07-29 16:55:49 +02:00
|
|
|
${PREFIX}/share/ghostscript/5.10ft
|
1999-09-03 19:52:40 +02:00
|
|
|
$(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
|
1998-07-29 16:55:49 +02:00
|
|
|
${INSTALL_DATA} ${WRKSRC}/gs5-hfftype-0.2/README \
|
|
|
|
${PREFIX}/share/ghostscript/5.10ft/doc/README.ko
|
|
|
|
|
|
|
|
.include <bsd.port.mk>
|