From owner-freebsd-gnome@FreeBSD.ORG Tue Jan 31 01:30:13 2012 Return-Path: Delivered-To: gnome@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A1D1A106566C for ; Tue, 31 Jan 2012 01:30:13 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 8CDC28FC0A for ; Tue, 31 Jan 2012 01:30:13 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q0V1UDY8009044 for ; Tue, 31 Jan 2012 01:30:13 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q0V1UD4G009041; Tue, 31 Jan 2012 01:30:13 GMT (envelope-from gnats) Date: Tue, 31 Jan 2012 01:30:13 GMT Message-Id: <201201310130.q0V1UD4G009041@freefall.freebsd.org> To: gnome@FreeBSD.org From: Tsurutani Naoki Cc: Subject: Re: ports/160224: building x11-toolkits/gtk30 fails X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Tsurutani Naoki List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 31 Jan 2012 01:30:13 -0000 The following reply was made to PR ports/160224; it has been noted by GNATS. From: Tsurutani Naoki To: bug-followup@FreeBSD.org, gnome@FreeBSD.org, turutani@scphys.kyoto-u.ac.jp Cc: Subject: Re: ports/160224: building x11-toolkits/gtk30 fails Date: Tue, 31 Jan 2012 10:25:06 +0900 This problem still exists. Instead of above patch, using GNU sed can be solve the problem. I do not want to use GNU sed, for it might be confusing the ports... Here is a new patch: --- Makefile.orig 2011-09-30 06:27:27.000000000 +0900 +++ Makefile 2012-01-31 06:50:40.000000000 +0900 @@ -31,7 +31,8 @@ .if !defined(REFERENCE_PORT) -BUILD_DEPENDS+= g-ir-scanner:${PORTSDIR}/devel/gobject-introspection +BUILD_DEPENDS+= g-ir-scanner:${PORTSDIR}/devel/gobject-introspection \ + gsed:${PORTSDIR}/textproc/gsed RUN_DEPENDS+= ${LOCALBASE}/share/mime/magic:${PORTSDIR}/misc/shared-mime-info \ ${LOCALBASE}/share/icons/hicolor/index.theme:${PORTSDIR}/misc/hicolor-icon-theme @@ -46,7 +47,7 @@ xcomposite CONFIGURE_ARGS= --enable-static --enable-xinput=yes CONFIGURE_ARGS+=--enable-gtk2-dependency -CONFIGURE_ENV= INTROSPECTION_GIRDIR=`pkg-config --variable=girdir gobject-introspection-1.0` +CONFIGURE_ENV= INTROSPECTION_GIRDIR=`pkg-config --variable=girdir gobject-introspection-1.0` SED=${LOCALBASE}/bin/gsed CPPFLAGS+= -I${LOCALBASE}/include/freetype2 \ -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib