Date: Wed, 31 Jul 2013 17:16:13 GMT From: Ilia Skalozubov <skinc@skinc.ru> To: freebsd-gnats-submit@FreeBSD.org Subject: ports/180974: [PATCH]www/chromium: Fix non-clickable links in 28.0.1500.71_1 Message-ID: <201307311716.r6VHGDN7067692@oldred.freebsd.org> Resent-Message-ID: <201307311720.r6VHK09U036182@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
>Number: 180974 >Category: ports >Synopsis: [PATCH]www/chromium: Fix non-clickable links in 28.0.1500.71_1 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Wed Jul 31 17:20:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Ilia Skalozubov >Release: FreeBSD 9.1-RELEASE-p5 amd64 >Organization: >Environment: FreeBSD dogmeat 9.1-RELEASE-p5 FreeBSD 9.1-RELEASE-p5 #0: Wed Jul 31 10:10:13 FET 2013 skinc@dogmeat:/usr/obj/usr/src/sys/DOGMEAT amd64 >Description: This patch solves the problem with non-clickable links and restores OSVERSION check to prevent the installation of devel/binutils on 9.1-RELEASE. >How-To-Repeat: >Fix: Patch attached with submission follows: diff -u -r chromium.orig/Makefile chromium/Makefile --- chromium.orig/Makefile 2013-07-31 12:20:02.481336964 +0300 +++ chromium/Makefile 2013-07-31 14:07:45.203338207 +0300 @@ -6,7 +6,7 @@ PORTNAME= chromium DISTVERSIONPREFIX= courgette-redacted- DISTVERSION= 28.0.1500.71 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= www MASTER_SITES= http://download.goodking.org/downloads/ \ ftp://rene-ladan.nl/pub/distfiles/ \ @@ -97,7 +97,7 @@ .include <bsd.port.options.mk> -.if ${OSVERSION} < 902000 || ! ${PORT_OPTIONS:MCLANG} +.if ${OSVERSION} < 900033 || ! ${PORT_OPTIONS:MCLANG} BUILD_DEPENDS+= ${LOCALBASE}/bin/as:${PORTSDIR}/devel/binutils CONFIGURE_ENV+= COMPILER_PATH=${LOCALBASE}/bin MAKE_ENV+= COMPILER_PATH=${LOCALBASE}/bin @@ -131,9 +131,12 @@ .if ${PORT_OPTIONS:MCLANG} .if ${OSVERSION} < 902000 BUILD_DEPENDS+= clang:${PORTSDIR}/lang/clang -.endif +CC= ${LOCALBASE}/bin/clang +CXX= ${LOCALBASE}/bin/clang++ +.else CC= clang CXX= clang++ +.endif GYP_DEFINES+= clang=1 .else USE_GCC?= 4.6+ >Release-Note: >Audit-Trail: >Unformatted:
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201307311716.r6VHGDN7067692>