mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
74b19501bc
Anomalies found: - autoconvert was missing "zh-" in front of PKGNAME - xcin (both 2.3 and 2.5) had invalid version strings - neither of xcin ports had NO_LATEST_LINK - telnet8-1.0 thinks PKGNAME is zh-telnet-1.0 Fixed all except the last (I wasn't sure if it was intentional).
41 lines
1.2 KiB
Makefile
41 lines
1.2 KiB
Makefile
# ex:ts=8
|
|
# Ports collection makefile for: gb2ps
|
|
# Date created: Mon Feb 03, 1997
|
|
# Whom: David O'Brien (obrien@FreeBSD.org)
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= gb2ps
|
|
PORTVERSION= 2.02
|
|
CATEGORIES= chinese print
|
|
MASTER_SITES= ftp://ftp.ifcss.org/pub/software/unix/print/ \
|
|
ftp://ftp.ifcss.org/pub/software/fonts/gb/misc/ \
|
|
ftp://ftp.edu.tw/Chinese/ifcss/software/unix/print/ \
|
|
ftp://ftp.edu.tw/Chinese/ifcss/software/fonts/gb/misc/ \
|
|
ftp://ftp.cuhk.hk/pub/chinese/ifcss/software/unix/print/ \
|
|
ftp://ftp.cuhk.hk/pub/chinese/ifcss/software/fonts/gb/misc/
|
|
DISTNAME= gb2ps.2.02
|
|
DISTFILES= ${DISTNAME}.tar.gz \
|
|
csong24.ccf.gz ckai24.ccf.gz cfang24.ccf.gz chei24.ccf.gz \
|
|
cfan24.ccf.gz
|
|
|
|
MAINTAINER= obrien@FreeBSD.org
|
|
|
|
EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX}
|
|
WRKSRC= ${WRKDIR}/GB2PS
|
|
|
|
do-install:
|
|
@${MKDIR} ${PREFIX}/share/chinese/gb
|
|
${INSTALL_PROGRAM} ${WRKSRC}/gb2ps ${PREFIX}/bin
|
|
${INSTALL_DATA} ${WRKSRC}/cover.ps ${PREFIX}/share/chinese
|
|
.for font in csong24.ccf ckai24.ccf cfang24.ccf chei24.ccf cfan24.ccf
|
|
${GUNZIP_CMD} -c ${DISTDIR}/${font}.gz > ${PREFIX}/share/chinese/gb/${font}
|
|
.endfor
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${PREFIX}/share/doc/gb2ps
|
|
${INSTALL_MAN} ${WRKSRC}/gb2ps.help ${PREFIX}/share/doc/gb2ps
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|