diff options
author | rillig <rillig> | 2007-01-07 09:13:46 +0000 |
---|---|---|
committer | rillig <rillig> | 2007-01-07 09:13:46 +0000 |
commit | 87e1bea888d90a6044a18e46681bc456ea30305c (patch) | |
tree | 77b9cef42b625156081609e43af1544d569620be /sysutils/pflogsumm | |
parent | 0e3f31f90a7d6a3a3dc9c7045ed1c6c9c8dac0ac (diff) | |
download | pkgsrc-87e1bea888d90a6044a18e46681bc456ea30305c.tar.gz |
Mechanically replaced man/* with ${PKGMANDIR}/* in the definition of
INSTALLATION_DIRS, as well as all occurrences of ${PREFIX}/man with
${PREFIX}/${PKGMANDIR}.
Fixes PR 35265, although I did not use the patch provided therein.
Diffstat (limited to 'sysutils/pflogsumm')
-rw-r--r-- | sysutils/pflogsumm/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sysutils/pflogsumm/Makefile b/sysutils/pflogsumm/Makefile index c8e43b3841e..c464bf489ee 100644 --- a/sysutils/pflogsumm/Makefile +++ b/sysutils/pflogsumm/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.9 2005/09/28 20:52:27 rillig Exp $ +# $NetBSD: Makefile,v 1.10 2007/01/07 09:14:12 rillig Exp $ # DISTNAME= pflogsumm-1.1.0 @@ -15,7 +15,7 @@ DEPENDS+= p5-Date-Calc-[0-9]*:../../devel/p5-Date-Calc NO_CONFIGURE= yes USE_TOOLS+= perl:run -INSTALLATION_DIRS= man/man1 sbin +INSTALLATION_DIRS= ${PKGMANDIR}/man1 sbin do-build: ${SED} 's;/usr/bin/perl;${PERL5};' ${WRKSRC}/pflogsumm.pl \ @@ -23,6 +23,6 @@ do-build: do-install: ${INSTALL_SCRIPT} ${WRKSRC}/pflogsumm ${PREFIX}/sbin - ${INSTALL_MAN} ${WRKSRC}/pflogsumm.1 ${PREFIX}/man/man1 + ${INSTALL_MAN} ${WRKSRC}/pflogsumm.1 ${PREFIX}/${PKGMANDIR}/man1 .include "../../mk/bsd.pkg.mk" |