summaryrefslogtreecommitdiff
path: root/security/honeyd
diff options
context:
space:
mode:
authorrillig <rillig>2005-12-05 20:49:47 +0000
committerrillig <rillig>2005-12-05 20:49:47 +0000
commit472dafdd2e1560bc21a20b89efd58a911dc44409 (patch)
treedac5b1dd14794d86b061d26b9503adb2552ed3f8 /security/honeyd
parent55a30558d8942bf85417fab3ed26bec7a7c3aae6 (diff)
downloadpkgsrc-472dafdd2e1560bc21a20b89efd58a911dc44409.tar.gz
Fixed pkglint warnings. The warnings are mostly quoting issues, for
example MAKE_ENV+=FOO=${BAR} is changed to MAKE_ENV+=FOO=${BAR:Q}. Some other changes are outlined in http://mail-index.netbsd.org/tech-pkg/2005/12/02/0034.html
Diffstat (limited to 'security/honeyd')
-rw-r--r--security/honeyd/Makefile3
-rw-r--r--security/honeyd/options.mk4
2 files changed, 3 insertions, 4 deletions
diff --git a/security/honeyd/Makefile b/security/honeyd/Makefile
index 12abf722d73..80764429f0f 100644
--- a/security/honeyd/Makefile
+++ b/security/honeyd/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.11 2005/09/16 14:46:43 tv Exp $
+# $NetBSD: Makefile,v 1.12 2005/12/05 20:50:56 rillig Exp $
#
DISTNAME= honeyd-1.0
@@ -31,7 +31,6 @@ DOCDIR= ${PREFIX}/share/doc/${PKGBASE}
.for f in ${DIST_CONF_FILES}
CONF_FILES+= ${EGDIR}/${f} ${PKG_SYSCONFDIR}/${f}
.endfor
-.undef f
.include "../../devel/libevent/buildlink3.mk"
.include "../../devel/ncurses/buildlink3.mk"
diff --git a/security/honeyd/options.mk b/security/honeyd/options.mk
index 39b1e4fe920..9b9cc83397b 100644
--- a/security/honeyd/options.mk
+++ b/security/honeyd/options.mk
@@ -1,4 +1,4 @@
-# $NetBSD: options.mk,v 1.2 2005/04/20 14:34:31 wiz Exp $
+# $NetBSD: options.mk,v 1.3 2005/12/05 20:50:56 rillig Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.honeyd
PKG_SUPPORTED_OPTIONS= python rrdtool
@@ -10,7 +10,7 @@ PKG_SUPPORTED_OPTIONS= python rrdtool
###
.if !empty(PKG_OPTIONS:Mpython)
. include "../../lang/python/extension.mk"
-CONFIGURE_ENV+= _PATH_PYTHON=${PYTHONBIN}
+CONFIGURE_ENV+= _PATH_PYTHON=${PYTHONBIN:Q}
.else
CONFIGURE_ARGS+= --without-python
.endif