diff options
author | rillig <rillig@pkgsrc.org> | 2007-01-07 09:13:46 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2007-01-07 09:13:46 +0000 |
commit | 2829e658f2ba62cb77f3f151f468ec8de1549bd5 (patch) | |
tree | 77b9cef42b625156081609e43af1544d569620be /net/openntpd/Makefile | |
parent | 5997a7db2d5af7de47f411825619ffc3689f1ce2 (diff) | |
download | pkgsrc-2829e658f2ba62cb77f3f151f468ec8de1549bd5.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 'net/openntpd/Makefile')
-rw-r--r-- | net/openntpd/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/net/openntpd/Makefile b/net/openntpd/Makefile index a465ae1031f..04c383577d9 100644 --- a/net/openntpd/Makefile +++ b/net/openntpd/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.18 2006/08/20 14:50:43 peter Exp $ +# $NetBSD: Makefile,v 1.19 2007/01/07 09:14:05 rillig Exp $ DISTNAME= openntpd-3.9p1 CATEGORIES= net @@ -27,12 +27,12 @@ PKG_USERS= _ntp:_ntp PKG_HOME._ntp= ${VARBASE}/chroot/ntpd OWN_DIRS= ${VARBASE}/chroot/ntpd -INSTALLATION_DIRS= man/man5 man/man8 sbin +INSTALLATION_DIRS= ${PKGMANDIR}/man5 ${PKGMANDIR}/man8 sbin do-install: ${INSTALL_PROGRAM} ${WRKSRC}/ntpd ${PREFIX}/sbin/ntpd - ${INSTALL_MAN} ${WRKSRC}/ntpd.8 ${PREFIX}/man/man8/ntpd.8 - ${INSTALL_MAN} ${WRKSRC}/ntpd.conf.5 ${PREFIX}/man/man5/ntpd.conf.5 + ${INSTALL_MAN} ${WRKSRC}/ntpd.8 ${PREFIX}/${PKGMANDIR}/man8/ntpd.8 + ${INSTALL_MAN} ${WRKSRC}/ntpd.conf.5 ${PREFIX}/${PKGMANDIR}/man5/ntpd.conf.5 post-install: @${INSTALL_DATA_DIR} ${EGDIR} |