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 /games/icebreaker | |
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 'games/icebreaker')
-rw-r--r-- | games/icebreaker/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/games/icebreaker/Makefile b/games/icebreaker/Makefile index c70202c590a..a82fcd4dc96 100644 --- a/games/icebreaker/Makefile +++ b/games/icebreaker/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.25 2006/10/04 21:43:00 wiz Exp $ +# $NetBSD: Makefile,v 1.26 2007/01/07 09:13:54 rillig Exp $ # DISTNAME= icebreaker-1.9.7 @@ -15,7 +15,7 @@ USE_TOOLS+= gmake MAKE_ENV+= mandir="${PREFIX}/man" highscoredir="/var/games" MAKE_ENV+= prefix=${PREFIX:Q} -INSTALLATION_DIRS= bin man/man6 +INSTALLATION_DIRS= bin ${PKGMANDIR}/man6 do-install: ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/icebreaker @@ -23,7 +23,7 @@ do-install: cd ${WRKSRC} && ${INSTALL_DATA} *.ibt *.wav *.bmp \ ${PREFIX}/share/icebreaker ${INSTALL_PROGRAM} -g games -m 2755 ${WRKSRC}/icebreaker ${PREFIX}/bin - ${INSTALL_MAN} ${WRKSRC}/icebreaker.6 ${PREFIX}/man/man6 + ${INSTALL_MAN} ${WRKSRC}/icebreaker.6 ${PREFIX}/${PKGMANDIR}/man6 ${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/icebreaker .include "../../audio/SDL_mixer/buildlink3.mk" |