summaryrefslogtreecommitdiff
path: root/net/lldpd
diff options
context:
space:
mode:
authorrillig <rillig@pkgsrc.org>2019-11-03 11:45:28 +0000
committerrillig <rillig@pkgsrc.org>2019-11-03 11:45:28 +0000
commit6d1d2ca41e824dc78d236dd7507b72a54ede5a88 (patch)
tree97ee76f3981200121bbba776c699b2cf57cc3af5 /net/lldpd
parentc541c77da9d5d98e1ba6000a10bd6ad0d291105c (diff)
downloadpkgsrc-6d1d2ca41e824dc78d236dd7507b72a54ede5a88.tar.gz
net: align variable assignments
pkglint -Wall -F --only aligned --only indent -r No manual corrections.
Diffstat (limited to 'net/lldpd')
-rw-r--r--net/lldpd/Makefile4
-rw-r--r--net/lldpd/options.mk10
2 files changed, 7 insertions, 7 deletions
diff --git a/net/lldpd/Makefile b/net/lldpd/Makefile
index c1567aa4bb2..18f7a437fd3 100644
--- a/net/lldpd/Makefile
+++ b/net/lldpd/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.22 2019/08/11 13:22:10 wiz Exp $
+# $NetBSD: Makefile,v 1.23 2019/11/03 11:45:40 rillig Exp $
DISTNAME= lldpd-1.0.1
PKGREVISION= 2
@@ -24,7 +24,7 @@ CONFIGURE_ARGS+= --with-privsep-chroot=${PKG_HOME._lldpd}
CONFIGURE_ARGS+= --disable-hardening
# run/lldpd.socket is created under this directory
# (the default is ${PRERIX}/var, changed since 0.7.9)
-CONFIGURE_ARGS+= --localstatedir=${VARBASE}
+CONFIGURE_ARGS+= --localstatedir=${VARBASE}
BUILD_DEFS+= VARBASE
EGDIR= ${PREFIX}/share/examples/${PKGBASE}
diff --git a/net/lldpd/options.mk b/net/lldpd/options.mk
index 3600c1fe0a0..29dd4c59d9c 100644
--- a/net/lldpd/options.mk
+++ b/net/lldpd/options.mk
@@ -1,4 +1,4 @@
-# $NetBSD: options.mk,v 1.2 2017/02/07 12:13:12 wiz Exp $
+# $NetBSD: options.mk,v 1.3 2019/11/03 11:45:40 rillig Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.lldpd
PKG_SUPPORTED_OPTIONS= json snmp xml
@@ -6,18 +6,18 @@ PKG_SUGGESTED_OPTIONS= json snmp xml
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Mjson)
-. include "../../textproc/jansson/buildlink3.mk"
+. include "../../textproc/jansson/buildlink3.mk"
CONFIGURE_ARGS+= --with-json
.endif
.if !empty(PKG_OPTIONS:Msnmp)
-. include "../../net/net-snmp/buildlink3.mk"
+. include "../../net/net-snmp/buildlink3.mk"
USE_TOOLS+= perl
-. include "../../lang/perl5/buildlink3.mk"
+. include "../../lang/perl5/buildlink3.mk"
CONFIGURE_ARGS+= --with-snmp
.endif
.if !empty(PKG_OPTIONS:Mxml)
-. include "../../textproc/libxml2/buildlink3.mk"
+. include "../../textproc/libxml2/buildlink3.mk"
CONFIGURE_ARGS+= --with-xml
.endif