diff options
author | madpilot <madpilot@FreeBSD.org> | 2013-10-10 07:11:23 +0800 |
---|---|---|
committer | madpilot <madpilot@FreeBSD.org> | 2013-10-10 07:11:23 +0800 |
commit | 3c2aec821e22ba5f6e9d0fe13c9bcaadc16d798c (patch) | |
tree | 213a9f63adac77055692d1dc6d44ce0c5ce67c7c /games | |
parent | 4e875d655f015f70c55770b16178d89ce0f24d08 (diff) | |
download | freebsd-ports-gnome-3c2aec821e22ba5f6e9d0fe13c9bcaadc16d798c.tar.gz freebsd-ports-gnome-3c2aec821e22ba5f6e9d0fe13c9bcaadc16d798c.tar.zst freebsd-ports-gnome-3c2aec821e22ba5f6e9d0fe13c9bcaadc16d798c.zip |
- Convert to USES=compiler
Diffstat (limited to 'games')
-rw-r--r-- | games/0ad/Makefile | 27 |
1 files changed, 5 insertions, 22 deletions
diff --git a/games/0ad/Makefile b/games/0ad/Makefile index 198edca739ef..76174f2a8cb7 100644 --- a/games/0ad/Makefile +++ b/games/0ad/Makefile @@ -24,7 +24,7 @@ LIB_DEPENDS= libboost_thread.so:${PORTSDIR}/devel/boost-libs \ WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}-alpha BUILD_WRKSRC= ${WRKSRC}/build/workspaces/gcc MAKE_ARGS= config=release -USES= gmake pkgconfig +USES= compiler:c++11-lang gmake pkgconfig USE_XZ= yes USE_SDL= sdl USE_GNOME= libxml2 gtk20 @@ -42,27 +42,10 @@ MANUAL_PACKAGE_BUILD= yes # huge PORTDATA= * -.include <bsd.port.pre.mk> +.include <bsd.port.options.mk> -# Taken from Mk/bsd.gnustep.mk -.if exists(${DESTDIR}/usr/bin/clang) -__CLANG!= ${DESTDIR}/usr/bin/clang --version | head -1 | \ - ${SED} -e 's/.*clang version \([0-9]\)\.\([0-9]\).*/\1\2/' -.else -__CLANG= 0 -.endif - -.if ${__CLANG} < 33 && ${OSVERSION} > 900014 -BUILD_DEPENDS+= ${LOCALBASE}/bin/clang33:${PORTSDIR}/lang/clang33 -CPP= ${LOCALBASE}/bin/clang-cpp33 -CC= ${LOCALBASE}/bin/clang33 -CXX= ${LOCALBASE}/bin/clang++33 -.elif ${OSVERSION} < 900014 -USE_GCC= yes -.else -CPP= /usr/bin/clang-cpp -CC= /usr/bin/clang -CXX= /usr/bin/clang++ +.if ${OSVERSION} < 900014 +FAVORITE_COMPILER= gcc .endif post-patch: @@ -87,4 +70,4 @@ do-install: ${MKDIR} ${STAGEDIR}${DATADIR} (cd ${WRKSRC}/binaries/data && ${COPYTREE_SHARE} "config mods tests tools" ${STAGEDIR}${DATADIR}) -.include <bsd.port.post.mk> +.include <bsd.port.mk> |