diff options
author | Jordan K. Hubbard <jkh@FreeBSD.org> | 1996-03-29 18:51:16 +0000 |
---|---|---|
committer | Jordan K. Hubbard <jkh@FreeBSD.org> | 1996-03-29 18:51:16 +0000 |
commit | 09287c1245a0e378da093f074ad58e8e2d7a699f (patch) | |
tree | 17e3faeea695930635d93f81b82f3358b314fd66 /www/netscape3/scripts | |
parent | now provides a.out and ELF libraries. (diff) |
Bring in the new netscape 3.0b2 port (code named "atlas" apparently).
Brings JAVA support to FreeBSD (well, BSDI, but who's counting? :)
Diffstat (limited to 'www/netscape3/scripts')
-rw-r--r-- | www/netscape3/scripts/configure | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/www/netscape3/scripts/configure b/www/netscape3/scripts/configure new file mode 100644 index 000000000000..6dae4b2441f1 --- /dev/null +++ b/www/netscape3/scripts/configure @@ -0,0 +1,12 @@ +#!/bin/sh + +if [ ! -f ${WRKSRC}/netscape.bin ] ; then + mv ${WRKSRC}/netscape ${WRKSRC}/netscape.bin +fi + +sed -e "s;@X11BASE@;${X11BASE};g" -e "s;@PREFIX@;${PREFIX};g" \ + ${FILESDIR}/netscape.sh >${WRKSRC}/netscape +chmod +x ${WRKSRC}/netscape + +cp ${FILESDIR}/Makefile ${WRKSRC} +cp ${FILESDIR}/mailcap ${WRKSRC} |