mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-11 02:50:24 +00:00
a575c4db51
- Some cosmetic changes - Pass maintainership to submitter PR: ports/106202 Submitted by: chinsan
54 lines
1.7 KiB
Makefile
54 lines
1.7 KiB
Makefile
# New ports collection makefile for: cnprint
|
|
# Date created: 29 Jan 2003
|
|
# Whom: Shen Chuan-Hsing <statue@freebsd.sinica.edu.tw>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= cnprint
|
|
PORTVERSION= 3.30b
|
|
CATEGORIES= chinese print
|
|
MASTER_SITES= http://ftp.wustl.edu/pub/FreeBSD/distfiles/${PORTNAME}-${PORTVERSION}/ \
|
|
http://ftp.yz.yamagata-u.ac.jp/pub/FreeBSD/distfiles/${PORTNAME}-${PORTVERSION}/ \
|
|
http://ftp.osuosl.org/pub/FreeBSD/distfiles/${PORTNAME}-${PORTVERSION}/
|
|
DISTFILES= cnprint330b.c cnprint330b.readme ttfb330b.c cnprint330b.hlp \
|
|
cnprint33.cmd helvet.dat mssong.ttf.gz mssong.htf \
|
|
mshei.ttf.gz mshei.htf cc48s.hbf cc48.sym.gz cc48s.1.gz \
|
|
cc48s.2.gz hbf.tar.gz ntu_kai48.hbf ntu_kai48.bin.gz
|
|
|
|
MAINTAINER= chinsan@FreeBSD.org
|
|
COMMENT= Print CJK text (or convert to PostScript)
|
|
|
|
DIST_SUBDIR= ${PORTNAME}-${PORTVERSION}
|
|
FILES= ${WRKSRC}/*.sym ${WRKSRC}/*.htf ${WRKSRC}/*.hbf \
|
|
${WRKSRC}/*.bin ${WRKSRC}/*.ttf
|
|
|
|
do-extract:
|
|
${MKDIR} ${WRKSRC}
|
|
.for i in ${DISTFILES}
|
|
${CP} ${DISTDIR}/${DIST_SUBDIR}/${i} ${WRKSRC}
|
|
.endfor
|
|
cd ${WRKSRC} ; \
|
|
${TAR} pzvxf hbf.tar.gz ; ${MV} hbf/* . ; \
|
|
${RM} -fr hbf ; \
|
|
${GUNZIP_CMD} *.gz || ${TRUE}
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's,/usr/local/src,${PREFIX}/share,' \
|
|
${WRKSRC}/cnprint330b.c
|
|
@${REINPLACE_CMD} -e 's/\(DEFAULT_JIS_FONT\):.*$$/\1: kanji48.hbf/; \
|
|
s/\(DEFAULT_BIG5FONT\):.*$$/\1: ntu_kai48.hbf/; \
|
|
s/\(DEFAULT_ENCODING\):.*$$/\1: BIG5/' ${WRKSRC}/cnprint33.cmd
|
|
|
|
do-build:
|
|
cd ${WRKSRC} ; \
|
|
${CC} cnprint330b.c ttfb330b.c -o cnprint -DPREFIX=\"${PREFIX}\"
|
|
|
|
do-install:
|
|
${MKDIR} ${DATADIR}
|
|
${INSTALL_PROGRAM} ${WRKSRC}/cnprint ${PREFIX}/bin
|
|
${INSTALL_DATA} ${WRKSRC}/${PORTNAME}33.cmd ${DATADIR}/${PORTNAME}.cmd
|
|
${INSTALL_DATA} ${FILES} ${DATADIR}
|
|
|
|
.include <bsd.port.mk>
|