diff options
author | Masafumi Max NAKANE <max@FreeBSD.org> | 1996-11-02 17:04:08 +0000 |
---|---|---|
committer | Masafumi Max NAKANE <max@FreeBSD.org> | 1996-11-02 17:04:08 +0000 |
commit | 849a7bfdf47a7d468be37242479a0e0cd4ede925 (patch) | |
tree | 71b247b2cafafeca5a50f5d3a6cc3dbc41f452f4 /japanese | |
parent | Use ${PREFIX} instead of /usr/local. (diff) |
Use ${CP} instead of cp.
Use /usr/local instead of ${PREFIX}
Removed `v' from tar command line in post-install: target.
Diffstat (limited to 'japanese')
-rw-r--r-- | japanese/vflib/Makefile | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/japanese/vflib/Makefile b/japanese/vflib/Makefile index 58b6a3e3d82d..30c73b7096b8 100644 --- a/japanese/vflib/Makefile +++ b/japanese/vflib/Makefile @@ -3,7 +3,7 @@ # Date created: 10 May 1996 # Whom: Mita Yoshio <mita@jp.FreeBSD.org> # -# $Id$ +# $Id: Makefile,v 1.1.1.1 1996/11/02 12:09:35 asami Exp $ # DISTNAME= VFlib-2.22 @@ -21,16 +21,16 @@ do-build: @(cd ${WRKSRC}/tools; xmkmf; make) do-install: - ${MKDIR} /usr/local/lib/VFlib + ${MKDIR} ${PREFIX}/lib/VFlib @(cd ${WRKSRC}/src; make install) @(cd ${WRKSRC}/tools; \ ${INSTALL_PROGRAM} fmtest disol kban ktest vfperf vftest \ - /usr/local/lib/VFlib) + ${PREFIX}/lib/VFlib) @(cd ${WRKSRC}; \ - cp -R doc jTeX COPYING README.txt.JP_EUC vfontcap \ - /usr/local/lib/VFlib) - ${MKDIR} /usr/local/share/fonts/watanabe_font - tar -C /usr/local/share/fonts/watanabe_font \ - -xvzf ${DISTDIR}/watanabe-vf.tar.Z + ${CP} -R doc jTeX COPYING README.txt.JP_EUC vfontcap \ + ${PREFIX}/lib/VFlib) + ${MKDIR} ${PREFIX}/share/fonts/watanabe_font + tar -C ${PREFIX}/share/fonts/watanabe_font \ + -xzf ${DISTDIR}/watanabe-vf.tar.Z .include <bsd.port.mk> |