diff options
author | rillig <rillig@pkgsrc.org> | 2019-09-12 21:04:15 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2019-09-12 21:04:15 +0000 |
commit | cdf72eadaae6641d6fe2b6ec93d9532089e28fb8 (patch) | |
tree | e542342dea9c9ae82d65741d2e299b5f472f4ca8 /net | |
parent | 943b3532cd86b59900f36d330a502f6537ee0e69 (diff) | |
download | pkgsrc-cdf72eadaae6641d6fe2b6ec93d9532089e28fb8.tar.gz |
net/flow-tools: fix some pkglint warnings
Diffstat (limited to 'net')
-rw-r--r-- | net/flow-tools/Makefile | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/net/flow-tools/Makefile b/net/flow-tools/Makefile index 98785b0a7e3..0fb966d633e 100644 --- a/net/flow-tools/Makefile +++ b/net/flow-tools/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.38 2019/04/25 07:33:10 maya Exp $ +# $NetBSD: Makefile,v 1.39 2019/09/12 21:04:15 rillig Exp $ DISTNAME= flow-tools-0.68 PKGREVISION= 9 @@ -15,7 +15,7 @@ GNU_CONFIGURE= YES CPPFLAGS.SunOS+= -Du_int8_t=uint8_t -Du_int32_t=uint32_t PKG_SYSCONFSUBDIR= flow-tools -CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR:Q} +CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR} EGDIR= ${PREFIX}/share/examples/flow-tools MAKE_DIRS+= ${PKG_SYSCONFDIR}/sym @@ -27,7 +27,7 @@ CONF_FILES+= ${EGDIR}/sym/${_f_} ${PKG_SYSCONFDIR}/sym/${_f_} .endfor MESSAGE_SUBST+= EGDIR=${EGDIR} -PKG_OPTIONS_VAR= PKG_OPTIONS.flow-tools +PKG_OPTIONS_VAR= PKG_OPTIONS.flow-tools PKG_OPTIONS_OPTIONAL_GROUPS= database PKG_SUPPORTED_OPTIONS= python PKG_OPTIONS_GROUP.database= mysql pgsql @@ -43,7 +43,7 @@ CONFIGURE_ARGS+= --with-mysql=${BUILDLINK_PREFIX.mysql-client} # PostgreSQL support. .if !empty(PKG_OPTIONS:Mpgsql) . include "../../mk/pgsql.buildlink3.mk" -CONFIGURE_ARGS+= --with-pgsql=${PGSQL_PREFIX:Q} +CONFIGURE_ARGS+= --with-pgsql=${PGSQL_PREFIX} .endif # Python scripts support. @@ -52,10 +52,10 @@ PLIST_VARS+= python . include "../../lang/python/application.mk" REPLACE_PYTHON= bin/flow-rpt2rrd bin/flow-log2rrd bin/flow-rptfmt -PLIST.python= yes +PLIST.python= yes post-install: -. for s in flow-rpt2rrd flow-log2rrd flow-rptfmt +. for s in flow-rpt2rrd flow-log2rrd flow-rptfmt ${INSTALL_SCRIPT} ${WRKSRC}/bin/${s} ${PREFIX}/bin/${s} ${INSTALL_MAN} ${WRKSRC}/docs/${s}.1 ${PREFIX}/${PKGMANDIR}/man1/${s}.1 . endfor @@ -65,7 +65,7 @@ post-install: # Order is important here or else dependencies requiring docbook-to-man/jade # will be triggered post-patch: - ${_PKG_SILENT}${_PKG_DEBUG} \ + ${RUN} \ cd ${WRKSRC}/docs && \ for m in flow-*.1.in; do \ h=`${BASENAME} $${m} .1.in`.html.in; \ |