aboutsummaryrefslogtreecommitdiff
path: root/games
diff options
context:
space:
mode:
authorMuhammad Moinur Rahman <bofh@FreeBSD.org>2023-05-12 14:31:09 +0000
committerMuhammad Moinur Rahman <bofh@FreeBSD.org>2023-05-12 14:57:24 +0000
commitd5f731c045241a132fc67d34ca17d239b9141c90 (patch)
tree481fcd396504c042c2febff0a80021ce7dbfb7f2 /games
parent87c85b537e3aedf2f16c4801408272c79dde7eea (diff)
downloadports-d5f731c045241a132fc67d34ca17d239b9141c90.tar.gz
ports-d5f731c045241a132fc67d34ca17d239b9141c90.zip
games/spellcast: Unbreak on HEAD
- Add LICENSE MIT - Pet portclippy - Optionize do-iinstall target for DOCS - Adopt port
Diffstat (limited to 'games')
-rw-r--r--games/spellcast/Makefile19
1 files changed, 15 insertions, 4 deletions
diff --git a/games/spellcast/Makefile b/games/spellcast/Makefile
index f454cf036000..ac996cda9ce5 100644
--- a/games/spellcast/Makefile
+++ b/games/spellcast/Makefile
@@ -6,23 +6,34 @@ MASTER_SITES= http://www.eblong.com/zarf/ftp/
DISTNAME= ${PORTNAME}
EXTRACT_SUFX= .tar.Z
-MAINTAINER= ports@FreeBSD.org
+MAINTAINER= bofh@FreeBSD.org
COMMENT= Multiplayer fight with spells turn based game for X Window System
WWW= https://www.eblong.com/zarf/spellcast.html
+LICENSE= MIT
+
USES= xorg
USE_XORG= x11
-PLIST_FILES= bin/spellcast man/man6/spellcast.6.gz
-PORTDOCS= README spelllist.ps
CFLAGS+= -Wno-return-type
+PLIST_FILES= bin/spellcast man/man6/spellcast.6.gz
+PORTDOCS= README spelllist.ps
+
OPTIONS_DEFINE= DOCS
+.include <bsd.port.pre.mk>
+
+.if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1400079
+CFLAGS+= -Wno-error=int-conversion
+.endif
+
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/spellcast ${STAGEDIR}${PREFIX}/bin
${INSTALL_MAN} ${WRKSRC}/spellcast.6 ${STAGEDIR}${PREFIX}/man/man6
+
+do-install-DOCS-on:
@${MKDIR} ${STAGEDIR}${DOCSDIR}
${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR}
-.include <bsd.port.mk>
+.include <bsd.port.post.mk>