diff options
author | ache <ache@FreeBSD.org> | 1997-04-09 15:12:15 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 1997-04-09 15:12:15 +0000 |
commit | 48ab14a7fb9f6119aeba57a860dc02363049e1a7 (patch) | |
tree | b63ca5cdf6e52216c2bff6a4f19a5833bb0656da /www/seamonkey/Makefile | |
parent | 51e506d7ff830dc7395a2bd6d1f00bee43224b92 (diff) | |
download | FreeBSD-ports-48ab14a7fb9f6119aeba57a860dc02363049e1a7.zip FreeBSD-ports-48ab14a7fb9f6119aeba57a860dc02363049e1a7.tar.gz |
Upgrade to 4.0b3 (note: Java not work for unknown reason)
Diffstat (limited to 'www/seamonkey/Makefile')
-rw-r--r-- | www/seamonkey/Makefile | 35 |
1 files changed, 29 insertions, 6 deletions
diff --git a/www/seamonkey/Makefile b/www/seamonkey/Makefile index 622fea5..e2e3d58 100644 --- a/www/seamonkey/Makefile +++ b/www/seamonkey/Makefile @@ -1,20 +1,43 @@ # New ports collection makefile for: netscape -# Version required: 4.0b2 +# Version required: 4.0b3 # Date created: 24 Feb 1997 # Whom: ache # -# $Id: Makefile,v 1.16 1996/12/08 01:04:24 max Exp $ +# $Id: Makefile,v 1.1.1.1 1997/02/24 19:00:29 ache Exp $ # -DISTNAME= netscape-4.0b2 +DISTNAME= netscape-4.0b3 CATEGORIES= www -MASTER_SITES= ftp://ftp.netscape.com/pub/communicator/4.0/4.0b2/unix/other/ -DISTFILES= netscape-v40b2-export.x86-unknown-bsd.tar.gz +MASTER_SITES= ftp://ftp.netscape.com/pub/communicator/4.0/4.0b3/unix/other/ +DISTFILES= communicator-v40b3-export.x86-unknown-bsd.tar.gz +NO_WRKSUBDIR= Yes +NO_BUILD= Yes + +NDIR= ${PREFIX}/lib/netscape +NLSDIR= ${X11BASE}/lib/X11/nls +BINDIR= ${PREFIX}/bin MAINTAINER= ache@FreeBSD.ORG RESTRICTED= "Commercial software" -NO_WRKSUBDIR= yes + +do-install: + cd ${WRKSRC} && yes "" | \ + NSHOME="${NDIR}" ./ns-install + mv ${NDIR}/netscape ${NDIR}/netscape.bin + ${INSTALL_SCRIPT} ${WRKSRC}/netscape ${BINDIR} + if [ ! -f ${NDIR}/mailcap ] ; then \ + ${INSTALL_DATA} ${FILESDIR}/mailcap ${NDIR}; \ + fi + -test -d ${NLSDIR} || mkdir -p ${NLSDIR} + if [ ! -f ${NLSDIR}/C ] ; then \ + ${INSTALL_DATA} ${NDIR}/nls/C ${NLSDIR}; \ + fi + if [ ! -f ${NLSDIR}/nls.dir ] ; then \ + ${INSTALL_DATA} ${NDIR}/nls/nls.dir ${NLSDIR}; \ + fi + rm -rf ${NDIR}/nls ${NDIR}/movemail-src ${NDIR}/XKeysymDB + chown -R bin.bin ${NDIR} post-install: @${CAT} ${PKGDIR}/DESCR |