blob: a577f113edc80098f52f22ef8e2c5d4a9b568083 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
# Created by: Shen Chuan-Hsing <statue@freebsd.sinica.edu.tw>
# $FreeBSD$
PORTNAME= cnprint
PORTVERSION= 3.30b
PORTREVISION= 1
CATEGORIES= chinese print
MASTER_SITES= http://distfiles.cs.nctu.edu.tw/${PORTNAME}-${PORTVERSION}/ \
http://ftp.yz.yamagata-u.ac.jp/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= lwhsu@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
OPTIONS_DEFINE= A4SIZE
OPTIONS_DEFAULT= A4SIZE
A4SIZE_DESC= Set A4 (not Letter) as a default paper size
.include <bsd.port.pre.mk>
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
.if ${PORT_OPTIONS:MA4SIZE}
@${REINPLACE_CMD} -e 's/\(DEFAULT_PAPERSIZE\):.*$$/\1: 8.27 11.69/' \
${WRKSRC}/cnprint33.cmd
.endif
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.post.mk>
|