From owner-dev-commits-ports-all@freebsd.org Sat Apr 24 06:45:53 2021 Return-Path: Delivered-To: dev-commits-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 141BD5F3C90; Sat, 24 Apr 2021 06:45:53 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4FS1rc67Z3z4Zt8; Sat, 24 Apr 2021 06:45:52 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id C41B61C40F; Sat, 24 Apr 2021 06:45:52 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.16.1/8.16.1) with ESMTP id 13O6jqNM068741; Sat, 24 Apr 2021 06:45:52 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 13O6jqVX068740; Sat, 24 Apr 2021 06:45:52 GMT (envelope-from git) Date: Sat, 24 Apr 2021 06:45:52 GMT Message-Id: <202104240645.13O6jqVX068740@gitrepo.freebsd.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org From: Tobias Kortkamp Subject: git: 3455b276e6df - main - net-mgmt/pmacct: Use opt_LIB_DEPENDS MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: tobik X-Git-Repository: ports X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: 3455b276e6dfdef018cc578e5b6802963118af71 Auto-Submitted: auto-generated X-BeenThere: dev-commits-ports-all@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Commit messages for all branches of the ports repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 24 Apr 2021 06:45:53 -0000 The branch main has been updated by tobik: URL: https://cgit.FreeBSD.org/ports/commit/?id=3455b276e6dfdef018cc578e5b6802963118af71 commit 3455b276e6dfdef018cc578e5b6802963118af71 Author: Tobias Kortkamp AuthorDate: 2021-04-22 08:10:00 +0000 Commit: Tobias Kortkamp CommitDate: 2021-04-24 06:46:11 +0000 net-mgmt/pmacct: Use opt_LIB_DEPENDS --- net-mgmt/pmacct/Makefile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/net-mgmt/pmacct/Makefile b/net-mgmt/pmacct/Makefile index 30979fe4716c..314230e3e2d4 100644 --- a/net-mgmt/pmacct/Makefile +++ b/net-mgmt/pmacct/Makefile @@ -18,7 +18,7 @@ GNU_CONFIGURE= yes OPTIONS_DEFINE= MYSQL PGSQL SQLITE3 LAYER2 DEBUG GEOIP2 \ DOCS PLABEL RABBITMQ REDIS KAFKA AVRO EXAMPLES OPTIONS_DEFAULT=LAYER2 -OPTIONS_SUB= 1 +OPTIONS_SUB= yes AVRO_DESC= Enable avro support GEOIP2_DESC= Enable GeoIPv2 (libmaxminddb) support @@ -48,19 +48,19 @@ LAYER2_CONFIGURE_ENABLE= l2 PLABEL_CONFIGURE_ENABLE= plabel DEBUG_CONFIGURE_ENABLE= debug -RABBITMQ_VARS= LIB_DEPENDS+=librabbitmq.so:net/rabbitmq-c-devel +RABBITMQ_LIB_DEPENDS= librabbitmq.so:net/rabbitmq-c-devel RABBITMQ_CONFIGURE_ENABLE= rabbitmq -REDIS_VARS= LIB_DEPENDS+=libhiredis.so:databases/hiredis +REDIS_LIB_DEPENDS= libhiredis.so:databases/hiredis REDIS_CONFIGURE_ENABLE= redis -KAFKA_VARS= LIB_DEPENDS+=librdkafka.so:net/librdkafka +KAFKA_LIB_DEPENDS= librdkafka.so:net/librdkafka KAFKA_CONFIGURE_ENABLE= kafka -AVRO_VARS= LIB_DEPENDS+=libavro.so:devel/avro-c +AVRO_LIB_DEPENDS= libavro.so:devel/avro-c AVRO_CONFIGURE_ENABLE= avro -GEOIP2_VARS= LIB_DEPENDS+=libmaxminddb.so:net/libmaxminddb +GEOIP2_LIB_DEPENDS= libmaxminddb.so:net/libmaxminddb GEOIP2_CONFIGURE_ENABLE= geoipv2 .include