From owner-freebsd-gnome@FreeBSD.ORG Wed Feb 4 13:13:03 2004 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A525D16A4CE for ; Wed, 4 Feb 2004 13:13:03 -0800 (PST) Received: from mx-00.sil.at (mx-00.sil.at [62.116.68.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id EE78343D1D for ; Wed, 4 Feb 2004 13:13:00 -0800 (PST) (envelope-from herbert.skuhra@gmx.at) Received: (qmail-ldap/ctrl 6383 invoked from network); 4 Feb 2004 21:12:56 -0000 Received: from unknown (HELO oslo.ath.cx) (u006671@[213.47.80.26]) (envelope-sender )encrypted SMTP for ; 4 Feb 2004 21:12:56 -0000 Date: Wed, 4 Feb 2004 22:13:13 +0100 From: "Herbert J. Skuhra" To: gnome@FreeBSD.org Message-ID: <20040204211313.GA61755@oslo.ath.cx> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="pWyiEgJYm5f9v55/" Content-Disposition: inline X-Operating-System: FreeBSD 5.2.1-RC User-Agent: Mutt/1.5.6i Subject: diff to build pan2 w/o gtkspell X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 Feb 2004 21:13:03 -0000 --pWyiEgJYm5f9v55/ Content-Type: text/plain; charset=iso-8859-15 Content-Disposition: inline Hei! I have modified the Makefile of news/pan2 to build the port without gtkspell and gnome. Not sure if this is the right way to do it though. Well it's working for me! ;-) Regards, Herbert --pWyiEgJYm5f9v55/ Content-Type: text/plain; charset=iso-8859-15 Content-Disposition: attachment; filename="pan2.diff" diff -ruN pan2.orig/Makefile pan2/Makefile --- pan2.orig/Makefile Wed Feb 4 21:12:47 2004 +++ pan2/Makefile Wed Feb 4 22:08:53 2004 @@ -17,13 +17,25 @@ MAINTAINER= gnome@FreeBSD.org COMMENT= Threaded GNOME 2 newsreader based on Agent for Windows -LIB_DEPENDS= gtkspell.0:${PORTSDIR}/textproc/gtkspell2 \ - gnet-2.0.0:${PORTSDIR}/net/gnet2 +LIB_DEPENS gnet-2.0.0:${PORTSDIR}/net/gnet2 + +.if defined(WITHOUT_GTKSPELL) +CONFIGURE_ARGS= --disable-gtkspell +.endif + +.if !defined(WITHOUT_GTKSPELL) +LIB_DEPENDS+= gtkspell.0:${PORTSDIR}/textproc/gtkspell2 +.endif USE_BZIP2= yes USE_X_PREFIX= yes USE_GMAKE= yes -USE_GNOME= gnomeprefix gnomehack gnometarget libxml2 +USE_GNOME= libxml2 + +.if !defined(WITHOUT_GNOME) +USE_GNOME+= gnomeprefix gnomehack gnometarget +.endif + GNU_CONFIGURE= yes CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include ${PTHREAD_CFLAGS}" \ LIBS="-L${LOCALBASE}/lib -lgnuregex -lcompat" --pWyiEgJYm5f9v55/--