From owner-freebsd-gnome@FreeBSD.ORG Thu Jan 6 19:44:48 2011 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 631AB106566B for ; Thu, 6 Jan 2011 19:44:48 +0000 (UTC) (envelope-from bobf@mrp3.com) Received: from elasmtp-galgo.atl.sa.earthlink.net (elasmtp-galgo.atl.sa.earthlink.net [209.86.89.61]) by mx1.freebsd.org (Postfix) with ESMTP id 3ED208FC14 for ; Thu, 6 Jan 2011 19:44:48 +0000 (UTC) Received: from [66.47.136.67] (helo=BSDSilver.SFT.local) by elasmtp-galgo.atl.sa.earthlink.net with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.67) (envelope-from ) id 1PavHd-0008P9-LQ for gnome@FreeBSD.org; Thu, 06 Jan 2011 14:14:01 -0500 Message-ID: <4D261477.1060403@mrp3.com> Date: Thu, 06 Jan 2011 11:13:59 -0800 From: bobf User-Agent: Thunderbird 2.0.0.23 (X11/20090905) MIME-Version: 1.0 To: gnome@FreeBSD.org Content-Type: multipart/mixed; boundary="------------090809010209020306000803" X-ELNK-Trace: 549015f0ad0344773aad58b8ed06a5f90a9da525759e265468de82170232910472fbb74491f74d69a7ce0e8f8d31aa3f350badd9bab72f9c350badd9bab72f9c X-Originating-IP: 66.47.136.67 Cc: Subject: graphics/inkscape fails to build X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 06 Jan 2011 19:44:48 -0000 This is a multi-part message in MIME format. --------------090809010209020306000803 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit graphics/inkscape fails to build. The problem can be corrected by adding the following line to Makefile after including 'bsd.port.pre.mk'. +CFLAGS+= -I${LOCALBASE}/include/libwpg-0.1 -I${LOCALBASE}/include/libwpd-0.8 (sorry if it line-wraps) patch file attached --------------090809010209020306000803 Content-Type: text/plain; name="inkscape.patch" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="inkscape.patch" --- Makefile.orig 2011-01-05 23:20:45.000000000 -0800 +++ Makefile 2011-01-06 10:59:28.000000000 -0800 @@ -44,8 +44,12 @@ OPTIONS= POPPLER "Enable libpoppler-cairo for rendering PDF preview" on + .include +# added for include path to libwpg01 and libwpd08 +CFLAGS+= -I${LOCALBASE}/include/libwpg-0.1 -I${LOCALBASE}/include/libwpd-0.8 + .if ${HAVE_GNOME:Mgnomevfs2} != "" USE_GNOME+= gnomevfs2 CONFIGURE_ARGS+= --with-gnome-vfs --------------090809010209020306000803--