From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jul 31 17:20:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id E44BC7CA for ; Wed, 31 Jul 2013 17:20:00 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id C31662DF9 for ; Wed, 31 Jul 2013 17:20:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id r6VHK0cM036184 for ; Wed, 31 Jul 2013 17:20:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r6VHK09U036182; Wed, 31 Jul 2013 17:20:00 GMT (envelope-from gnats) Resent-Date: Wed, 31 Jul 2013 17:20:00 GMT Resent-Message-Id: <201307311720.r6VHK09U036182@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Ilia Skalozubov Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id E18B671A for ; Wed, 31 Jul 2013 17:16:19 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from oldred.freebsd.org (oldred.freebsd.org [8.8.178.121]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id CEFB92DA9 for ; Wed, 31 Jul 2013 17:16:19 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r6VHGDvv067693 for ; Wed, 31 Jul 2013 17:16:13 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r6VHGDN7067692; Wed, 31 Jul 2013 17:16:13 GMT (envelope-from nobody) Message-Id: <201307311716.r6VHGDN7067692@oldred.freebsd.org> Date: Wed, 31 Jul 2013 17:16:13 GMT From: Ilia Skalozubov To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/180974: [PATCH]www/chromium: Fix non-clickable links in 28.0.1500.71_1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 31 Jul 2013 17:20:01 -0000 >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 -.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: