diff options
author | Rene Ladan <rene@FreeBSD.org> | 2013-07-30 18:33:19 +0000 |
---|---|---|
committer | Rene Ladan <rene@FreeBSD.org> | 2013-07-30 18:33:19 +0000 |
commit | 0d758722582f0c81a3aed0957f6b06d26fef9f07 (patch) | |
tree | 01a294add05f924a07891280a174c51bc8f50073 /www | |
parent | fbea7ab87e5928caca79f0a6120fdb7514f7bc6e (diff) | |
download | freebsd-ports-0d758722582f0c81a3aed0957f6b06d26fef9f07.zip |
Use clang from ports on FreeBSD < 9.2 to prevent
non-clickable links in tables.
While here remove no-op MAKE_JOBS_SAFE
Bump PORTREVISION
Submitted by: George Liaskos
Diffstat (limited to 'www')
-rw-r--r-- | www/chromium/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/www/chromium/Makefile b/www/chromium/Makefile index d0eafe567867..bea45f72f67c 100644 --- a/www/chromium/Makefile +++ b/www/chromium/Makefile @@ -6,6 +6,7 @@ PORTNAME= chromium DISTVERSIONPREFIX= courgette-redacted- DISTVERSION= 28.0.1500.71 +PORTREVISION= 1 CATEGORIES= www MASTER_SITES= http://download.goodking.org/downloads/ \ ftp://rene-ladan.nl/pub/distfiles/ \ @@ -96,7 +97,7 @@ OPTIONS_DEFAULT= CODECS GCONF CLANG .include <bsd.port.options.mk> -.if ${OSVERSION} < 900033 || ! ${PORT_OPTIONS:MCLANG} +.if ${OSVERSION} < 902000 || ! ${PORT_OPTIONS:MCLANG} BUILD_DEPENDS+= ${LOCALBASE}/bin/as:${PORTSDIR}/devel/binutils CONFIGURE_ENV+= COMPILER_PATH=${LOCALBASE}/bin MAKE_ENV+= COMPILER_PATH=${LOCALBASE}/bin @@ -128,7 +129,7 @@ GYP_DEFINES+= disable_sse2=1 .endif .if ${PORT_OPTIONS:MCLANG} -.if ${OSVERSION} < 900033 +.if ${OSVERSION} < 902000 BUILD_DEPENDS+= clang:${PORTSDIR}/lang/clang .endif CC= clang @@ -150,7 +151,6 @@ GYP_DEFINES+= buildtype=Official MAKE_ENV+= BUILDTYPE=${BUILDTYPE} \ GPERF=${LOCALBASE}/bin/gperf -MAKE_JOBS_SAFE= yes .include <bsd.port.pre.mk> |