diff options
author | tron <tron> | 2001-07-23 19:01:49 +0000 |
---|---|---|
committer | tron <tron> | 2001-07-23 19:01:49 +0000 |
commit | 4bea094f456c79c1bd086019e450c3069056fe1d (patch) | |
tree | 53f248e5f333e686245bdd9f323c71d7f46f4ab4 | |
parent | 1b57c32dda2c4479a787be1940771f6cd04eb096 (diff) | |
download | pkgsrc-4bea094f456c79c1bd086019e450c3069056fe1d.tar.gz |
Use Solaris 8 binary on Solaris 8 and newer.
-rw-r--r-- | www/navigator/Makefile.common | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/www/navigator/Makefile.common b/www/navigator/Makefile.common index ed51c18a9f3..5f10f286432 100644 --- a/www/navigator/Makefile.common +++ b/www/navigator/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.40 2001/07/23 18:56:07 tron Exp $ +# $NetBSD: Makefile.common,v 1.41 2001/07/23 19:01:49 tron Exp $ # # Common include file for communicator and navigator packages @@ -24,10 +24,18 @@ MASTER_SITES= ftp://ftp.netscape.org/pub/communicator/${SUB}/ \ # .if ${OPSYS} == "SunOS" && ${MACHINE_ARCH} == "sparc" PLIST_ARCH= solaris-sparc +.if (${OS_VERSION} == 5.5.1) || (${OS_VERSION} == 5.6) || \ + (${OS_VERSION} == 5.7) DISTUNAME= sparc-sun-solaris2.5.1 DIST_DIR_NAME= unsupported/sunos551 WRKNAME= sparc-sun-solaris2.5.1 VENDOR_NAME= Solaris 2.5.1 +.else +DISTUNAME= sparc-sun-solaris2.8 +DIST_DIR_NAME= supported/sunos58 +WRKNAME= sparc-sun-solaris2.8 +VENDOR_NAME= Solaris 2.8 +.endif .if !defined(NS_NO_FLASH) DEPENDS+= ns-flash>4.0:../../graphics/ns-flash .endif |