diff options
author | ben <ben@pkgsrc.org> | 2006-04-02 23:54:01 +0000 |
---|---|---|
committer | ben <ben@pkgsrc.org> | 2006-04-02 23:54:01 +0000 |
commit | 74e5ee82fc6ed9defd929d0736d1fccd0e66e018 (patch) | |
tree | 6367df429e36ffdc3abed81dbc7682e75df18d8b | |
parent | 5b15e9e99ffe36547f5b3610cf7cad0267c10118 (diff) | |
download | pkgsrc-74e5ee82fc6ed9defd929d0736d1fccd0e66e018.tar.gz |
Add support for NetBSD/amd64 with COMPAT_NETBSD32.
Used patch from Nicolas Joly in PR#33135.
-rw-r--r-- | security/fprot-workstation-bin/Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/security/fprot-workstation-bin/Makefile b/security/fprot-workstation-bin/Makefile index efbeb5fc0d0..84c3716c682 100644 --- a/security/fprot-workstation-bin/Makefile +++ b/security/fprot-workstation-bin/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.29 2006/03/04 21:30:33 jlam Exp $ +# $NetBSD: Makefile,v 1.30 2006/04/02 23:54:01 ben Exp $ # DISTNAME= #defined @@ -15,7 +15,8 @@ DEPENDS+= unzip-[0-9]*:../../archivers/unzip PKG_INSTALLATION_TYPES= overwrite pkgviews -ONLY_FOR_PLATFORM= NetBSD-*-i386 Linux-*-i386 SunOS-*-sparc +ONLY_FOR_PLATFORM= NetBSD-*-i386 NetBSD-[2-9]*-x86)64 \ + Linux-*-i386 SunOS-*-sparc RESTRICTED= "Redistribution not permitted" NO_SRC_ON_CDROM= ${RESTRICTED} NO_BIN_ON_CDROM= ${RESTRICTED} @@ -53,6 +54,10 @@ MASTER_SITES= ftp://ftp.f-prot.com/pub/solaris/ DISTNAME= fp-solaris-sparc-ws-${FPVER} .endif +.if (${OPSYS} == "NetBSD" && ${MACHINE_ARCH} == "x86_64") +DEPENDS+= netbsd32_compat16>=1.0:../../emulators/netbsd32_compat16 +.endif + DIST_SUBDIR= ${DISTNAME} SUBST_CLASSES+= f-prot |