diff options
author | Li-Wen Hsu <lwhsu@FreeBSD.org> | 2013-11-18 13:42:01 +0000 |
---|---|---|
committer | Li-Wen Hsu <lwhsu@FreeBSD.org> | 2013-11-18 13:42:01 +0000 |
commit | 07e453b674aef27a979456b0f4268ffd1a014f56 (patch) | |
tree | f76615cf2fc36223805a07b58cc65378a0ca819b | |
parent | cd8ab6a935b72a20bc5422264ca5d363ff7c3764 (diff) |
- Support STAGE
Notes
Notes:
svn path=/head/; revision=334192
-rw-r--r-- | chinese/cnprint/Makefile | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/chinese/cnprint/Makefile b/chinese/cnprint/Makefile index 41698f215e35..b4d3ea70f55e 100644 --- a/chinese/cnprint/Makefile +++ b/chinese/cnprint/Makefile @@ -24,7 +24,6 @@ OPTIONS_DEFAULT= A4SIZE A4SIZE_DESC= Set A4 (not Letter) as a default paper size -NO_STAGE= yes .include <bsd.port.pre.mk> do-extract: @@ -53,9 +52,9 @@ do-build: ${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} + ${MKDIR} ${STAGEDIR}${DATADIR} + ${INSTALL_PROGRAM} ${WRKSRC}/cnprint ${STAGEDIR}${PREFIX}/bin + ${INSTALL_DATA} ${WRKSRC}/${PORTNAME}33.cmd ${STAGEDIR}${DATADIR}/${PORTNAME}.cmd + ${INSTALL_DATA} ${FILES} ${STAGEDIR}${DATADIR} .include <bsd.port.post.mk> |