]> git.michaelhowe.org Git - packages/o/openafs.git/commitdiff
* Add support for ppc64, thanks Andreas Jochens. (Closes: #322020)
authorRuss Allbery <rra@debian.org>
Wed, 10 Aug 2005 22:07:04 +0000 (22:07 +0000)
committerRuss Allbery <rra@debian.org>
Wed, 10 Aug 2005 22:07:04 +0000 (22:07 +0000)
debian/changelog
debian/control
debian/kern-sysname
debian/sysname

index 82afaead689aa5f672678f9f8eab23a5a9e2173c..3fbcbee0c99ba07e5a3f3513753c69027002efb0 100644 (file)
@@ -1,6 +1,7 @@
 openafs (1.3.87-1) unstable; urgency=low
 
   * New upstream version.
+  * Add support for ppc64, thanks Andreas Jochens.  (Closes: #322020)
   * Diagnose unsupported architectures earlier and with a clearer error.
   * Suppress error messages from a missing kernel version header since
     they occur normally when doing the regular package build and are just
index cfa6c31528dfb3a6ead74f60164969396b2e5be9..74a8b7163d5b4ff59dd143e4b66a9152bbf7ddd1 100644 (file)
@@ -7,7 +7,7 @@ Build-Depends: debhelper (>= 4.1.16), libncurses5-dev, libpam0g-dev, bison, docb
 Standards-Version: 3.6.2
 
 Package: openafs-client
-Architecture: i386 powerpc sparc alpha s390 ia64 hppa amd64
+Architecture: i386 powerpc sparc alpha s390 ia64 hppa amd64 ppc64
 Depends: ${shlibs:Depends}, ${misc:Depends}, openafs-modules-source (>= 1.2.9) | openafs-modules2
 Conflicts: arla, openafs-modules1
 Description: The AFS distributed filesystem- client support
@@ -20,7 +20,7 @@ Description: The AFS distributed filesystem- client support
 
 Package: openafs-kpasswd
 Priority: extra
-Architecture: i386 powerpc sparc alpha s390 ia64 hppa amd64
+Architecture: i386 powerpc sparc alpha s390 ia64 hppa amd64 ppc64
 Depends: ${shlibs:Depends}, openafs-client
 Conflicts: krb5-user, heimdal-clients, kerberos4kth-clients
 Description: The AFS distributed filesystem- old password changing
@@ -34,7 +34,7 @@ Description: The AFS distributed filesystem- old password changing
  not install this package for new cells or for cells using Kerberos5.
 
 Package: openafs-fileserver
-Architecture: i386 powerpc sparc alpha s390 ia64 hppa amd64
+Architecture: i386 powerpc sparc alpha s390 ia64 hppa amd64 ppc64
 Depends: ${shlibs:Depends}, ${misc:Depends}, openafs-client
 Recommends: ntp
 Description: The AFS distributed filesystem- file server
@@ -46,7 +46,7 @@ Description: The AFS distributed filesystem- file server
  installed on any machine that will export files into AFS.
 
 Package: openafs-dbserver
-Architecture: i386 powerpc sparc alpha s390 ia64 hppa amd64
+Architecture: i386 powerpc sparc alpha s390 ia64 hppa amd64 ppc64
 Depends: ${shlibs:Depends}, ${perl:Depends}, openafs-fileserver, openafs-client
 Conflicts: openafs-ptutil
 Replaces: openafs-ptutil
@@ -62,7 +62,7 @@ Description: The AFS distributed filesystem- database server
 
 Package: libopenafs-dev
 Section: libdevel
-Architecture: i386 powerpc sparc alpha s390 ia64 hppa amd64
+Architecture: i386 powerpc sparc alpha s390 ia64 hppa amd64 ppc64
 Priority: extra
 Conflicts: arla-dev
 Depends: ${shlibs:Depends}
@@ -89,7 +89,7 @@ Package: libpam-openafs-kaserver
 Priority: extra
 Depends: ${shlibs:Depends}
 Recommends: openafs-client
-Architecture: i386 powerpc sparc alpha s390 ia64 hppa amd64
+Architecture: i386 powerpc sparc alpha s390 ia64 hppa amd64 ppc64
 Description: The AFS distributed filesystem- kaserver PAM module
  AFS is a distributed filesystem allowing cross-platform sharing of
  files among multiple computers.  Facilities are provided for access
index 429b51c056140dca0dc38680fc4493adaa294382..1aa0293a033488c084a3c8ea266e2d74a7bba3f1 100644 (file)
@@ -77,6 +77,16 @@ ppc)
         ;;
     esac
     ;;
+ppc64)
+    case $KVERS in
+    2.4*)
+        echo ppc64_linux24
+        ;;
+    2.6*)
+        echo ppc64_linux26
+        ;;
+    esac
+    ;;
 s390)
     echo s390_linux24
     ;;
index 86af78a7c1ee2e5f9516c4172b20bdab4874ce81..b47488d10df9e4ff191c717da1c9d7dea4067c1d 100755 (executable)
@@ -24,6 +24,9 @@ ia64)
 powerpc)
     echo ppc_linux24
     ;;
+ppc64)
+    echo ppc64_linux24
+    ;;
 s390)
     echo s390_linux24
     ;;