From owner-freebsd-gnome@FreeBSD.ORG Sat Feb 26 11:53:51 2005 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 D1AB016A4CE for ; Sat, 26 Feb 2005 11:53:51 +0000 (GMT) Received: from fe08.axelero.hu (fe08.axelero.hu [195.228.240.96]) by mx1.FreeBSD.org (Postfix) with ESMTP id 22DBF43D31 for ; Sat, 26 Feb 2005 11:53:51 +0000 (GMT) (envelope-from Gabor@Zahemszky.HU) Received: from fe08 (localhost-02 [127.0.2.1]) by fe08.axelero.hu (8.12.11/8.12.11) with SMTP id j1QBrnxp006512 for ; Sat, 26 Feb 2005 12:53:49 +0100 (CET) Received: from fe08.axelero.hu ([127.0.2.1]) by fe08 ([195.228.240.96]) with SMTP (gateway) id A01966B7A77; Sat, 26 Feb 2005 12:53:49 +0100 Received: from [192.168.1.4] (109.205-182-adsl-pool.axelero.hu [81.182.205.109]) by fe08.axelero.hu (8.12.11/8.12.11) with ESMTP id j1QBrmPE006483 for ; Sat, 26 Feb 2005 12:53:49 +0100 (CET) Message-ID: <42206357.2070105@Zahemszky.HU> Date: Sat, 26 Feb 2005 12:53:59 +0100 From: =?ISO-8859-2?Q?Zahemszky_G=E1bor?= User-Agent: Mozilla Thunderbird 1.0 (X11/20050104) X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-gnome@freebsd.org Content-Type: multipart/mixed; boundary="------------050906040106000802040909" Subject: Incorrect Abiword dependency [PATCH] 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: Sat, 26 Feb 2005 11:53:51 -0000 This is a multi-part message in MIME format. --------------050906040106000802040909 Content-Type: text/plain; charset=ISO-8859-2; format=flowed Content-Transfer-Encoding: 7bit Hi! The editors/abiword port has a wrong dependency on Nautilus. If Nautilus is not on the machine, abiword compile without Gnome support (and the consequence of it, that there won't be a Print preview icon/menu in it). But abiword only needs the lignomeprintui library to this feature - neither nautilus2, nor the desktopfileutils package. With the attached patch (which changes the Nautilus + libgnomeprintui + desktopfileutils dependencies to libgnomeprintui only), I can generate a correct, workable Abiword on my laptop, which has only the power to run XFCE4, but not to run the full Gnome suite.) Bye, Gabor PS: As Abiword's maintainer is gnome@ , I think, I don't need to send-pr the patch, too. -- #!/bin/ksh Z='21N16I25C25E30, 40M30E33E25T15U!' ;IFS=' ABCDEFGHIJKLMNOPQRSTUVWXYZ ';set $Z ;for i { [[ $i = ? ]]&&print $i&&break;[[ $i = ??? ]]&&j=$i&&i=${i%?};typeset -i40 i=8#$i;print -n ${i#???};[[ "$j" = ??? ]]&&print -n "${j#??} "&&j=;typeset +i i;};IFS=' 0123456789 ';set $Z;for i { [[ $i = , ]]&&i=2;[[ $i = ?? ]]||typeset -l i;j="$j $i";typeset +l i;};print "$j" --------------050906040106000802040909 Content-Type: text/plain; name="Makefile.patch" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="Makefile.patch" *** Makefile.orig Sat Feb 26 12:28:12 2005 --- Makefile Sat Feb 26 12:28:44 2005 *************** *** 56,63 **** .include ! .if ${HAVE_GNOME:Mnautilus2}!="" && ${HAVE_GNOME:Mlibgnomeprintui}!="" ! USE_GNOME+= nautilus2 libgnomeprintui desktopfileutils CONFIGURE_ARGS+= --enable-gnome PKGNAMESUFFIX= -gnome GNOME_ENABLED= yes --- 56,63 ---- .include ! .if ${HAVE_GNOME:Mlibgnomeprintui}!="" ! USE_GNOME+= libgnomeprintui CONFIGURE_ARGS+= --enable-gnome PKGNAMESUFFIX= -gnome GNOME_ENABLED= yes --------------050906040106000802040909--