From owner-freebsd-gnome@FreeBSD.ORG Sun Jul 18 20:55:51 2010 Return-Path: Delivered-To: gnome@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A007A106564A; Sun, 18 Jul 2010 20:55:51 +0000 (UTC) (envelope-from jonc@chen.org.nz) Received: from chen.org.nz (203-109-245-75.static.bliink.ihug.co.nz [203.109.245.75]) by mx1.freebsd.org (Postfix) with ESMTP id 6B3888FC1A; Sun, 18 Jul 2010 20:55:51 +0000 (UTC) Received: by chen.org.nz (Postfix, from userid 1000) id D1ADEE044A; Mon, 19 Jul 2010 08:36:10 +1200 (NZST) To: FreeBSD-gnats-submit@freebsd.org From: Jonathan Chen X-send-pr-version: 3.113 X-GNATS-Notify: Message-Id: <20100718203610.D1ADEE044A@chen.org.nz> Date: Mon, 19 Jul 2010 08:36:10 +1200 (NZST) Cc: gnome@freebsd.org Subject: fix webkit-gtk2 to compile with icu4 X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Jonathan Chen List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jul 2010 20:55:51 -0000 >Submitter-Id: current-users >Originator: Jonathan Chen >Organization: >Confidential: no >Synopsis: fix webkit-gtk2 to compile with icu4 >Severity: serious >Priority: low >Category: ports >Class: update >Release: FreeBSD 8.1-PRERELEASE amd64 >Environment: System: FreeBSD osiris.chen.org.nz 8.1-PRERELEASE FreeBSD 8.1-PRERELEASE #0: Tue Jul 13 17:14:44 NZST 2010 root@osiris.chen.org.nz:/usr/obj/usr/src/sys/OSIRIS amd64 >Description: When devel/icu4 bumped the shared library version, the corresponding change was not propogated to www/webkit-gtk4. >How-To-Repeat: >Fix: diff -ru /usr/ports/www/webkit-gtk2/Makefile ./Makefile --- /usr/ports/www/webkit-gtk2/Makefile 2010-06-24 08:48:20.000000000 +1200 +++ ./Makefile 2010-07-19 08:24:54.000000000 +1200 @@ -55,8 +55,8 @@ .include -.if exists (${LOCALBASE}/lib/libicutu.so.43) -LIB_DEPENDS+= icutu.43:${PORTSDIR}/devel/icu4 +.if exists (${LOCALBASE}/lib/libicutu.so.44) +LIB_DEPENDS+= icutu.44:${PORTSDIR}/devel/icu4 EXTRA_PATCHES+= ${FILESDIR}/extra-patch-WebCore_platform_text_TextBreakIterator.h .else LIB_DEPENDS+= icutu.38:${PORTSDIR}/devel/icu