diff options
author | rillig <rillig> | 2007-01-07 09:13:46 +0000 |
---|---|---|
committer | rillig <rillig> | 2007-01-07 09:13:46 +0000 |
commit | 87e1bea888d90a6044a18e46681bc456ea30305c (patch) | |
tree | 77b9cef42b625156081609e43af1544d569620be /games/xpipeman | |
parent | 0e3f31f90a7d6a3a3dc9c7045ed1c6c9c8dac0ac (diff) | |
download | pkgsrc-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 'games/xpipeman')
-rw-r--r-- | games/xpipeman/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/games/xpipeman/Makefile b/games/xpipeman/Makefile index ee9fbcebcde..8570f4d92b8 100644 --- a/games/xpipeman/Makefile +++ b/games/xpipeman/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.14 2006/12/27 13:37:37 joerg Exp $ +# $NetBSD: Makefile,v 1.15 2007/01/07 09:13:55 rillig Exp $ # DISTNAME= xpipeman-1.5 @@ -14,12 +14,12 @@ COMMENT= Connect the pipes to contain the water flow game for X11 WRKSRC= ${WRKDIR}/xpipeman USE_IMAKE= yes -INSTALLATION_DIRS= bin man/man6 +INSTALLATION_DIRS= bin ${PKGMANDIR}/man6 do-install: ${INSTALL} -o bin -g games -m 2755 ${WRKSRC}/xpipeman \ ${PREFIX}/bin/xpipeman - ${INSTALL_MAN} ${WRKSRC}/xpipeman.man ${PREFIX}/man/man6/xpipeman.6 + ${INSTALL_MAN} ${WRKSRC}/xpipeman.man ${PREFIX}/${PKGMANDIR}/man6/xpipeman.6 ${INSTALL} -d -o bin -g games -m 0775 ${PREFIX}/share/xpipeman if [ ! -r /var/games/xpipescores ]; then \ ${INSTALL} -o bin -g games -m 0664 ${WRKSRC}/xpipescores /var/games ; \ |