diff options
author | adrianp <adrianp@pkgsrc.org> | 2005-01-14 08:36:54 +0000 |
---|---|---|
committer | adrianp <adrianp@pkgsrc.org> | 2005-01-14 08:36:54 +0000 |
commit | 91d20773c4738024b3e33dfd564e9615875cb349 (patch) | |
tree | 9c5f3e35e22b733763d6662b20408043ae959d6c /security/ike-scan/Makefile | |
parent | bff1eecc9779dce80a073bfe6ca8980e457b7227 (diff) | |
download | pkgsrc-91d20773c4738024b3e33dfd564e9615875cb349.tar.gz |
- Update to 1.7
- Add bl3 and openssl support
- Fix paths in man pages
- Install extra documentation
- Remove un-needed options from pkgsrc Makefile
Lots of changes/bugfixes from 1.6 including:
psk-crack.c: New program to crack Aggressive Mode Pre-Shared Keys
using dictionary attack. This uses the output from "ike-scan -P"
together with a dictionary.
Diffstat (limited to 'security/ike-scan/Makefile')
-rw-r--r-- | security/ike-scan/Makefile | 19 |
1 files changed, 16 insertions, 3 deletions
diff --git a/security/ike-scan/Makefile b/security/ike-scan/Makefile index c7fe7ec26b4..b66a168ae6d 100644 --- a/security/ike-scan/Makefile +++ b/security/ike-scan/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.2 2004/02/28 15:29:20 taca Exp $ +# $NetBSD: Makefile,v 1.3 2005/01/14 08:36:54 adrianp Exp $ # -DISTNAME= ike-scan-1.6 +DISTNAME= ike-scan-1.7 CATEGORIES= security MASTER_SITES= http://www.nta-monitor.com/ike-scan/download/ @@ -9,7 +9,20 @@ MAINTAINER= tech-pkg@NetBSD.org HOMEPAGE= http://www.nta-monitor.com/ike-scan/ COMMENT= Fingerprinting IKE implementation -HAS_CONFIGURE= YES GNU_CONFIGURE= YES +USE_BUILDLINK3= YES +CONFIGURE_ARGS+= --with-openssl + +SUBST_CLASSES= man +SUBST_STAGE.man= post-patch +SUBST_FILES.man= ike-scan.1 +SUBST_SED.man= -e "s|/usr/local|${PREFIX}|g" +SUBST_MESSAGE.man= "Fixing man pages." + +post-install: + ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/ike-scan + ${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/ike-scan/README + +.include "../../security/openssl/buildlink3.mk" .include "../../mk/bsd.pkg.mk" |