Index: head/net-mgmt/pmacct/Makefile =================================================================== --- head/net-mgmt/pmacct/Makefile (revision 504359) +++ head/net-mgmt/pmacct/Makefile (revision 504360) @@ -1,169 +1,175 @@ # 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="" +PLIST_SUB+= SQLDOC="" .else CONFIGURE_ARGS+=--disable-mysql PLIST_SUB+= WITH_MYSQL="@comment " +PLIST_SUB+= SQLDOC="@comment " .endif .if ${PORT_OPTIONS:MPGSQL} USES+= pgsql WANT_PGSQL= client CONFIGURE_ARGS+=--enable-pgsql PLIST_SUB+= WITH_PGSQL="" +PLIST_SUB+= SQLDOC="" .else CONFIGURE_ARGS+=--disable-pgsql PLIST_SUB+= WITH_PGSQL="@comment " +PLIST_SUB+= SQLDOC="@comment " .endif .if ${PORT_OPTIONS:MSQLITE3} USES+= pkgconfig sqlite CONFIGURE_ARGS+=--enable-sqlite3 \ --with-sqlite3-includes=${LOCALBASE}/include PLIST_SUB+= WITH_SQLITE3="" +PLIST_SUB+= SQLDOC="" .else CONFIGURE_ARGS+=--disable-sqlite3 PLIST_SUB+= WITH_SQLITE3="@comment " +PLIST_SUB+= SQLDOC="@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} + ${MKDIR} ${STAGEDIR}${EXAMPLESDIR} (cd ${WRKSRC}/examples && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR}) - @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${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} .include Index: head/net-mgmt/pmacct/files/patch-Makefile.am =================================================================== --- head/net-mgmt/pmacct/files/patch-Makefile.am (nonexistent) +++ head/net-mgmt/pmacct/files/patch-Makefile.am (revision 504360) @@ -0,0 +1,11 @@ +--- Makefile.am.orig 2019-04-19 04:06:27.000000000 +0200 ++++ Makefile.am 2019-06-16 19:58:43.298406000 +0200 +@@ -17,7 +17,7 @@ + pmacct_examples_lg_arch_dir = $(pmacct_examples_arch_dir)/lg + pmacct_examples_custom_dir = $(pmacct_examples_arch_dir)/custom + if USING_SQL +-pmacct_sql_dir = $(pmacct_data_dir)/sql ++pmacct_sql_dir = $(pmacct_data_dir) + endif + + pmacct_data__DATA = CONFIG-KEYS FAQS QUICKSTART UPGRADE Property changes on: head/net-mgmt/pmacct/files/patch-Makefile.am ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/net-mgmt/pmacct/files/patch-Makefile.in =================================================================== --- head/net-mgmt/pmacct/files/patch-Makefile.in (nonexistent) +++ head/net-mgmt/pmacct/files/patch-Makefile.in (revision 504360) @@ -0,0 +1,11 @@ +--- Makefile.in.orig 2019-06-16 20:01:08.854403000 +0200 ++++ Makefile.in 2019-06-16 20:01:32.038160000 +0200 +@@ -346,7 +346,7 @@ + pmacct_examples_lg_dir = $(pmacct_examples_dir)/lg + pmacct_examples_lg_arch_dir = $(pmacct_examples_arch_dir)/lg + pmacct_examples_custom_dir = $(pmacct_examples_arch_dir)/custom +-@USING_SQL_TRUE@pmacct_sql_dir = $(pmacct_data_dir)/sql ++@USING_SQL_TRUE@pmacct_sql_dir = $(pmacct_data_dir) + pmacct_data__DATA = CONFIG-KEYS FAQS QUICKSTART UPGRADE + pmacct_docs__DATA = docs/IPFIX docs/LOOKING_GLASS_FORMAT docs/SIGNALS \ + docs/MSGLOG_DUMP_FORMATS docs/TRIGGER_VARS Property changes on: head/net-mgmt/pmacct/files/patch-Makefile.in ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/net-mgmt/pmacct/pkg-plist =================================================================== --- head/net-mgmt/pmacct/pkg-plist (revision 504359) +++ head/net-mgmt/pmacct/pkg-plist (revision 504360) @@ -1,160 +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%%/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 +%%SQLDOC%%%%DATADIR%%/README.64bit +%%SQLDOC%%%%DATADIR%%/README.GeoIP +%%SQLDOC%%%%DATADIR%%/README.IPv6 +%%SQLDOC%%%%DATADIR%%/README.cos +%%SQLDOC%%%%DATADIR%%/README.custom_primitives +%%SQLDOC%%%%DATADIR%%/README.etype +%%SQLDOC%%%%DATADIR%%/README.export_proto +%%SQLDOC%%%%DATADIR%%/README.iface +%%SQLDOC%%%%DATADIR%%/README.label +%%SQLDOC%%%%DATADIR%%/README.mask +%%SQLDOC%%%%DATADIR%%/README.mpls +%%SQLDOC%%%%DATADIR%%/README.mysql +%%SQLDOC%%%%DATADIR%%/README.nat +%%SQLDOC%%%%DATADIR%%/README.pgsql +%%SQLDOC%%%%DATADIR%%/README.sampling +%%SQLDOC%%%%DATADIR%%/README.sqlite3 +%%SQLDOC%%%%DATADIR%%/README.tag2 +%%SQLDOC%%%%DATADIR%%/README.timestamp +%%SQLDOC%%%%DATADIR%%/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%%/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 +%%SQLDOC%%%%DATADIR%%/pmacct-create-db.pgsql +%%SQLDOC%%%%DATADIR%%/pmacct-create-db_bgp_v1.mysql +%%SQLDOC%%%%DATADIR%%/pmacct-create-db_v1.mysql +%%SQLDOC%%%%DATADIR%%/pmacct-create-db_v2.mysql +%%SQLDOC%%%%DATADIR%%/pmacct-create-db_v3.mysql +%%SQLDOC%%%%DATADIR%%/pmacct-create-db_v4.mysql +%%SQLDOC%%%%DATADIR%%/pmacct-create-db_v5.mysql +%%SQLDOC%%%%DATADIR%%/pmacct-create-db_v6.mysql +%%SQLDOC%%%%DATADIR%%/pmacct-create-db_v7.mysql +%%SQLDOC%%%%DATADIR%%/pmacct-create-db_v8.mysql +%%SQLDOC%%%%DATADIR%%/pmacct-create-db_v9.mysql +%%SQLDOC%%%%DATADIR%%/pmacct-create-table_bgp_v1.pgsql +%%SQLDOC%%%%DATADIR%%/pmacct-create-table_bgp_v1.sqlite3 +%%SQLDOC%%%%DATADIR%%/pmacct-create-table_v1.pgsql +%%SQLDOC%%%%DATADIR%%/pmacct-create-table_v1.sqlite3 +%%SQLDOC%%%%DATADIR%%/pmacct-create-table_v2.pgsql +%%SQLDOC%%%%DATADIR%%/pmacct-create-table_v2.sqlite3 +%%SQLDOC%%%%DATADIR%%/pmacct-create-table_v3.pgsql +%%SQLDOC%%%%DATADIR%%/pmacct-create-table_v3.sqlite3 +%%SQLDOC%%%%DATADIR%%/pmacct-create-table_v4.pgsql +%%SQLDOC%%%%DATADIR%%/pmacct-create-table_v4.sqlite3 +%%SQLDOC%%%%DATADIR%%/pmacct-create-table_v5.pgsql +%%SQLDOC%%%%DATADIR%%/pmacct-create-table_v5.sqlite3 +%%SQLDOC%%%%DATADIR%%/pmacct-create-table_v6.pgsql +%%SQLDOC%%%%DATADIR%%/pmacct-create-table_v6.sqlite3 +%%SQLDOC%%%%DATADIR%%/pmacct-create-table_v7.pgsql +%%SQLDOC%%%%DATADIR%%/pmacct-create-table_v7.sqlite3 +%%SQLDOC%%%%DATADIR%%/pmacct-create-table_v8.sqlite3 +%%SQLDOC%%%%DATADIR%%/pmacct-create-table_v9.pgsql +%%SQLDOC%%%%DATADIR%%/pmacct-create-table_v9.sqlite3 +%%SQLDOC%%%%DATADIR%%/pmacct-grant-db.mysql @dir lib/pmacct/examples/custom %%PORTEXAMPLES%%@dir %%EXAMPLESDIR%%/lg/.libs