summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcgd <cgd@pkgsrc.org>1999-06-14 21:43:33 +0000
committercgd <cgd@pkgsrc.org>1999-06-14 21:43:33 +0000
commitbb98228a845b0e4f46f29c2717922382b11f27a2 (patch)
treefd4e20d58e9be91fa6f47b0acd8229bd6cfa32c3
parent7fa3ff6a6a6555d36587b821acbc6fd7efe7119d (diff)
downloadpkgsrc-bb98228a845b0e4f46f29c2717922382b11f27a2.tar.gz
add NetBSD/alpha support, using the Digital UNIX 4.0 binary set
-rw-r--r--www/communicator/Makefile17
-rw-r--r--www/communicator/files/md53
-rw-r--r--www/communicator/pkg/COMMENT2
-rw-r--r--www/communicator/pkg/MESSAGE5
-rw-r--r--www/communicator/pkg/PLIST.alpha2
-rw-r--r--www/navigator/Makefile17
-rw-r--r--www/navigator/files/md53
-rw-r--r--www/navigator/pkg/COMMENT2
-rw-r--r--www/navigator/pkg/MESSAGE5
-rw-r--r--www/navigator/pkg/PLIST.alpha2
10 files changed, 42 insertions, 16 deletions
diff --git a/www/communicator/Makefile b/www/communicator/Makefile
index f6a117c5970..f63b0f0a51a 100644
--- a/www/communicator/Makefile
+++ b/www/communicator/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.9 1999/06/04 18:07:40 thorpej Exp $
+# $NetBSD: Makefile,v 1.10 1999/06/14 21:43:33 cgd Exp $
#
# Every effort has been made to keep the communicator and navigator
# Makefiles as similar as possible.
@@ -7,26 +7,33 @@ BINNAME= communicator
NS_VERS= 4.6
NS_VERS_SHORT= 46
#
-.if (${MACHINE_ARCH} == "i386")
+.if (${MACHINE_ARCH} == "alpha")
+.if !exists(/emul/osf1/sbin/loader)
+IGNORE=You must have Digital UNIX libraries installed - see compat_osf1(8)
+.endif
+UNAME= alpha-dec-osf4.0
+DIST_DIR_NAME= supported/dec_unix40
+WRKNAME= alpha-dec-osf4.0
+.elif (${MACHINE_ARCH} == "i386")
.if !exists(/emul/linux/lib/ld-linux.so.2)
IGNORE=You must have Linux libraries installed - see compat_linux(8)
.endif
UNAME= x86-unknown-linuxglibc2.0
-UNAME_SHORT= linux20_glibc2
+DIST_DIR_NAME= unsupported/linux20_glibc2
WRKNAME= x86-unknown-linux2.0
.elif (${MACHINE_ARCH} == "sparc")
.if !exists(/emul/sunos/usr/lib/ld.so)
IGNORE=You must have SunOS libraries installed - see compat_sunos(8)
.endif
UNAME= sparc-sun-sunos4.1.3_U1
-UNAME_SHORT= sunos413
+DIST_DIR_NAME= unsupported/sunos413
WRKNAME= ${UNAME}
.endif
#
DISTNAME= ${BINNAME}-v${NS_VERS_SHORT}-export.${UNAME}
PKGNAME= ${BINNAME}-${NS_VERS}
CATEGORIES= www
-SUB= english/unix/unsupported/${UNAME_SHORT}/complete_install
+SUB= english/unix/${DIST_DIR_NAME}/complete_install
MASTER_SITES= ftp://ftp.netscape.org/pub/communicator/${NS_VERS}/${SUB}/ \
ftp://sunsite.utk.edu/pub/netscape/communicator/${NS_VERS}/${SUB}/ \
ftp://ftp-uk.netscape.com/pub/communicator/${NS_VERS}/${SUB}/ \
diff --git a/www/communicator/files/md5 b/www/communicator/files/md5
index 88175e7ed85..8c94337fd63 100644
--- a/www/communicator/files/md5
+++ b/www/communicator/files/md5
@@ -1,4 +1,5 @@
-$NetBSD: md5,v 1.4 1999/06/04 18:07:40 thorpej Exp $
+$NetBSD: md5,v 1.5 1999/06/14 21:43:34 cgd Exp $
+MD5 (communicator-v46-export.alpha-dec-osf4.0.tar.gz) = 94997739fbf2d5481c985e7240cf82ff
MD5 (communicator-v46-export.sparc-sun-sunos4.1.3_U1.tar.gz) = 5979e5a1d4096973388334d2606d2677
MD5 (communicator-v46-export.x86-unknown-linuxglibc2.0.tar.gz) = 5d9be47cb503e9e7f27e206852b591bc
diff --git a/www/communicator/pkg/COMMENT b/www/communicator/pkg/COMMENT
index fd122dc4b0b..7c5d8736d16 100644
--- a/www/communicator/pkg/COMMENT
+++ b/www/communicator/pkg/COMMENT
@@ -1 +1 @@
-Netscape communicator complete install - Linux/SunOS binary
+Netscape communicator complete install - Digital UNIX/Linux/SunOS binary
diff --git a/www/communicator/pkg/MESSAGE b/www/communicator/pkg/MESSAGE
index 61b4925bd38..c10c5071de0 100644
--- a/www/communicator/pkg/MESSAGE
+++ b/www/communicator/pkg/MESSAGE
@@ -1,5 +1,8 @@
==========================================================================
-$NetBSD: MESSAGE,v 1.2 1999/06/04 18:07:40 thorpej Exp $
+$NetBSD: MESSAGE,v 1.3 1999/06/14 21:43:34 cgd Exp $
+
+alpha: To run the Digital UNIX version of Netscape, you need COMPAT_OSF1
+ in your kernel, plus a full set of /emul/osf1 libraries.
i386: To run the Linux version of Netscape, you need COMPAT_LINUX and
EXEC_ELF32 in your kernel, plus a full set of /emul/linux libraries.
diff --git a/www/communicator/pkg/PLIST.alpha b/www/communicator/pkg/PLIST.alpha
new file mode 100644
index 00000000000..98a87855856
--- /dev/null
+++ b/www/communicator/pkg/PLIST.alpha
@@ -0,0 +1,2 @@
+@comment $NetBSD: PLIST.alpha,v 1.1 1999/06/14 21:43:35 cgd Exp $
+lib/netscape/communicator-${NS_VERS}/plugins/libnullplugin.so
diff --git a/www/navigator/Makefile b/www/navigator/Makefile
index 3481b182d64..00c78bf802f 100644
--- a/www/navigator/Makefile
+++ b/www/navigator/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.7 1999/06/04 18:07:41 thorpej Exp $
+# $NetBSD: Makefile,v 1.8 1999/06/14 21:43:38 cgd Exp $
#
# Every effort has been made to keep the communicator and navigator
# Makefiles as similar as possible.
@@ -7,26 +7,33 @@ BINNAME= navigator
NS_VERS= 4.6
NS_VERS_SHORT= 46
#
-.if (${MACHINE_ARCH} == "i386")
+.if (${MACHINE_ARCH} == "alpha")
+.if !exists(/emul/osf1/sbin/loader)
+IGNORE=You must have Digital UNIX libraries installed - see compat_osf1(8)
+.endif
+UNAME= alpha-dec-osf4.0
+DIST_DIR_NAME= supported/dec_unix40
+WRKNAME= alpha-dec-osf4.0
+.elif (${MACHINE_ARCH} == "i386")
.if !exists(/emul/linux/lib/ld-linux.so.2)
IGNORE=You must have Linux libraries installed - see compat_linux(8)
.endif
UNAME= x86-unknown-linuxglibc2.0
-UNAME_SHORT= linux20_glibc2
+DIST_DIR_NAME= unsupported/linux20_glibc2
WRKNAME= x86-unknown-linux2.0
.elif (${MACHINE_ARCH} == "sparc")
.if !exists(/emul/sunos/usr/lib/ld.so)
IGNORE=You must have SunOS libraries installed - see compat_sunos(8)
.endif
UNAME= sparc-sun-sunos4.1.3_U1
-UNAME_SHORT= sunos413
+DIST_DIR_NAME= unsupported/sunos413
WRKNAME= ${UNAME}
.endif
#
DISTNAME= ${BINNAME}-v${NS_VERS_SHORT}-export.${UNAME}
PKGNAME= ${BINNAME}-${NS_VERS}
CATEGORIES= www
-SUB= english/unix/unsupported/${UNAME_SHORT}/navigator_standalone
+SUB= english/unix/${DIST_DIR_NAME}/navigator_standalone
MASTER_SITES= ftp://ftp.netscape.org/pub/communicator/${NS_VERS}/${SUB}/ \
ftp://sunsite.utk.edu/pub/netscape/communicator/${NS_VERS}/${SUB}/ \
ftp://ftp-uk.netscape.com/pub/communicator/${SUB}/
diff --git a/www/navigator/files/md5 b/www/navigator/files/md5
index 8e6bff82820..713bcc4eaa2 100644
--- a/www/navigator/files/md5
+++ b/www/navigator/files/md5
@@ -1,4 +1,5 @@
-$NetBSD: md5,v 1.4 1999/06/04 18:22:01 thorpej Exp $
+$NetBSD: md5,v 1.5 1999/06/14 21:43:39 cgd Exp $
+MD5 (navigator-v46-export.alpha-dec-osf4.0.tar.gz) = 1cea95446db069f59d1a1ee313318909
MD5 (navigator-v46-export.sparc-sun-sunos4.1.3_U1.tar.gz) = f190d6e158cfc648ba44aa1481b9b293
MD5 (navigator-v46-export.x86-unknown-linuxglibc2.0.tar.gz) = a00baa40841b37bd6f724c42afef1b54
diff --git a/www/navigator/pkg/COMMENT b/www/navigator/pkg/COMMENT
index 5acc835e887..5a10ead11ad 100644
--- a/www/navigator/pkg/COMMENT
+++ b/www/navigator/pkg/COMMENT
@@ -1 +1 @@
-Netscape navigator standalone browser - Linux/SunOS binary
+Netscape navigator standalone browser - Digital UNIX/Linux/SunOS binary
diff --git a/www/navigator/pkg/MESSAGE b/www/navigator/pkg/MESSAGE
index 1651bf4f5c4..080a15a2f24 100644
--- a/www/navigator/pkg/MESSAGE
+++ b/www/navigator/pkg/MESSAGE
@@ -1,5 +1,8 @@
==========================================================================
-$NetBSD: MESSAGE,v 1.2 1999/06/04 18:07:41 thorpej Exp $
+$NetBSD: MESSAGE,v 1.3 1999/06/14 21:43:39 cgd Exp $
+
+alpha: To run the Digital UNIX version of Netscape, you need COMPAT_OSF1
+ in your kernel, plus a full set of /emul/osf1 libraries.
i386: To run the Linux version of Netscape, you need COMPAT_LINUX and
EXEC_ELF32 in your kernel, plus a full set of /emul/linux libraries.
diff --git a/www/navigator/pkg/PLIST.alpha b/www/navigator/pkg/PLIST.alpha
new file mode 100644
index 00000000000..53b448cf3e7
--- /dev/null
+++ b/www/navigator/pkg/PLIST.alpha
@@ -0,0 +1,2 @@
+@comment $NetBSD: PLIST.alpha,v 1.1 1999/06/14 21:43:39 cgd Exp $
+lib/netscape/navigator-${NS_VERS}/plugins/libnullplugin.so