diff options
author | Thomas Gellekum <tg@FreeBSD.org> | 1996-11-20 07:29:45 +0000 |
---|---|---|
committer | Thomas Gellekum <tg@FreeBSD.org> | 1996-11-20 07:29:45 +0000 |
commit | 7a8aa57453d9500a952dd7c4ee28b8832b7dbaff (patch) | |
tree | f16a9441e76cd986245fad9211ffc56faaff731e /print/acroread5/files | |
parent | 7d186159b1522d129e5e22d29ae9e150b6dffa31 (diff) |
Import of acroread, a reader for the Adobe Portable Document Format.
Note: This is set to RESTRICTED and INTERACTIVE, until someone says
something definite about the copyright/inclusion on CDROM.
Notes
Notes:
svn path=/head/; revision=4605
Diffstat (limited to 'print/acroread5/files')
-rw-r--r-- | print/acroread5/files/patch-aa | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/print/acroread5/files/patch-aa b/print/acroread5/files/patch-aa new file mode 100644 index 000000000000..92fa10bf43f3 --- /dev/null +++ b/print/acroread5/files/patch-aa @@ -0,0 +1,38 @@ +--- INSTALL.orig Thu Nov 7 00:04:53 1996 ++++ INSTALL Sat Nov 16 15:30:26 1996 +@@ -67,7 +67,7 @@ + exit 1 + fi + +- if [ -z "$PAGER" ] || [ "`type $PAGER`" = "$PAGER not found" ] ; then ++ if [ -z "$PAGER" ] || [ "`$PAGER`" = "$PAGER not found" ] ; then + if [ "`type more`" != "more not found" ] ; then + command=more + elif [ "`type pg`" != "pg not found" ] ; then +@@ -117,6 +117,8 @@ + if [ "$i" -a -f "$i" ] ; then + if [ `uname -s` = "Linux" ] ; then + size=`ls -lLn "$i" | ( read perm links owner group size date ; echo $size )` ++ elif [ `uname -s` = "FreeBSD" ] ; then ++ size=`ls -lL "$i" | ( read perm links owner group size date ; echo $size )` + else + size=`ls -lLon "$i" | ( read perm links owner size date ; echo $size )` + fi +@@ -559,7 +561,7 @@ + *) ScriptDirectory="$CurrentDirectory"/"$ScriptDirectory" ;; + esac + +-if [ "`type uname`" != "uname not found" ] ; then ++if [ "`uname`" != "uname not found" ] ; then + OSname=`uname -s` + if [ "$OSname" = "AIX" ] ; then + OSrelease=`uname -a | ( read name host minor major foo ; echo $major.$minor )` +@@ -1044,7 +1046,7 @@ + DistDefaultNum="$DistIntelBSDINum" + DefaultName="Intel/BSDI" + ;; +- Linux) ++ FreeBSD|Linux) + AcroDefaultNum="$AcroIntelLinuxNum" + ExchDefaultNum="$ExchIntelLinuxNum" + ReadDefaultNum="$ReadIntelLinuxNum" |