diff options
author | Mark Felder <feld@FreeBSD.org> | 2017-06-12 20:27:31 +0000 |
---|---|---|
committer | Mark Felder <feld@FreeBSD.org> | 2017-06-12 20:27:31 +0000 |
commit | 362798bad50835d988d6699c3cfbaa5a864d57ca (patch) | |
tree | 654b8aa92bb8812e5b9f8151c7287b48f0959718 /net-mgmt | |
parent | * Updated to 1.2.4 (diff) |
Fix LIB_DEPENDS of ports which link to libpkg.so
spine and snmpd link to libpkg.so, but it is not properly declared in
the port.
MFH: 2017Q2
Diffstat (limited to 'net-mgmt')
-rw-r--r-- | net-mgmt/cacti-spine/Makefile | 4 | ||||
-rw-r--r-- | net-mgmt/net-snmp/Makefile | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/net-mgmt/cacti-spine/Makefile b/net-mgmt/cacti-spine/Makefile index 54abe2085482..21f4181d6ff1 100644 --- a/net-mgmt/cacti-spine/Makefile +++ b/net-mgmt/cacti-spine/Makefile @@ -3,6 +3,7 @@ PORTNAME= spine PORTVERSION= 1.1.10 +PORTREVISION= 1 CATEGORIES= net-mgmt MASTER_SITES= http://www.cacti.net/downloads/${PORTNAME}/ DISTNAME= cacti-${PORTNAME}-${PORTVERSION} @@ -14,7 +15,8 @@ LICENSE= LGPL21+ LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= help2man:misc/help2man -LIB_DEPENDS= libnetsnmp.so:net-mgmt/net-snmp +LIB_DEPENDS= libnetsnmp.so:net-mgmt/net-snmp \ + libpkg.so:ports-mgmt/pkg GNU_CONFIGURE= YES CONFIGURE_ARGS+=--with-mysql=${LOCALBASE} --with-snmp=${LOCALBASE} diff --git a/net-mgmt/net-snmp/Makefile b/net-mgmt/net-snmp/Makefile index e9e9c13e5bf8..c58a635b4794 100644 --- a/net-mgmt/net-snmp/Makefile +++ b/net-mgmt/net-snmp/Makefile @@ -3,7 +3,7 @@ PORTNAME= snmp PORTVERSION= 5.7.3 -PORTREVISION= 16 +PORTREVISION= 17 CATEGORIES= net-mgmt ipv6 MASTER_SITES= SF/net-${PORTNAME}/net-${PORTNAME}/${PORTVERSION} PKGNAMEPREFIX= net- @@ -15,6 +15,8 @@ COMMENT= Extendable SNMP implementation LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/COPYING +LIB_DEPENDS= libpkg.so:ports-mgmt/pkg + OPTIONS_DEFINE= IPV6 MFD_REWRITES PERL PERL_EMBEDDED PYTHON DUMMY TKMIB \ MYSQL AX_SOCKONLY UNPRIVILEGED SMUX DOCS JAIL AX_DISABLE_TRAP \ TLS |