diff options
author | jlam <jlam@pkgsrc.org> | 2002-02-06 16:58:11 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2002-02-06 16:58:11 +0000 |
commit | 7046abc822c457a46356fad85e66757b13c0841d (patch) | |
tree | 0314060661b2a2c2c29d92417a77330da29f157e /security | |
parent | d93fe0cd603b60e69ea77059d773740a1d6c4733 (diff) | |
download | pkgsrc-7046abc822c457a46356fad85e66757b13c0841d.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')
-rw-r--r-- | security/tct/Makefile | 24 |
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" |