svn commit: r323982 - head/www/chromium

Rene Ladan rene at FreeBSD.org
Tue Jul 30 18:33:20 UTC 2013


Author: rene
Date: Tue Jul 30 18:33:19 2013
New Revision: 323982
URL: http://svnweb.freebsd.org/changeset/ports/323982

Log:
  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

Modified:
  head/www/chromium/Makefile

Modified: head/www/chromium/Makefile
==============================================================================
--- head/www/chromium/Makefile	Tue Jul 30 18:30:37 2013	(r323981)
+++ head/www/chromium/Makefile	Tue Jul 30 18:33:19 2013	(r323982)
@@ -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>
 


More information about the svn-ports-all mailing list