summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorreed <reed@pkgsrc.org>2005-12-27 17:37:27 +0000
committerreed <reed@pkgsrc.org>2005-12-27 17:37:27 +0000
commite513ec3f9f0e8e6e37a0482dfa5627894f48c0ce (patch)
tree6b36b226f674f6126be064b0337e99a183f938bb
parent45d9dae9940a0e9613eb698f1b4e9949ff26ec8d (diff)
downloadpkgsrc-e513ec3f9f0e8e6e37a0482dfa5627894f48c0ce.tar.gz
Install man page to PKGMANDIR instead of hard-coded "man".
-rw-r--r--net/gethost/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/net/gethost/Makefile b/net/gethost/Makefile
index 632a4c37aac..633e62d2720 100644
--- a/net/gethost/Makefile
+++ b/net/gethost/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.5 2004/12/03 15:15:05 wiz Exp $
+# $NetBSD: Makefile,v 1.6 2005/12/27 17:37:27 reed Exp $
DISTNAME= gethost-0.03
CATEGORIES= net
@@ -9,11 +9,11 @@ HOMEPAGE= http://www.reedmedia.net/software/gethost/
COMMENT= Hostname and IP resolver for testing /etc/hosts and nsswitch.conf
PKG_INSTALLATION_TYPES= overwrite pkgviews
-INSTALLATION_DIRS= bin man/man1
+INSTALLATION_DIRS= bin ${PKGMANDIR}/man1
BUILD_TARGET= gethost
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/gethost ${PREFIX}/bin
- ${INSTALL_MAN} ${WRKSRC}/gethost.1 ${PREFIX}/man/man1
+ ${INSTALL_MAN} ${WRKSRC}/gethost.1 ${PREFIX}/${PKGMANDIR}/man1
.include "../../mk/bsd.pkg.mk"