From owner-freebsd-gnome Sat Jun 29 16: 4:19 2002 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 E45D937B400 for ; Sat, 29 Jun 2002 16:04:14 -0700 (PDT) Received: from vineyard.net (K1.VINEYARD.NET [204.17.195.90]) by mx1.FreeBSD.org (Postfix) with ESMTP id 50CBE43E06 for ; Sat, 29 Jun 2002 16:04:14 -0700 (PDT) (envelope-from ericx@vineyard.net) Received: from vineyard.net (loopback [127.0.0.1]) by smtp.vineyard.net (Postfix) with ESMTP id 6B4EC9155E for ; Sat, 29 Jun 2002 19:04:13 -0400 (EDT) Received: from alice (loopback [127.0.0.1]) by vineyard.net (Postfix) with SMTP id CE1719152D for ; Sat, 29 Jun 2002 19:04:12 -0400 (EDT) Message-ID: <00c001c21fc2$1487dd40$385ce8c7@alice> From: "Eric W. Bates" To: Subject: minor problem with scrollkeeper-0.3.9 pkg-install Date: Sat, 29 Jun 2002 19:09:53 -0400 Organization: Vineyard.NET, Inc. MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Sender: owner-freebsd-gnome@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I have an older machine with smaller disks. Consequently, /usr/local is a symlink. If pkg-install is patched as follows, the find commands will work: diff -c pkg-install~ pkg-install *** pkg-install~ Tue Jun 18 15:23:13 2002 --- pkg-install Sat Jun 29 18:48:38 2002 *************** *** 47,53 **** # # find the prefix for DocBook DTD # ! found=`find ${PREFIX} -name docbookx.dtd 2> /dev/null` if [ "$found" = "" ] ; then echo could not locate docbookx.dtd for DocBook XML exit 1 --- 47,53 ---- # # find the prefix for DocBook DTD # ! found=`find ${PREFIX}/ -name docbookx.dtd 2> /dev/null` if [ "$found" = "" ] ; then echo could not locate docbookx.dtd for DocBook XML exit 1 *************** *** 119,125 **** # top=`dirname $docbookdir` found=`find $top -iname "iso*amsb.ent" 2> /dev/null` ! found=`find ${PREFIX} -iname "iso*amsb.ent" 2> /dev/null` if [ "$found" = "" ] ; then echo could not locate iso-amsb.ent of ISO DocBook entities exit 1 --- 119,125 ---- # top=`dirname $docbookdir` found=`find $top -iname "iso*amsb.ent" 2> /dev/null` ! found=`find ${PREFIX}/ -iname "iso*amsb.ent" 2> /dev/null` if [ "$found" = "" ] ; then echo could not locate iso-amsb.ent of ISO DocBook entities exit 1 *************** *** 208,214 **** # top=`dirname $docbookdir` found=`find $top -name chunk.xsl 2> /dev/null` ! found=`find ${PREFIX} -name chunk.xsl 2> /dev/null` if [ "$found" = "" ] ; then echo could not locate chunk-common.xsl of DocBook XSLT stylesheets exit 1 --- 208,214 ---- # top=`dirname $docbookdir` found=`find $top -name chunk.xsl 2> /dev/null` ! found=`find ${PREFIX}/ -name chunk.xsl 2> /dev/null` if [ "$found" = "" ] ; then echo could not locate chunk-common.xsl of DocBook XSLT stylesheets exit 1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-gnome" in the body of the message