diff options
author | schmonz <schmonz@pkgsrc.org> | 2002-12-07 02:38:52 +0000 |
---|---|---|
committer | schmonz <schmonz@pkgsrc.org> | 2002-12-07 02:38:52 +0000 |
commit | 0a1bd5acad4638865116c0da61447ceb86ee6ef4 (patch) | |
tree | 1de4a04cf479873e6e59c8e7b26df68132cd5628 /www/navigator | |
parent | a2849a9dcac8e838b0156047f813c71851ab8a56 (diff) | |
download | pkgsrc-0a1bd5acad4638865116c0da61447ceb86ee6ef4.tar.gz |
Replace IGNORE with PKG_FAIL_REASON or PKG_SKIP_REASON as appropriate.
Diffstat (limited to 'www/navigator')
-rw-r--r-- | www/navigator/Makefile.common | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/www/navigator/Makefile.common b/www/navigator/Makefile.common index 42c3c1482aa..0695c6dbd10 100644 --- a/www/navigator/Makefile.common +++ b/www/navigator/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.56 2002/11/25 17:45:03 wiz Exp $ +# $NetBSD: Makefile.common,v 1.57 2002/12/07 02:39:07 schmonz Exp $ # # Common include file for communicator and navigator packages @@ -46,7 +46,7 @@ DEPENDS+= ns-flash>4.0:../../graphics/ns-flash # .elif (${MACHINE_ARCH} == "alpha") .if !exists(/emul/osf1/sbin/loader) -IGNORE= "${PKGNAME} requires Digital UNIX libraries - see compat_osf1(8)" +PKG_FAIL_REASON= "${PKGNAME} requires Digital UNIX libraries - see compat_osf1(8)" .endif NS_VERS= 4.78 PKGNAME= ${BINNAME}-${NS_VERS} @@ -79,7 +79,7 @@ DEPENDS+= ns-flash>4.0:../../graphics/ns-flash # .elif (((${MACHINE_ARCH} == "sparc") || (${MACHINE_ARCH} == "sparc64")) && defined(NS_USE_SUNOS)) .if !exists(/emul/sunos/usr/lib/ld.so) -IGNORE= "${PKGNAME} requires SunOS libraries - see compat_sunos(8)" +PKG_FAIL_REASON= "${PKGNAME} requires SunOS libraries - see compat_sunos(8)" .endif NS_VERS= 4.61 PKGNAME= ${BINNAME}-${NS_VERS} @@ -95,7 +95,7 @@ MASTER_SITES= ftp://archive.netscape.com/archive/communicator/${SUB}/ .elif (${MACHINE_ARCH} == "sparc") || (${MACHINE_ARCH} == "sparc64") PLIST_ARCH= solaris-sparc .if !exists(/emul/svr4/usr/lib/ld.so) -IGNORE= "${PKGNAME} requires Solaris libraries - see compat_svr4(8)" +PKG_FAIL_REASON= "${PKGNAME} requires Solaris libraries - see compat_svr4(8)" .endif NS_VERS= 4.79 PKGNAME= ${BINNAME}-${NS_VERS} @@ -106,9 +106,9 @@ VENDOR_NAME= Solaris 2.5.1 # .elif (${MACHINE_ARCH} == "powerpc") .if (${BINNAME} == "navigator") -IGNORE= "There is no navigator-only package for PowerPC" -IGNORE+= "platform. Please cd to ../communicator and" -IGNORE+= "install communicator package instead." +PKG_FAIL_REASON= "There is no navigator-only package for PowerPC" +PKG_FAIL_REASON+= "platform. Please cd to ../communicator and" +PKG_FAIL_REASON+= "install communicator package instead." .endif DEPENDS+= suse_compat>=6.4:../../emulators/${SUSE_DIR_PREFIX}_compat DEPENDS+= suse_x11>=6.4:../../emulators/${SUSE_DIR_PREFIX}_x11 |