diff options
author | Tijl Coosemans <tijl@FreeBSD.org> | 2015-04-20 07:47:39 +0000 |
---|---|---|
committer | Tijl Coosemans <tijl@FreeBSD.org> | 2015-04-20 07:47:39 +0000 |
commit | 21434a59e70ece6a201678e7f5ddb843eafa5763 (patch) | |
tree | 3f2b8d158b307e2c7550fbdec25420b34be40c82 /lang/pure | |
parent | c6dab49472bb68e9feab9dc534633d1bf919f2e9 (diff) | |
download | ports-21434a59e70ece6a201678e7f5ddb843eafa5763.tar.gz ports-21434a59e70ece6a201678e7f5ddb843eafa5763.zip |
Notes
Diffstat (limited to 'lang/pure')
-rw-r--r-- | lang/pure/Makefile | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/lang/pure/Makefile b/lang/pure/Makefile index 749e7597a57a..a8b7f236bb82 100644 --- a/lang/pure/Makefile +++ b/lang/pure/Makefile @@ -3,7 +3,7 @@ PORTNAME= pure PORTVERSION= 0.64 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= lang MASTER_SITES= https://bitbucket.org/purelang/pure-lang/downloads/ EXTRACT_ONLY= ${DISTNAME}.tar.gz @@ -14,8 +14,7 @@ COMMENT= Modern-style functional programming language LICENSE= GPLv3 LGPL3 LICENSE_COMB= dual -LIB_DEPENDS= libltdl.so:${PORTSDIR}/devel/libltdl \ - libgmp.so:${PORTSDIR}/math/gmp \ +LIB_DEPENDS= libgmp.so:${PORTSDIR}/math/gmp \ libmpfr.so:${PORTSDIR}/math/mpfr \ libpcreposix.so:${PORTSDIR}/devel/pcre \ libLLVM-${LLVM_VERSION:C/./&./}.so:${PORTSDIR}/devel/llvm${LLVM_VERSION} @@ -47,8 +46,8 @@ LLVM_VERSION= $v .endif LLVM_VERSION?= 35 # Pure does not build with llvm36. Yet? SUB_LIST+= LLVM_VERSION=${LLVM_VERSION} -.if ${LLVM_VERSION} > 34 -CXXFLAGS+= -std=c++11 +.if ${LLVM_VERSION} >= 35 +USES+= compiler:c++11-lib .endif OPTIONS_DEFAULT= ETC |