32 lines
705 B
Makefile
32 lines
705 B
Makefile
|
# $NetBSD: Makefile,v 1.1.1.1 2000/09/02 23:13:58 abs Exp $
|
||
|
#
|
||
|
|
||
|
BINNAME= netscape
|
||
|
|
||
|
.include "../navigator/Makefile.common"
|
||
|
|
||
|
DEPENDS+= ns-remote>=1.3:../../www/ns-remote
|
||
|
.if defined(NS_NAVIGATOR) && ${NS_NAVIGATOR} == YES
|
||
|
DEPENDS+= {navigator,communicator}*:../../www/navigator
|
||
|
.else
|
||
|
DEPENDS+= {communicator,navigator}*:../../www/communicator
|
||
|
.endif
|
||
|
|
||
|
DISTFILES= # empty
|
||
|
MASTER_SITES= # empty
|
||
|
|
||
|
EXTRACT_ONLY= # empty
|
||
|
NO_WRKSUBDIR= yes
|
||
|
NO_CHECKSUM= yes
|
||
|
NO_PATCH= yes
|
||
|
NO_CONFIGURE= yes
|
||
|
|
||
|
do-install:
|
||
|
.if defined(NS_NAVIGATOR) && ${NS_NAVIGATOR} == YES
|
||
|
${INSTALL_SCRIPT} ${FILESDIR}/netscape_navigator ${PREFIX}/bin/netscape
|
||
|
.else
|
||
|
${LN} -sf ns-open ${PREFIX}/bin/netscape
|
||
|
.endif
|
||
|
|
||
|
.include "../../mk/bsd.pkg.mk"
|