diff options
author | edwin <edwin@FreeBSD.org> | 2003-09-04 08:58:27 +0000 |
---|---|---|
committer | edwin <edwin@FreeBSD.org> | 2003-09-04 08:58:27 +0000 |
commit | 3637258ab2501e253c0eff7a985f7a861033af3b (patch) | |
tree | 6b8d80bba6c741e81a176130716055991228efd8 /security/firewalk/Makefile | |
parent | 8c66dfe2cb9339a9c0c63715f64e3481b84dfb27 (diff) | |
download | FreeBSD-ports-3637258ab2501e253c0eff7a985f7a861033af3b.zip FreeBSD-ports-3637258ab2501e253c0eff7a985f7a861033af3b.tar.gz |
port update: security/firewalk 1.0 -> 5.0
I'll be happy to take maintainership over this one. I removed
the BROKEN notice on versions older than 3, as this was
completely rewritten and I feel somewhat optimistic today.
Please tell me if this is proves wrong. The patch to change
the Makefile is also not required anymore, I hope the
configure is doing the right magic, as I haven't tested it
when PREFIX!=/usr/local
PR: ports/54473
Submitted by: Yonatan@xpert.com <Yonatan@xpert.com>
Diffstat (limited to 'security/firewalk/Makefile')
-rw-r--r-- | security/firewalk/Makefile | 40 |
1 files changed, 23 insertions, 17 deletions
diff --git a/security/firewalk/Makefile b/security/firewalk/Makefile index e231651..ac8f463 100644 --- a/security/firewalk/Makefile +++ b/security/firewalk/Makefile @@ -1,4 +1,4 @@ -# New ports collection makefile for: slush +# New ports collection makefile for: firewalk # Date created: Sun May 3, 1999 # Whom: shipley@dis.org # @@ -6,28 +6,34 @@ # PORTNAME= firewalk -PORTVERSION= 1.0 +PORTVERSION= 5.0 CATEGORIES= security MASTER_SITES= http://www.packetfactory.net/firewalk/dist/ +EXTRACT_SUFX= .tgz -MAINTAINER= ports@FreeBSD.org -COMMENT= A network auditing tool +MAINTAINER= Yonatan@xpert.com +COMMENT= A remote firewall auditing tool -BUILD_DEPENDS= ${LOCALBASE}/lib/libnet.a:${PORTSDIR}/net/libnet +BUILD_DEPENDS= ${LOCALBASE}/lib/libdnet.a:${PORTSDIR}/net/libdnet +RUN_DEPENDS= ${BUILD_DEPENDS} -WRKSRC= ${WRKDIR}/Firewalk-${PORTVERSION} +WRKSRC= ${WRKDIR}/Firewalk GNU_CONFIGURE= yes CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ LDFLAGS="-L${LOCALBASE}/lib" -CONFIGURE_ARGS= --with-gtk=no - -MAN1= firewalk.1 - -.include <bsd.port.pre.mk> - -.if ${OSVERSION} <= 300000 -BROKEN= may not build -.endif - -.include <bsd.port.post.mk> +MAN8= firewalk.8 + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/src/firewalk ${PREFIX}/bin/ + ${INSTALL_MAN} ${WRKSRC}/man/firewalk.8 ${MANPREFIX}/man/man8/ +. if !defined(NOPORTDOCS) + ${MKDIR} ${DOCSDIR} +. for i in README BUGS TODO CHANGES LICENSE + ${INSTALL_DATA} ${WRKSRC}/BUGS ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/TODO ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR} +. endfor +. endif + +.include <bsd.port.mk> |