diff options
author | xtraeme <xtraeme> | 2004-04-20 09:15:52 +0000 |
---|---|---|
committer | xtraeme <xtraeme> | 2004-04-20 09:15:52 +0000 |
commit | 55a38ac5e0d12d3f180bc85a3913861c6c52f99d (patch) | |
tree | 3c08c153a48803c467d2634a2a27adf5d3bf26d6 /security/honeyd-arpd/Makefile | |
parent | 5ac91a58f106da80b6b27f81eaa4ad6ef4315ae7 (diff) | |
download | pkgsrc-55a38ac5e0d12d3f180bc85a3913861c6c52f99d.tar.gz |
Initial import of honeyd-arpd-2.0, from pkgsrc-wip packaged by Adrian
Portelli.
This is the ARP daemon for honeyd.
Diffstat (limited to 'security/honeyd-arpd/Makefile')
-rw-r--r-- | security/honeyd-arpd/Makefile | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/security/honeyd-arpd/Makefile b/security/honeyd-arpd/Makefile new file mode 100644 index 00000000000..fa27a69400e --- /dev/null +++ b/security/honeyd-arpd/Makefile @@ -0,0 +1,33 @@ +# $NetBSD: Makefile,v 1.1.1.1 2004/04/20 09:15:52 xtraeme Exp $ +# + +DISTNAME= arpd-0.2 +PKGNAME= honeyd-arpd-0.2 +WRKSRC= ${WRKDIR}/arpd +CATEGORIES= security net +MASTER_SITES= http://niels.xtdnet.nl/honeyd/ + +MAINTAINER= adrianp@stindustries.net +HOMEPAGE= http://niels.xtdnet.nl/honeyd/index.php +COMMENT= ARP daemon for honeyd + +USE_PKGINSTALL= yes +RCD_SCRIPTS= honeydarpd +GNU_CONFIGURE= yes +USE_BUILDLINK3= yes + +CONFIGURE_ARGS+= --with-libevent=${BUILDLINK_PREFIX.libevent} + +do-install: + ${INSTALL_PROGRAM_DIR} ${PREFIX}/sbin + ${INSTALL_MAN_DIR} ${PREFIX}/man/man8 + ${CP} ${WRKSRC}/arpd ${WRKSRC}/honeyd-arpd + ${CP} ${WRKSRC}/arpd.8 ${WRKSRC}/honeyd-arpd.8 + ${INSTALL_PROGRAM} ${WRKSRC}/honeyd-arpd ${PREFIX}/sbin + ${INSTALL_MAN} ${WRKSRC}/honeyd-arpd.8 ${PREFIX}/man/man8 + +.include "../../devel/libevent/buildlink3.mk" +.include "../../net/libdnet/buildlink3.mk" +.include "../../net/libpcap/buildlink3.mk" +.include "../../mk/bsd.pkg.mk" + |