diff options
author | pawel <pawel@FreeBSD.org> | 2014-05-30 20:47:07 +0800 |
---|---|---|
committer | pawel <pawel@FreeBSD.org> | 2014-05-30 20:47:07 +0800 |
commit | 57bb7ed93917f7c4c34a9542e2dabcecd3f0f45b (patch) | |
tree | a2371f18bbc50cb0a16a9aa9bbcb022bf8031b4e /korean | |
parent | d4e0d8ab8a71b6f3383f0b39b2dada7425bb8881 (diff) | |
download | freebsd-ports-gnome-57bb7ed93917f7c4c34a9542e2dabcecd3f0f45b.tar.gz freebsd-ports-gnome-57bb7ed93917f7c4c34a9542e2dabcecd3f0f45b.tar.zst freebsd-ports-gnome-57bb7ed93917f7c4c34a9542e2dabcecd3f0f45b.zip |
Add staging support
Diffstat (limited to 'korean')
-rw-r--r-- | korean/hanyangfonts/Makefile | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/korean/hanyangfonts/Makefile b/korean/hanyangfonts/Makefile index 6040a429c91d..f688b80611e5 100644 --- a/korean/hanyangfonts/Makefile +++ b/korean/hanyangfonts/Makefile @@ -19,12 +19,11 @@ RUN_DEPENDS= bdftopcf:${PORTSDIR}/x11-fonts/bdftopcf \ SUB_FILES= pkg-message -NO_WRKSUBDIR= yes +NO_WRKSUBDIR= yes FONTS= hgm10 hgm12 hgm14 hgm16 hgm18 hgm20 \ hmm10 hmm12 hmm14 hmm16 hmm18 hmm20 -NO_STAGE= yes do-build: @cd ${WRKSRC}; \ for fn in ${FONTS}; do \ @@ -33,11 +32,10 @@ do-build: done; \ do-install: - -${MKDIR} ${PREFIX}/lib/X11/fonts/local - @cd ${WRKSRC}; \ - for f in ${FONTS}; do \ - ${INSTALL_DATA} "$$f".pcf.gz ${PREFIX}/lib/X11/fonts/local; \ - done; \ - mkfontdir ${PREFIX}/lib/X11/fonts/local + @${MKDIR} ${STAGEDIR}${PREFIX}/lib/X11/fonts/local +.for f in ${FONTS} + ${INSTALL_DATA} ${WRKSRC}/${f}.pcf.gz \ + ${STAGEDIR}${PREFIX}/lib/X11/fonts/local +.endfor .include <bsd.port.mk> |