From owner-freebsd-ports@FreeBSD.ORG Thu Mar 11 07:05:09 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4384C16A4CE for ; Thu, 11 Mar 2004 07:05:09 -0800 (PST) Received: from kayjay.xs4all.nl (kayjay.xs4all.nl [80.126.33.60]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9E1DD43D2F for ; Thu, 11 Mar 2004 07:05:08 -0800 (PST) (envelope-from karelj@kayjay.xs4all.nl) Received: from kayjay.xs4all.nl (localhost.wop.wtb.tue.nl [127.0.0.1]) by kayjay.xs4all.nl (8.12.11/8.12.11) with ESMTP id i2BF4ppZ086063; Thu, 11 Mar 2004 16:04:51 +0100 (CET) (envelope-from karelj@kayjay.xs4all.nl) Received: (from karelj@localhost) by kayjay.xs4all.nl (8.12.11/8.12.11/Submit) id i2BF4oAk086062; Thu, 11 Mar 2004 16:04:50 +0100 (CET) (envelope-from karelj) Date: Thu, 11 Mar 2004 16:04:50 +0100 From: "Karel J. Bosschaart" To: Gert van der Plas Message-ID: <20040311150450.GA83740@kayjay.xs4all.nl> References: <200403111221.32508.G.A.J.v.d.Plas@tue.nl> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200403111221.32508.G.A.J.v.d.Plas@tue.nl> User-Agent: Mutt/1.4.2.1i cc: ports@freebsd.org Subject: Re: error in xfig package X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Mar 2004 15:05:09 -0000 Hi Gert, On Thu, Mar 11, 2004 at 12:21:30PM +0100, Gert van der Plas wrote: > While installing the xfig package under FreeBSD-5.2-RC I found some minor > problem with the xfig port. There seem to be some problem with detecting the > installation of Xawd-1.5 properly. Uncommenting the line in the makefile and > a manual install of the port seems to resolve the problem. The problem > occurred on three separate freshly installed systems. Works fine here on 5.2. What does 'ls -l /usr/X11R6/lib/libXaw3d.*' show? -rw-r--r-- 1 root wheel 400816 Mar 11 15:17 /usr/X11R6/lib/libXaw3d.a lrwxr-xr-x 1 root wheel 13 Mar 11 15:17 /usr/X11R6/lib/libXaw3d.so -> libXaw3d.so.7 lrwxr-xr-x 1 root wheel 13 Mar 11 15:17 /usr/X11R6/lib/libXaw3d.so.6 -> libXaw3d.so.7 -rwxr-xr-x 1 root wheel 326294 Mar 11 15:17 /usr/X11R6/lib/libXaw3d.so.7 I found in the Xaw3d Makefile that the symlink libXaw3d.so.6 -> libXaw.so.7 (actually libXaw3d.so.${XAWVER}) is only made when bin/XFree86 is installed (by XFree86-4-Server). So if you happen to have a system without X server I guess the xfig port will fail because it looks for libXaw.so.7 but finds only libXaw.so.6. Shouldn't the Xaw3d Makefile test on XFREE86_VERSION instead of looking at the presence of the XFree86 binary? Karel.