summaryrefslogtreecommitdiff
path: root/pkgtools/port2pkg
diff options
context:
space:
mode:
authorrillig <rillig>2007-01-07 09:13:46 +0000
committerrillig <rillig>2007-01-07 09:13:46 +0000
commit87e1bea888d90a6044a18e46681bc456ea30305c (patch)
tree77b9cef42b625156081609e43af1544d569620be /pkgtools/port2pkg
parent0e3f31f90a7d6a3a3dc9c7045ed1c6c9c8dac0ac (diff)
downloadpkgsrc-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 'pkgtools/port2pkg')
-rw-r--r--pkgtools/port2pkg/Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgtools/port2pkg/Makefile b/pkgtools/port2pkg/Makefile
index f253e067b8b..efe99d83aba 100644
--- a/pkgtools/port2pkg/Makefile
+++ b/pkgtools/port2pkg/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.30 2006/09/13 17:33:20 ginsbach Exp $
+# $NetBSD: Makefile,v 1.31 2007/01/07 09:14:09 rillig Exp $
#
DISTNAME= port2pkg-1.11
@@ -21,7 +21,7 @@ USE_TOOLS+= gtar perl:run
.include "../../mk/bsd.prefs.mk"
-INSTALLATION_DIRS= bin man/cat1 man/man1
+INSTALLATION_DIRS= bin ${PKGMANDIR}/cat1 ${PKGMANDIR}/man1
do-build:
.if ${OPSYS} == "SunOS" || ${OPSYS} == "AIX"
@@ -35,7 +35,7 @@ do-build:
do-install:
${INSTALL_SCRIPT} ${WRKSRC}/port2pkg ${PREFIX}/bin
- ${INSTALL_MAN} ${WRKSRC}/port2pkg.0 ${PREFIX}/man/cat1
- ${INSTALL_MAN} ${FILESDIR}/port2pkg.1 ${PREFIX}/man/man1
+ ${INSTALL_MAN} ${WRKSRC}/port2pkg.0 ${PREFIX}/${PKGMANDIR}/cat1
+ ${INSTALL_MAN} ${FILESDIR}/port2pkg.1 ${PREFIX}/${PKGMANDIR}/man1
.include "../../mk/bsd.pkg.mk"