summaryrefslogtreecommitdiff
path: root/print/acroread9/patches/patch-aa
blob: a92444c0b3c0b0358b0734de899927c8605c3dde (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
$NetBSD: patch-aa,v 1.2 2012/08/25 12:34:53 wiz Exp $

Adapt ls(1) arguments for BSD.
Do not install man page gzipped.
Do not install into /usr.
Add case for NetBSD and DragonFly in the wrapper script.

--- INSTALL.orig	2012-03-28 10:48:06.000000000 +0000
+++ INSTALL
@@ -122,6 +122,8 @@ PrintRequiredFree()
 
         if [ "${OSname}" = "Linux" ] ; then
           size=`ls -lLn "$i" | ( read perm links owner group size date ; echo $size )`
+	elif [ `uname -s|sed -e 's|.*\(...\)|\\1|'` = "BSD" -o `uname -s` = "DragonFly" ] ; 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
@@ -657,16 +659,8 @@ InstallReader()
           record_config remove /usr/local/etc/bash_completion.d/acroread.sh
       fi
   fi
-  if [ "${OSname}" = "Linux" ]; then
-    manPageFile="acroread.1.gz"
-  else
     manPageFile="acroread.1"
     gunzip "$ReadInstallDir/Adobe/Reader9/Resource/Shell/acroread.1.gz" 2>/dev/null 
-  fi
-
-  rm -f "/usr/share/man/man1/${manPageFile}" 2>/dev/null && \
-  ln -s "$ReadInstallDir/Adobe/Reader9/Resource/Shell/${manPageFile}" "/usr/share/man/man1/${manPageFile}" 2>/dev/null && \
-  record_config remove "/usr/share/man/man1/${manPageFile}"
 
   if [ "${OSname}" = "Linux" -o \( "${OSname}" = "SunOS" -a "`uname -m`" = "i86pc" \) ]; then
       printf "%s" "Setting up libraries ... "
@@ -950,6 +944,19 @@ case "$OSname" in
     ReadDefaultNum="$ReadIntelLinuxNum"
     DefaultName="Intel/Linux"
     ;;
+  NetBSD | DragonFly)
+    MachArch=`uname -p`
+    case "$MachArch" in
+     i386|x86_64)
+       ReadDefaultNum="$ReadIntelLinuxNum"
+       DefaultName="Intel/Linux"
+       ;;
+     sparc*)
+       ReadDefaultNum="$ReadSparcSolarisNum"
+       DefaultName="SPARC/Solaris 2.x"
+       ;;
+    esac
+    ;;
 esac
 
 if  [ -z "$ReadDefaultNum" ] ; then