From owner-freebsd-gnome@FreeBSD.ORG Sun Feb 22 19:06:13 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 19E2F16A4CE for ; Sun, 22 Feb 2004 19:06:13 -0800 (PST) Received: from straycat.dhs.org (h0050da134090.ne.client2.attbi.com [24.91.148.154]) by mx1.FreeBSD.org (Postfix) with SMTP id A235143D1F for ; Sun, 22 Feb 2004 19:06:12 -0800 (PST) (envelope-from tmclaugh@sdf.lonestar.org) Received: (qmail 2660 invoked from network); 23 Feb 2004 03:07:25 -0000 Received: from unknown (HELO ?192.168.1.128?) (192.168.1.128) by 192.168.1.129 with SMTP; 23 Feb 2004 03:07:25 -0000 From: Tom McLaughlin To: FreeBSD GNOME Users Content-Type: multipart/mixed; boundary="=-TdZriX57oJ+vfUTBI3Ja" Message-Id: <1077505881.94362.32.camel@compass> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.5 Date: Sun, 22 Feb 2004 22:11:21 -0500 Subject: editors/AbiWord: missing enchant dependancy 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: Mon, 23 Feb 2004 03:06:13 -0000 --=-TdZriX57oJ+vfUTBI3Ja Content-Type: text/plain Content-Transfer-Encoding: 7bit Hi all, When AbiWord builds it will use enchant as the spell checking system if it is installed over aspell. The attached patch adds a dependency on textproc/enchant if it is installed to AbiWord. Not sure if maybe enchant should become a required dependency for AbiWord since it's the spell checking system from abisource? Thanks. Tom --=-TdZriX57oJ+vfUTBI3Ja Content-Disposition: attachment; filename=AbiWord-enchant-dep.diff Content-Type: text/x-patch; name=AbiWord-enchant-dep.diff; charset= Content-Transfer-Encoding: 7bit diff -Nur AbiWord2.old/Makefile AbiWord2/Makefile --- AbiWord2.old/Makefile Sat Feb 21 02:34:49 2004 +++ AbiWord2/Makefile Sun Feb 22 21:13:37 2004 @@ -45,6 +45,10 @@ .include +.if exists(${LOCALBASE}/lib/libenchant.so) +LIB_DEPENDS+=enchant.2:${PORTSDIR}/textproc/enchant +.endif + .if exists(${LOCALBASE}/include/wv.h) BROKEN= "This port cannot be built when textproc/wv is installed because of a header conflict. Please remove textproc/wv, and resume the build. If textproc/wv is no longer installed, please remove ${LOCALBASE}/include/wv.h, and resume the AbiWord2 build" .endif --=-TdZriX57oJ+vfUTBI3Ja--