summaryrefslogtreecommitdiff
path: root/graphics/mpgtx
diff options
context:
space:
mode:
authorrillig <rillig>2007-01-07 09:13:46 +0000
committerrillig <rillig>2007-01-07 09:13:46 +0000
commit4a34beb7de5a2bf4388d326eab99406995431246 (patch)
tree77b9cef42b625156081609e43af1544d569620be /graphics/mpgtx
parent5a39e816b9369cc7a92ab60b196b6306904c19eb (diff)
downloadpkgsrc-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 'graphics/mpgtx')
-rw-r--r--graphics/mpgtx/Makefile10
1 files changed, 5 insertions, 5 deletions
diff --git a/graphics/mpgtx/Makefile b/graphics/mpgtx/Makefile
index 74bf33203d3..f63feaa1eaa 100644
--- a/graphics/mpgtx/Makefile
+++ b/graphics/mpgtx/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.13 2006/06/02 13:44:55 joerg Exp $
+# $NetBSD: Makefile,v 1.14 2007/01/07 09:13:56 rillig Exp $
#
DISTNAME= mpgtx-1.3.1
@@ -18,17 +18,17 @@ BUILD_TARGET= mpgtx
PLINKS= mpgjoin mpgcat mpgsplit mpginfo mpgdemux tagmp3
MLINKS= mpgcat.1 mpgjoin.1 mpginfo.1 mpgsplit.1 mpgdemux.1
-INSTALLATION_DIRS= bin man/man1
+INSTALLATION_DIRS= bin ${PKGMANDIR}/man1
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/mpgtx ${PREFIX}/bin
.for f in ${PLINKS}
${LN} -f ${PREFIX}/bin/mpgtx ${PREFIX}/bin/${f}
.endfor
- ${INSTALL_MAN} ${WRKSRC}/man/mpgtx.1 ${PREFIX}/man/man1
+ ${INSTALL_MAN} ${WRKSRC}/man/mpgtx.1 ${PREFIX}/${PKGMANDIR}/man1
.for f in ${MLINKS}
- ${LN} -f ${PREFIX}/man/man1/mpgtx.1 ${PREFIX}/man/man1/${f}
+ ${LN} -f ${PREFIX}/${PKGMANDIR}/man1/mpgtx.1 ${PREFIX}/${PKGMANDIR}/man1/${f}
.endfor
- ${INSTALL_MAN} ${WRKSRC}/man/tagmp3.1 ${PREFIX}/man/man1
+ ${INSTALL_MAN} ${WRKSRC}/man/tagmp3.1 ${PREFIX}/${PKGMANDIR}/man1
.include "../../mk/bsd.pkg.mk"