diff options
author | Mark Linimon <linimon@FreeBSD.org> | 2018-09-22 05:30:31 +0000 |
---|---|---|
committer | Mark Linimon <linimon@FreeBSD.org> | 2018-09-22 05:30:31 +0000 |
commit | aecf049634efea8555a526b9072fbb9f0a7c2a89 (patch) | |
tree | ee1202c5a5464562474562e70212261185323b7d /games/blobby/Makefile | |
parent | databases/py-carbon: update to 1.1.4 (diff) |
Fix build on gcc-based archs by updating USES.
Tested on powerpc64 and amd64 (for no regression).
While here, pet portlint.
Approved by: portmgr (tier-2 blanket)
Notes
Notes:
svn path=/head/; revision=480340
Diffstat (limited to '')
-rw-r--r-- | games/blobby/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/games/blobby/Makefile b/games/blobby/Makefile index 670d6c5c8e23..ceec14a5b164 100644 --- a/games/blobby/Makefile +++ b/games/blobby/Makefile @@ -15,7 +15,6 @@ COMMENT= Official continuation of the famous Blobby Volley 1.x game LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/COPYING -BROKEN_powerpc64= fails to build: cc1plus: unrecognized command line option "-std=c++11" NOT_FOR_ARCHS= aarch64 NOT_FOR_ARCHS_REASON= fails to compile: I can't tell what endian-ness to use for your architecture @@ -23,7 +22,7 @@ LIB_DEPENDS= libphysfs.so:devel/physfs BUILD_DEPENDS= zip:archivers/zip \ ${LOCALBASE}/include/boost/crc.hpp:devel/boost-libs -USES= cmake dos2unix localbase:ldflags pkgconfig +USES= cmake compiler:c++11-lang dos2unix localbase:ldflags pkgconfig DOS2UNIX_REGEX= .*\.(c|h|cpp) CMAKE_ARGS= -DDATADIR:PATH="${DATADIR}" WRKSRC= ${WRKDIR}/blobby-${PORTVERSION} |