summaryrefslogtreecommitdiff
path: root/security/tct
diff options
context:
space:
mode:
authorjlam <jlam>2002-02-06 16:58:11 +0000
committerjlam <jlam>2002-02-06 16:58:11 +0000
commit52bbc5d723e71729f9c60d5aa69186def355e352 (patch)
tree0314060661b2a2c2c29d92417a77330da29f157e /security/tct
parent9a24d6a467e5d5e0e41aafc12668cb2eb92d7a5e (diff)
downloadpkgsrc-52bbc5d723e71729f9c60d5aa69186def355e352.tar.gz
Changes instances where BSD_INSTALL_* were used by targets in the Makefile
into the equivalent INSTALL_*. This is fallout from the change in revision 1.915 that removed ${MAKE_ENV} from the environment for a recursive make.
Diffstat (limited to 'security/tct')
-rw-r--r--security/tct/Makefile24
1 files changed, 12 insertions, 12 deletions
diff --git a/security/tct/Makefile b/security/tct/Makefile
index f3ac81e6897..f478195fa62 100644
--- a/security/tct/Makefile
+++ b/security/tct/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.6 2002/01/09 11:15:32 agc Exp $
+# $NetBSD: Makefile,v 1.7 2002/02/06 16:58:15 jlam Exp $
#
DISTNAME= tct-1.09
@@ -16,30 +16,30 @@ REPLACE_PERL+= extras/bdf extras/ils2mac extras/realpath
REPLACE_PERL+= lazarus/lazarus
do-install:
- ${BSD_INSTALL_PROGRAM_DIR} ${LOCALBASE}/tct/bin
+ ${INSTALL_PROGRAM_DIR} ${LOCALBASE}/tct/bin
cd ${WRKSRC}/bin && \
for f in grave-robber mactime; do \
- ${BSD_INSTALL_SCRIPT} $$f ${LOCALBASE}/tct/bin; \
+ ${INSTALL_SCRIPT} $$f ${LOCALBASE}/tct/bin; \
done; \
for f in file icat ils lastcomm major_minor md5 pcat timeout unrm; do \
- ${BSD_INSTALL_PROGRAM} $$f ${LOCALBASE}/tct/bin; \
+ ${INSTALL_PROGRAM} $$f ${LOCALBASE}/tct/bin; \
done
cd ${WRKSRC}/extras && \
for f in bdf ils2mac realpath; do \
- ${BSD_INSTALL_SCRIPT} $$f ${LOCALBASE}/tct/bin; \
+ ${INSTALL_SCRIPT} $$f ${LOCALBASE}/tct/bin; \
done
- ${BSD_INSTALL_SCRIPT} ${WRKSRC}/lazarus/lazarus ${LOCALBASE}/tct/bin
- ${BSD_INSTALL_PROGRAM_DIR} ${LOCALBASE}/tct/etc
- cd ${WRKSRC}/etc && ${BSD_INSTALL_DATA} magic ${LOCALBASE}/tct/etc
+ ${INSTALL_SCRIPT} ${WRKSRC}/lazarus/lazarus ${LOCALBASE}/tct/bin
+ ${INSTALL_PROGRAM_DIR} ${LOCALBASE}/tct/etc
+ cd ${WRKSRC}/etc && ${INSTALL_DATA} magic ${LOCALBASE}/tct/etc
${INSTALL_DATA_DIR} ${LOCALBASE}/share/doc/tct
cd ${WRKSRC}/docs && \
for f in README design-notes grave-robber.README lazarus.README mac.README; do \
- ${BSD_INSTALL_DATA} $$f ${LOCALBASE}/share/doc/tct; \
+ ${INSTALL_DATA} $$f ${LOCALBASE}/share/doc/tct; \
done
${INSTALL_DATA_DIR} ${PERL5_SITEARCH}
- cd ${WRKSRC}/lib && ${BSD_INSTALL_DATA} *.pl ${PERL5_SITEARCH}
- ${BSD_INSTALL_PROGRAM_DIR} ${LOCALBASE}/tct/conf
- cd ${WRKSRC}/conf && ${BSD_INSTALL_DATA} paths.pl *.cf ${LOCALBASE}/tct/conf
+ cd ${WRKSRC}/lib && ${INSTALL_DATA} *.pl ${PERL5_SITEARCH}
+ ${INSTALL_PROGRAM_DIR} ${LOCALBASE}/tct/conf
+ cd ${WRKSRC}/conf && ${INSTALL_DATA} paths.pl *.cf ${LOCALBASE}/tct/conf
.include "../../lang/perl5/buildlink.mk"
.include "../../mk/bsd.pkg.mk"