diff options
author | David E. O'Brien <obrien@FreeBSD.org> | 2000-01-07 18:40:49 +0000 |
---|---|---|
committer | David E. O'Brien <obrien@FreeBSD.org> | 2000-01-07 18:40:49 +0000 |
commit | 81e06466a928a6ab0437d1f8978516ec68a2425c (patch) | |
tree | e665f2752895688e4947fa2e387a3d6ef2300707 /www/bsdi-netscape47-communicator | |
parent | ee3a2d65c6e365344dfb08304ad325ecfd1c028b (diff) | |
download | ports-81e06466a928a6ab0437d1f8978516ec68a2425c.tar.gz ports-81e06466a928a6ab0437d1f8978516ec68a2425c.zip |
Notes
Diffstat (limited to 'www/bsdi-netscape47-communicator')
-rw-r--r-- | www/bsdi-netscape47-communicator/Makefile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/www/bsdi-netscape47-communicator/Makefile b/www/bsdi-netscape47-communicator/Makefile index 7777b9e48eda..a42901864cb5 100644 --- a/www/bsdi-netscape47-communicator/Makefile +++ b/www/bsdi-netscape47-communicator/Makefile @@ -6,12 +6,25 @@ # $FreeBSD$ # +.include <bsd.port.pre.mk> + +.if ${ARCH} == "i386" MASTER_SITES?= ftp://ftp.netscape.com./pub/communicator/english/4.7/unix/unsupported/freebsd/complete_install/ DISTFILES?= communicator-v47-export.x86-unknown-freebsd.tar.gz +.elif ${ARCH} == "alpha" +MASTER_SITES?= ftp://ftp.netscape.com./pub/communicator/english/4.7/unix/supported/dec_unix40/complete_install/ +DISTFILES?= communicator-v47-export.alpha-dec-osf4.0.tar.gz +.endif + +ONLY_FOR_ARCHS= i386 alpha MASTERDIR= ${.CURDIR}/../netscape4-communicator NO_LATEST_LINK= yes +.if ${ARCH} == "i386" WRKSRC?= ${WRKDIR}/${BROWSER}-v47.x86-unknown-freebsd +.elif ${ARCH} == "alpha" +WRKSRC?= ${WRKDIR}/${BROWSER}-v47.alpha-dec-osf4.0 +.endif BROWSER_VER= 4.7 INFILE_HEAD?= 'Communicator,4.7.0.19990915' |