Date: Sat, 29 Jun 2002 19:09:53 -0400 From: "Eric W. Bates" <ericx@vineyard.net> To: <gnome@FreeBSD.org> Subject: minor problem with scrollkeeper-0.3.9 pkg-install Message-ID: <00c001c21fc2$1487dd40$385ce8c7@alice>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?00c001c21fc2$1487dd40$385ce8c7>
