diff options
author | amdmi3 <amdmi3@FreeBSD.org> | 2015-08-19 22:10:32 +0800 |
---|---|---|
committer | amdmi3 <amdmi3@FreeBSD.org> | 2015-08-19 22:10:32 +0800 |
commit | 1e59d9910732ccb7ff7b632d0eef6bdf18f11756 (patch) | |
tree | 478e03fa3c6a0ed0ef94ce6f234646f963551a1d /games | |
parent | a5312b5315442f4c68db4ae895cd2ba0e4017ece (diff) | |
download | freebsd-ports-gnome-1e59d9910732ccb7ff7b632d0eef6bdf18f11756.tar.gz freebsd-ports-gnome-1e59d9910732ccb7ff7b632d0eef6bdf18f11756.tar.zst freebsd-ports-gnome-1e59d9910732ccb7ff7b632d0eef6bdf18f11756.zip |
- Remove unneeded conditions
- Switch to BROKEN helpers
Diffstat (limited to 'games')
-rw-r--r-- | games/goonies/Makefile | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/games/goonies/Makefile b/games/goonies/Makefile index 4d2d4d96f0a5..07f4a59b4385 100644 --- a/games/goonies/Makefile +++ b/games/goonies/Makefile @@ -12,6 +12,8 @@ DISTNAME= ${PORTNAME}_r${PORTVERSION:C/\./-/g} MAINTAINER= amdmi3@FreeBSD.org COMMENT= Remake of the 8 bit classic game 'The Goonies' +BROKEN_sparc64= does not compile on sparc64 + USES= gmake tar:tgz USE_SDL= sdl mixer image USE_GL= yes @@ -28,12 +30,6 @@ PORTDATA= * OPTIONS_DEFINE= DOCS -.include <bsd.port.options.mk> - -.if ${ARCH} == "sparc64" -BROKEN= Does not compile on sparc64 -.endif - post-patch: @${REINPLACE_CMD} -e 's|sound/|${DATADIR}/sound/|g' \ ${WRKSRC}/src/SFXManager.cpp @@ -47,9 +43,7 @@ do-install: ${MKDIR} ${STAGEDIR}${DATADIR} cd ${WRKSRC} && ${COPYTREE_SHARE} \ 'sound graphics maps' ${STAGEDIR}${DATADIR}/ -.if ${PORT_OPTIONS:MDOCS} ${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/docs/* ${STAGEDIR}${DOCSDIR}/ -.endif .include <bsd.port.mk> |