diff options
author | Brooks Davis <brooks@FreeBSD.org> | 2017-10-14 00:11:24 +0000 |
---|---|---|
committer | Brooks Davis <brooks@FreeBSD.org> | 2017-10-14 00:11:24 +0000 |
commit | 34099437fdc34712a60d0b64cbc1ef80a89e00dc (patch) | |
tree | 4eb90aa5a2692832918e3ed76e3feee1f850ae24 | |
parent | emulators/rpcs3: update to 0.0.3.445 (diff) |
Remove forced clang34 dependency. The port builds on 10.3 (which has
the supposedly broken version) and 11.1 without this change. This
removes the last use of clang34 in the ports tree.
Notes
Notes:
svn path=/head/; revision=452037
-rw-r--r-- | games/oolite/Makefile | 21 |
1 files changed, 1 insertions, 20 deletions
diff --git a/games/oolite/Makefile b/games/oolite/Makefile index ced028f3b94c..f4e379d27859 100644 --- a/games/oolite/Makefile +++ b/games/oolite/Makefile @@ -3,7 +3,7 @@ PORTNAME= oolite PORTVERSION= 1.84 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= games gnustep MASTER_SITES= https://github.com/OoliteProject/oolite/releases/download/1.84/ DISTNAME= ${PORTNAME}-source-${PORTVERSION} @@ -57,25 +57,6 @@ BROKEN_armv6= fails to compile: your compiler does not follow the C++ specifica .include <bsd.port.pre.mk> -.if exists(${CC}) -CCVERSION!= ${CC} --version -COMPILER_VERSION= ${CCVERSION:M[0-9].[0-9]*:C/([0-9]).?/\1/g} -COMPILER_IS_CLANG= ${CCVERSION:Mclang} -# Check for LLVM/Clang v3.4.1 -.if ${COMPILER_IS_CLANG} && ${COMPILER_VERSION} == 341 -# Use compiler from ports, because of errors -# for ${WRKSRC}/src/Core/Scripting/OOJavaScriptEngine.m file -WITH_PORTS_CLANG= yes -.endif -.endif - -.if defined(WITH_PORTS_CLANG) -BUILD_DEPENDS+= clang34:lang/clang34 -CC= ${LOCALBASE}/bin/clang34 -CXX= ${LOCALBASE}/bin/clang++34 -CPP= ${LOCALBASE}/bin/clang-cpp34 -.endif - post-patch: .SILENT ${REINPLACE_CMD} -e 's/GNUSTEP_USER_ROOT/GNUSTEP_LOCAL_ROOT/ ; \ s/sdl-config/$${SDL_CONFIG}/ ; \ |