diff options
author | rillig <rillig> | 2007-01-07 09:13:46 +0000 |
---|---|---|
committer | rillig <rillig> | 2007-01-07 09:13:46 +0000 |
commit | 4a34beb7de5a2bf4388d326eab99406995431246 (patch) | |
tree | 77b9cef42b625156081609e43af1544d569620be /net/mtr/Makefile | |
parent | 5a39e816b9369cc7a92ab60b196b6306904c19eb (diff) | |
download | pkgsrc-4a34beb7de5a2bf4388d326eab99406995431246.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/mtr/Makefile')
-rw-r--r-- | net/mtr/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/mtr/Makefile b/net/mtr/Makefile index 4d260e85a21..5abcfa605d0 100644 --- a/net/mtr/Makefile +++ b/net/mtr/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.46 2006/10/03 19:15:20 wiz Exp $ +# $NetBSD: Makefile,v 1.47 2007/01/07 09:14:04 rillig Exp $ DISTNAME= mtr-0.72 CATEGORIES= net @@ -12,7 +12,7 @@ PKG_INSTALLATION_TYPES= overwrite pkgviews GNU_CONFIGURE= YES USE_TOOLS+= gmake -INSTALLATION_DIRS= man/man8 sbin +INSTALLATION_DIRS= ${PKGMANDIR}/man8 sbin .include "options.mk" @@ -24,7 +24,7 @@ BUILDLINK_TRANSFORM+= l:termcap:ncurses do-install: ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/mtr ${INSTALL} -c -s -m 4755 -o ${ROOT_USER} -g ${ROOT_GROUP} ${WRKSRC}/mtr ${PREFIX}/sbin - ${INSTALL_DATA} ${WRKSRC}/mtr.8 ${PREFIX}/man/man8 + ${INSTALL_DATA} ${WRKSRC}/mtr.8 ${PREFIX}/${PKGMANDIR}/man8 ${INSTALL_DATA} ${WRKSRC}/SECURITY ${PREFIX}/share/doc/mtr .include "../../devel/ncurses/buildlink3.mk" |