Index: head/net-mgmt/pmacct/Makefile =================================================================== --- head/net-mgmt/pmacct/Makefile (revision 503737) +++ head/net-mgmt/pmacct/Makefile (revision 503738) @@ -1,170 +1,169 @@ # Created by: Kirill Ponomarew # $FreeBSD$ PORTNAME= pmacct DISTVERSION= 1.7.3 CATEGORIES= net-mgmt MASTER_SITES= http://www.pmacct.net/ MAINTAINER= pi@FreeBSD.org COMMENT= Accounting and aggregation tool for IPv4 and IPv6 traffic LICENSE= GPLv2 BROKEN_aarch64= fails to build: undefined reference to sbrk USES= libtool USE_RC_SUBR= pmacctd nfacctd sfacctd SUB_FILES= pkg-message GNU_CONFIGURE= yes CPPFLAGS+= "-I${LOCALBASE}/include" LDFLAGS+= "-L${LOCALBASE}/lib" OPTIONS_DEFINE= MYSQL PGSQL SQLITE3 THREADS LAYER2 IPV6 DEBUG GEOIP2 \ DOCS PLABEL RABBITMQ KAFKA JANSSON AVRO EXAMPLES OPTIONS_DEFAULT=MMAP LAYER2 THREADS SHARED AVRO_DESC= Enable avro support GEOIP2_DESC= Enable GeoIPv2 (libmaxminddb) support JANSSON_DESC= Enable Jansson support KAFKA_DESC= Enable Kafka support LAYER2_DESC= Enable Layer-2 support: MAC addresses and VLANs # Requires libnetfilter_log port/package # NFLOG_DESC= Enable NFLOG support # Requires legacy mongo-c-driver version 0.8 which is not available # MONGO_DESC= Enable MongoDB support PLABEL_DESC= Enable IP prefix labels RABBITMQ_DESC= Enable RabbitMQ/AMQP support SQLITE3_DESC= Enable SQLite3 support .include .if ${PORT_OPTIONS:MMYSQL} USES+= mysql CONFIGURE_ARGS+=--enable-mysql PLIST_SUB+= WITH_MYSQL="" .else CONFIGURE_ARGS+=--disable-mysql PLIST_SUB+= WITH_MYSQL="@comment " .endif .if ${PORT_OPTIONS:MPGSQL} USES+= pgsql WANT_PGSQL= client CONFIGURE_ARGS+=--enable-pgsql PLIST_SUB+= WITH_PGSQL="" .else CONFIGURE_ARGS+=--disable-pgsql PLIST_SUB+= WITH_PGSQL="@comment " .endif .if ${PORT_OPTIONS:MSQLITE3} USES+= pkgconfig sqlite CONFIGURE_ARGS+=--enable-sqlite3 \ --with-sqlite3-includes=${LOCALBASE}/include PLIST_SUB+= WITH_SQLITE3="" .else CONFIGURE_ARGS+=--disable-sqlite3 PLIST_SUB+= WITH_SQLITE3="@comment " .endif .if ${PORT_OPTIONS:MLAYER2} CONFIGURE_ARGS+=--enable-l2 .else CONFIGURE_ARGS+=--disable-l2 .endif .if ${PORT_OPTIONS:MIPV6} CONFIGURE_ARGS+=--enable-ipv6 .else CONFIGURE_ARGS+=--disable-ipv6 .endif .if ${PORT_OPTIONS:MPLABEL} CONFIGURE_ARGS+=--enable-plabel .else CONFIGURE_ARGS+=--disable-plabel .endif .if ${PORT_OPTIONS:MTHREADS} CONFIGURE_ARGS+=--enable-threads .else CONFIGURE_ARGS+=--disable-threads .endif .if ${PORT_OPTIONS:MDEBUG} CONFIGURE_ARGS+=--enable-debug .endif .if ${PORT_OPTIONS:MMONGO} #CONFIGURE_ARGS+=--enable-mongodb .else CONFIGURE_ARGS+=--disable-mongodb .endif .if ${PORT_OPTIONS:MRABBITMQ} .if ${PORT_OPTIONS:MJANSSON} USES+= pkgconfig LIB_DEPENDS+= libjansson.so:devel/jansson CONFIGURE_ARGS+=--enable-jansson .else IGNORE= RabbitMQ support requires enabled Jansson support .endif LIB_DEPENDS+= librabbitmq.so:net/rabbitmq-c-devel CONFIGURE_ARGS+=--enable-rabbitmq .endif .if ${PORT_OPTIONS:MKAFKA} .if ${PORT_OPTIONS:MJANSSON} USES+= pkgconfig LIB_DEPENDS+= libjansson.so:devel/jansson CONFIGURE_ARGS+=--enable-jansson .else IGNORE= Kafaka support requires enabled Jansson support .endif LIB_DEPENDS+= librdkafka.so:net/librdkafka CONFIGURE_ARGS+=--enable-kafka PLIST_SUB+=WITH_KAFKA="" .else PLIST_SUB+=WITH_KAFKA="@comment " .endif .if ${PORT_OPTIONS:MAVRO} LIB_DEPENDS+= libavro.so:devel/avro-c CONFIGURE_ARGS+=--enable-avro .endif .if ${PORT_OPTIONS:MNFLOG} #CONFIGURE_ARGS+=--enable-nflog #PLIST_SUB+=WITH_NFLOG="" .else CONFIGURE_ARGS+=--disable-nflog PLIST_SUB+=WITH_NFLOG="@comment " .endif .if ${PORT_OPTIONS:MGEOIP2} LIB_DEPENDS+= libmaxminddb.so:net/libmaxminddb CONFIGURE_ARGS+=--enable-geoipv2 .endif .include .if ${ARCH} == "amd64" || ${ARCH} == "sparc64" CONFIGURE_ARGS+=--enable-64bit .endif post-patch: @${REINPLACE_CMD} -e 's|-O2||g' ${WRKSRC}/configure post-install: @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} (cd ${WRKSRC}/examples && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR}) @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/docs/* ${STAGEDIR}${DOCSDIR} .for i in AUTHORS CONFIG-KEYS COPYING ChangeLog FAQS INSTALL QUICKSTART UPGRADE ${INSTALL_DATA} ${WRKSRC}/${i} ${STAGEDIR}${DOCSDIR} .endfor - @${MKDIR} ${STAGEDIR}${DATADIR} - ${INSTALL_DATA} ${WRKSRC}/sql/* ${STAGEDIR}${DATADIR} + ${MKDIR} ${STAGEDIR}${DATADIR} .include Index: head/net-mgmt/pmacct/pkg-plist =================================================================== --- head/net-mgmt/pmacct/pkg-plist (revision 503737) +++ head/net-mgmt/pmacct/pkg-plist (revision 503738) @@ -1,210 +1,160 @@ bin/pmacct lib/pmacct/examples/lg/pmbgp sbin/nfacctd sbin/pmacctd sbin/pmbgpd sbin/pmbmpd sbin/pmtelemetryd sbin/sfacctd %%PORTDOCS%%%%DOCSDIR%%/AUTHORS %%PORTDOCS%%%%DOCSDIR%%/CONFIG-KEYS %%PORTDOCS%%%%DOCSDIR%%/COPYING %%PORTDOCS%%%%DOCSDIR%%/ChangeLog %%PORTDOCS%%%%DOCSDIR%%/FAQS %%PORTDOCS%%%%DOCSDIR%%/FLOW_AUGMENTATION_PROCESS_DESCRIPTION.md %%PORTDOCS%%%%DOCSDIR%%/INSTALL %%PORTDOCS%%%%DOCSDIR%%/INTERNALS %%PORTDOCS%%%%DOCSDIR%%/IPFIX %%PORTDOCS%%%%DOCSDIR%%/LOOKING_GLASS_FORMAT %%PORTDOCS%%%%DOCSDIR%%/MSGLOG_DUMP_FORMATS %%PORTDOCS%%%%DOCSDIR%%/PLUGINS %%PORTDOCS%%%%DOCSDIR%%/QUICKSTART %%PORTDOCS%%%%DOCSDIR%%/SIGNALS %%PORTDOCS%%%%DOCSDIR%%/TRIGGER_VARS %%PORTDOCS%%%%DOCSDIR%%/UPGRADE %%PORTEXAMPLES%%%%EXAMPLESDIR%%/allow.lst.example %%PORTEXAMPLES%%%%EXAMPLESDIR%%/amqp/amqp_receiver.py %%PORTEXAMPLES%%%%EXAMPLESDIR%%/avro/avro_file_decoder.py %%PORTEXAMPLES%%%%EXAMPLESDIR%%/bgp_agent.map.example %%PORTEXAMPLES%%%%EXAMPLESDIR%%/bgp_md5.lst.example %%PORTEXAMPLES%%%%EXAMPLESDIR%%/bgp_xconnects.map.example %%PORTEXAMPLES%%%%EXAMPLESDIR%%/custom/.deps/libcustom_la-libcustom.Plo %%PORTEXAMPLES%%%%EXAMPLESDIR%%/custom/.libs/libcustom.a %%PORTEXAMPLES%%%%EXAMPLESDIR%%/custom/.libs/libcustom_la-libcustom.o %%PORTEXAMPLES%%%%EXAMPLESDIR%%/custom/Makefile %%PORTEXAMPLES%%%%EXAMPLESDIR%%/custom/Makefile.am %%PORTEXAMPLES%%%%EXAMPLESDIR%%/custom/Makefile.in %%PORTEXAMPLES%%%%EXAMPLESDIR%%/custom/libcustom.c %%PORTEXAMPLES%%%%EXAMPLESDIR%%/custom/libcustom.h %%PORTEXAMPLES%%%%EXAMPLESDIR%%/custom/libcustom_la-libcustom.lo %%PORTEXAMPLES%%%%EXAMPLESDIR%%/custom/libcustom_la-libcustom.o %%PORTEXAMPLES%%%%EXAMPLESDIR%%/custom/nfacctd-custom.conf.example %%PORTEXAMPLES%%%%EXAMPLESDIR%%/flow_to_rd.map.example %%PORTEXAMPLES%%%%EXAMPLESDIR%%/kafka/kafka_consumer.py %%PORTEXAMPLES%%%%EXAMPLESDIR%%/lg/.deps/pmbgp-pmbgp.Po %%PORTEXAMPLES%%%%EXAMPLESDIR%%/lg/Makefile %%PORTEXAMPLES%%%%EXAMPLESDIR%%/lg/Makefile.am %%PORTEXAMPLES%%%%EXAMPLESDIR%%/lg/Makefile.in %%PORTEXAMPLES%%%%EXAMPLESDIR%%/lg/pmbgp %%PORTEXAMPLES%%%%EXAMPLESDIR%%/lg/pmbgp-pmbgp.o %%PORTEXAMPLES%%%%EXAMPLESDIR%%/lg/pmbgp.c %%PORTEXAMPLES%%%%EXAMPLESDIR%%/lg/pmbgp.h %%PORTEXAMPLES%%%%EXAMPLESDIR%%/lg/pmbgp.py %%PORTEXAMPLES%%%%EXAMPLESDIR%%/lpref.map.example %%PORTEXAMPLES%%%%EXAMPLESDIR%%/med.map.example %%PORTEXAMPLES%%%%EXAMPLESDIR%%/misc/gnuplot-example.sh %%PORTEXAMPLES%%%%EXAMPLESDIR%%/misc/gnuplot.script.example %%PORTEXAMPLES%%%%EXAMPLESDIR%%/misc/mrtg-example.sh %%PORTEXAMPLES%%%%EXAMPLESDIR%%/misc/mrtg.conf.example %%PORTEXAMPLES%%%%EXAMPLESDIR%%/misc/rrdtool-example.sh %%PORTEXAMPLES%%%%EXAMPLESDIR%%/networks.lst.example %%PORTEXAMPLES%%%%EXAMPLESDIR%%/nfacctd-print.conf.example %%PORTEXAMPLES%%%%EXAMPLESDIR%%/nfacctd-sql.conf.example %%PORTEXAMPLES%%%%EXAMPLESDIR%%/pcap_interfaces.map.example %%PORTEXAMPLES%%%%EXAMPLESDIR%%/peers.map.example %%PORTEXAMPLES%%%%EXAMPLESDIR%%/pmacctd-imt.conf.example %%PORTEXAMPLES%%%%EXAMPLESDIR%%/pmacctd-multiple-plugins.conf.example %%PORTEXAMPLES%%%%EXAMPLESDIR%%/pmacctd-sql.conf.example %%PORTEXAMPLES%%%%EXAMPLESDIR%%/pmacctd-sqlite3.conf.example %%PORTEXAMPLES%%%%EXAMPLESDIR%%/ports.lst.example %%PORTEXAMPLES%%%%EXAMPLESDIR%%/pretag.map.example %%PORTEXAMPLES%%%%EXAMPLESDIR%%/primitives.lst.example %%PORTEXAMPLES%%%%EXAMPLESDIR%%/probe_netflow.conf.example %%PORTEXAMPLES%%%%EXAMPLESDIR%%/probe_sflow.conf.example %%PORTEXAMPLES%%%%EXAMPLESDIR%%/sampling.map.example %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tee_receivers.lst.example %%DATADIR%%/CONFIG-KEYS %%DATADIR%%/FAQS %%DATADIR%%/QUICKSTART -%%DATADIR%%/README.64bit -%%DATADIR%%/README.GeoIP -%%DATADIR%%/README.IPv6 -%%DATADIR%%/README.cos -%%DATADIR%%/README.custom_primitives -%%DATADIR%%/README.etype -%%DATADIR%%/README.export_proto -%%DATADIR%%/README.iface -%%DATADIR%%/README.label -%%DATADIR%%/README.mask -%%DATADIR%%/README.mpls -%%DATADIR%%/README.mysql -%%DATADIR%%/README.nat -%%DATADIR%%/README.pgsql -%%DATADIR%%/README.sampling -%%DATADIR%%/README.sqlite3 -%%DATADIR%%/README.tag2 -%%DATADIR%%/README.timestamp -%%DATADIR%%/README.tunnel +%%DATADIR%%/sql/README.64bit +%%DATADIR%%/sql/README.GeoIP +%%DATADIR%%/sql/README.IPv6 +%%DATADIR%%/sql/README.cos +%%DATADIR%%/sql/README.custom_primitives +%%DATADIR%%/sql/README.etype +%%DATADIR%%/sql/README.export_proto +%%DATADIR%%/sql/README.iface +%%DATADIR%%/sql/README.label +%%DATADIR%%/sql/README.mask +%%DATADIR%%/sql/README.mpls +%%DATADIR%%/sql/README.mysql +%%DATADIR%%/sql/README.nat +%%DATADIR%%/sql/README.pgsql +%%DATADIR%%/sql/README.sampling +%%DATADIR%%/sql/README.sqlite3 +%%DATADIR%%/sql/README.tag2 +%%DATADIR%%/sql/README.timestamp +%%DATADIR%%/sql/README.tunnel %%DATADIR%%/UPGRADE %%DATADIR%%/docs/IPFIX %%DATADIR%%/docs/LOOKING_GLASS_FORMAT %%DATADIR%%/docs/MSGLOG_DUMP_FORMATS %%DATADIR%%/docs/SIGNALS %%DATADIR%%/docs/TRIGGER_VARS %%DATADIR%%/examples/allow.lst.example %%DATADIR%%/examples/amqp/amqp_receiver.py %%DATADIR%%/examples/avro/avro_file_decoder.py %%DATADIR%%/examples/bgp_agent.map.example %%DATADIR%%/examples/bgp_md5.lst.example %%DATADIR%%/examples/bgp_xconnects.map.example %%DATADIR%%/examples/flow_to_rd.map.example %%DATADIR%%/examples/kafka/kafka_consumer.py %%DATADIR%%/examples/lg/pmbgp.py %%DATADIR%%/examples/networks.lst.example %%DATADIR%%/examples/nfacctd-sql.conf.example %%DATADIR%%/examples/pcap_interfaces.map.example %%DATADIR%%/examples/peers.map.example %%DATADIR%%/examples/pmacctd-imt.conf.example %%DATADIR%%/examples/pmacctd-multiple-plugins.conf.example %%DATADIR%%/examples/pmacctd-sql.conf.example %%DATADIR%%/examples/pmacctd-sqlite3.conf.example %%DATADIR%%/examples/ports.lst.example %%DATADIR%%/examples/pretag.map.example %%DATADIR%%/examples/primitives.lst.example %%DATADIR%%/examples/probe_netflow.conf.example %%DATADIR%%/examples/probe_sflow.conf.example %%DATADIR%%/examples/sampling.map.example %%DATADIR%%/examples/tee_receivers.lst.example -%%DATADIR%%/pmacct-create-db.pgsql -%%DATADIR%%/pmacct-create-db_bgp_v1.mysql -%%DATADIR%%/pmacct-create-db_v1.mysql -%%DATADIR%%/pmacct-create-db_v2.mysql -%%DATADIR%%/pmacct-create-db_v3.mysql -%%DATADIR%%/pmacct-create-db_v4.mysql -%%DATADIR%%/pmacct-create-db_v5.mysql -%%DATADIR%%/pmacct-create-db_v6.mysql -%%DATADIR%%/pmacct-create-db_v7.mysql -%%DATADIR%%/pmacct-create-db_v8.mysql -%%DATADIR%%/pmacct-create-db_v9.mysql -%%DATADIR%%/pmacct-create-table_bgp_v1.pgsql -%%DATADIR%%/pmacct-create-table_bgp_v1.sqlite3 -%%DATADIR%%/pmacct-create-table_v1.pgsql -%%DATADIR%%/pmacct-create-table_v1.sqlite3 -%%DATADIR%%/pmacct-create-table_v2.pgsql -%%DATADIR%%/pmacct-create-table_v2.sqlite3 -%%DATADIR%%/pmacct-create-table_v3.pgsql -%%DATADIR%%/pmacct-create-table_v3.sqlite3 -%%DATADIR%%/pmacct-create-table_v4.pgsql -%%DATADIR%%/pmacct-create-table_v4.sqlite3 -%%DATADIR%%/pmacct-create-table_v5.pgsql -%%DATADIR%%/pmacct-create-table_v5.sqlite3 -%%DATADIR%%/pmacct-create-table_v6.pgsql -%%DATADIR%%/pmacct-create-table_v6.sqlite3 -%%DATADIR%%/pmacct-create-table_v7.pgsql -%%DATADIR%%/pmacct-create-table_v7.sqlite3 -%%DATADIR%%/pmacct-create-table_v8.sqlite3 -%%DATADIR%%/pmacct-create-table_v9.pgsql -%%DATADIR%%/pmacct-create-table_v9.sqlite3 -%%DATADIR%%/pmacct-grant-db.mysql -%%DATADIR%%/sql/README.64bit -%%DATADIR%%/sql/README.GeoIP -%%DATADIR%%/sql/README.IPv6 -%%DATADIR%%/sql/README.cos -%%DATADIR%%/sql/README.custom_primitives -%%DATADIR%%/sql/README.etype -%%DATADIR%%/sql/README.export_proto -%%DATADIR%%/sql/README.iface -%%DATADIR%%/sql/README.label -%%DATADIR%%/sql/README.mask -%%DATADIR%%/sql/README.mpls -%%DATADIR%%/sql/README.mysql -%%DATADIR%%/sql/README.nat -%%DATADIR%%/sql/README.pgsql -%%DATADIR%%/sql/README.sampling -%%DATADIR%%/sql/README.sqlite3 -%%DATADIR%%/sql/README.tag2 -%%DATADIR%%/sql/README.timestamp -%%DATADIR%%/sql/README.tunnel %%DATADIR%%/sql/pmacct-create-db.pgsql %%DATADIR%%/sql/pmacct-create-db_bgp_v1.mysql %%DATADIR%%/sql/pmacct-create-db_v1.mysql %%DATADIR%%/sql/pmacct-create-db_v2.mysql %%DATADIR%%/sql/pmacct-create-db_v3.mysql %%DATADIR%%/sql/pmacct-create-db_v4.mysql %%DATADIR%%/sql/pmacct-create-db_v5.mysql %%DATADIR%%/sql/pmacct-create-db_v6.mysql %%DATADIR%%/sql/pmacct-create-db_v7.mysql %%DATADIR%%/sql/pmacct-create-db_v8.mysql %%DATADIR%%/sql/pmacct-create-db_v9.mysql %%DATADIR%%/sql/pmacct-create-table_bgp_v1.pgsql %%DATADIR%%/sql/pmacct-create-table_bgp_v1.sqlite3 %%DATADIR%%/sql/pmacct-create-table_v1.pgsql %%DATADIR%%/sql/pmacct-create-table_v1.sqlite3 %%DATADIR%%/sql/pmacct-create-table_v2.pgsql %%DATADIR%%/sql/pmacct-create-table_v2.sqlite3 %%DATADIR%%/sql/pmacct-create-table_v3.pgsql %%DATADIR%%/sql/pmacct-create-table_v3.sqlite3 %%DATADIR%%/sql/pmacct-create-table_v4.pgsql %%DATADIR%%/sql/pmacct-create-table_v4.sqlite3 %%DATADIR%%/sql/pmacct-create-table_v5.pgsql %%DATADIR%%/sql/pmacct-create-table_v5.sqlite3 %%DATADIR%%/sql/pmacct-create-table_v6.pgsql %%DATADIR%%/sql/pmacct-create-table_v6.sqlite3 %%DATADIR%%/sql/pmacct-create-table_v7.pgsql %%DATADIR%%/sql/pmacct-create-table_v7.sqlite3 %%DATADIR%%/sql/pmacct-create-table_v8.sqlite3 %%DATADIR%%/sql/pmacct-create-table_v9.pgsql %%DATADIR%%/sql/pmacct-create-table_v9.sqlite3 %%DATADIR%%/sql/pmacct-grant-db.mysql @dir lib/pmacct/examples/custom %%PORTEXAMPLES%%@dir %%EXAMPLESDIR%%/lg/.libs