Skip to content

Commit

Permalink
games/sl: Sanitize MANPREFIX
Browse files Browse the repository at this point in the history
Approved by:    portmgr (blanket)
  • Loading branch information
5u623l20 committed Jan 22, 2024
1 parent 273e73a commit ea6e8ae
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions games/sl/Makefile
@@ -1,5 +1,6 @@
PORTNAME= sl
PORTVERSION= 5.02
PORTREVISION= 1
CATEGORIES= games

MAINTAINER= hym@cocoa.freemail.ne.jp
Expand All @@ -16,8 +17,8 @@ USE_GITHUB= yes
GH_ACCOUNT= mtoyoda

PLIST_FILES= bin/${PORTNAME} \
man/man1/${PORTNAME}.1.gz \
man/ja/man1/${PORTNAME}.1.gz
share/man/man1/${PORTNAME}.1.gz \
share/man/ja/man1/${PORTNAME}.1.gz
PORTDOCS= *

OPTIONS_DEFINE= DOCS
Expand All @@ -28,8 +29,9 @@ do-build:

do-install:
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${STAGEDIR}${MANPREFIX}/man/man1
${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1.ja ${STAGEDIR}${MANPREFIX}/man/ja/man1/${PORTNAME}.1
${MKDIR} ${STAGEDIR}${PREFIX}/share/man/ja/man1
${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${STAGEDIR}${PREFIX}/share/man/man1
${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1.ja ${STAGEDIR}${PREFIX}/share/man/ja/man1/${PORTNAME}.1

do-install-DOCS-on:
@${MKDIR} ${STAGEDIR}${DOCSDIR}
Expand Down

0 comments on commit ea6e8ae

Please sign in to comment.