git: 8e3dacd197a2 - main - games/gnurobbo: fix build on 13+, add license info
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 08 Aug 2022 13:39:46 UTC
The branch main has been updated by amdmi3:
URL: https://cgit.FreeBSD.org/ports/commit/?id=8e3dacd197a2158c54f95a88ac728a3a2c2a77c4
commit 8e3dacd197a2158c54f95a88ac728a3a2c2a77c4
Author: Dmitry Marakasov <amdmi3@FreeBSD.org>
AuthorDate: 2022-08-08 11:13:49 +0000
Commit: Dmitry Marakasov <amdmi3@FreeBSD.org>
CommitDate: 2022-08-08 13:39:38 +0000
games/gnurobbo: fix build on 13+, add license info
PR: 265659
Submitted by: fuz@fuz.su
---
games/gnurobbo/Makefile | 17 ++++++++++++++---
1 file changed, 14 insertions(+), 3 deletions(-)
diff --git a/games/gnurobbo/Makefile b/games/gnurobbo/Makefile
index e6280d26ef51..f5fd9508fdfe 100644
--- a/games/gnurobbo/Makefile
+++ b/games/gnurobbo/Makefile
@@ -7,8 +7,18 @@ EXTRACT_SUFX= -source.tar.gz
MAINTAINER= amdmi3@FreeBSD.org
COMMENT= Reimplementation of LK Avalon's Robbo for the Atari XE/XL
-BROKEN_FreeBSD_13= ld: error: duplicate symbol: K_direction
-BROKEN_FreeBSD_14= ld: error: duplicate symbol: K_direction
+LICENSE= AREV BITSTREAM_VERA GPLv2 CCSP
+LICENSE_COMB= multi
+LICENSE_NAME_AREV= Arev Fonts Copyright
+LICENSE_PERMS_AREV= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept
+LICENSE_FILE_AREV= ${WRKSRC}/LICENSE-ttf
+LICENSE_NAME_BITSTREAM_VERA= Bitstream Vera Fonts Copyright
+LICENSE_FILE_BITSTREAM_VERA= ${WRKSRC}/LICENSE-ttf
+LICENSE_PERMS_BITSTREAM_VERA= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept
+LICENSE_NAME_CCSP= Creative Commons Sampling Plus 1.0
+LICENSE_FILE_CCSP= ${WRKSRC}/LICENSE-sound
+LICENSE_PERMS_CCSP= dist-mirror pkg-mirror auto-accept
+LICENSE_FILE_GPLv2= ${WRKSRC}/COPYING
USES= gmake sdl
USE_SDL= sdl ttf mixer image
@@ -16,6 +26,7 @@ USE_SDL= sdl ttf mixer image
MAKE_ENV= PACKAGE_DATA_DIR="${DATADIR}" \
BINDIR="${PREFIX}/bin" \
DOCDIR="${DOCSDIR}"
+CFLAGS+= -fcommon
PLIST_FILES= bin/${PORTNAME}
PORTDOCS= *
@@ -31,6 +42,6 @@ post-patch:
${WRKSRC}/Makefile
post-install:
- ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${PORTNAME}
+ @${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${PORTNAME}
.include <bsd.port.mk>