diff options
author | adrianp <adrianp@pkgsrc.org> | 2004-08-13 11:04:21 +0000 |
---|---|---|
committer | adrianp <adrianp@pkgsrc.org> | 2004-08-13 11:04:21 +0000 |
commit | 2e8018a55032d2bfb4190ae33e7ce49c9f146169 (patch) | |
tree | 1c2693ddce13540f2d0da915ccf50ee0461bfaf6 /security | |
parent | 764c0aa7a3b0003a490b682e038679746677c3cf (diff) | |
download | pkgsrc-2e8018a55032d2bfb4190ae33e7ce49c9f146169.tar.gz |
- Include readline to fix Linux builds
- Add Python support
- Include an extra library on Linux to fix builds on some distros.
Last two issues submitted by Roland Illig in PR# 26620
Diffstat (limited to 'security')
-rw-r--r-- | security/honeyd/Makefile | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/security/honeyd/Makefile b/security/honeyd/Makefile index ecc6f67a5fa..6bebe57325a 100644 --- a/security/honeyd/Makefile +++ b/security/honeyd/Makefile @@ -1,12 +1,12 @@ -# $NetBSD: Makefile,v 1.2 2004/04/30 17:26:23 tv Exp $ +# $NetBSD: Makefile,v 1.3 2004/08/13 11:04:21 adrianp Exp $ # DISTNAME= honeyd-0.8b -PKGREVISION= 1 +PKGREVISION= 2 CATEGORIES= security net MASTER_SITES= http://niels.xtdnet.nl/honeyd/ -MAINTAINER= adrianp@stindustries.net +MAINTAINER= adrianp@NetBSD.org HOMEPAGE= http://niels.xtdnet.nl/honeyd/index.php COMMENT= Small daemon that creates virtual hosts on a network @@ -19,6 +19,9 @@ USE_PKGINSTALL= yes PKG_SYSCONFSUBDIR= honeyd RCD_SCRIPTS= honeyd +CONFIGURE_ENV+= _PATH_PYTHON=${PYTHONBIN} +LIBS.Linux+= -lutil + DIST_CONF_FILES= nmap.assoc xprobe2.conf nmap.prints \ config.ethernet pf.os EGDIR= ${PREFIX}/share/examples/${PKGBASE} @@ -33,6 +36,8 @@ post-install: ${INSTALL_DATA_DIR} ${DOCDIR} ${INSTALL_DATA} ${WRKSRC}/README ${DOCDIR} +.include "../../lang/python/extension.mk" +.include "../../devel/readline/buildlink3.mk" .include "../../devel/libevent/buildlink3.mk" .include "../../devel/ncurses/buildlink3.mk" .include "../../net/libdnet/buildlink3.mk" |