From 737549d63117b691d91a99619072f7c112e5d3f7 Mon Sep 17 00:00:00 2001 From: nico Date: Mon, 16 May 2005 02:31:54 +0000 Subject: Add pmacct package git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@915 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- package/pmacct/Config.in | 140 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 140 insertions(+) create mode 100644 package/pmacct/Config.in (limited to 'package/pmacct/Config.in') diff --git a/package/pmacct/Config.in b/package/pmacct/Config.in new file mode 100644 index 000000000..fb88a073b --- /dev/null +++ b/package/pmacct/Config.in @@ -0,0 +1,140 @@ +config BR2_PACKAGE_PMACCT + prompt "pmacct - a set of IPv4/IPv6 accounting and aggregation tools" + bool + default y if CONFIG_DEVEL + select BR2_PACKAGE_LIBPCAP + help + A small set of IPv4/IPv6 accounting and aggregation tools + + http://www.ba.cnr.it/~paolo/pmacct/ + + Depends: libpcap + +choice + depends BR2_PACKAGE_PMACCT + prompt "nfacctd - a NetFlow accounting daemon" + tristate + default m if CONFIG_DEVEL + default n + optional + + config BR2_PACKAGE_NFACCTD_BASIC + prompt "nfacctd: without database support" + tristate + + config BR2_PACKAGE_NFACCTD_MYSQL + prompt "nfacctd-mysql: with MySQL database support" + tristate + select BR2_PACKAGE_LIBMYSQLCLIENT + + config BR2_PACKAGE_NFACCTD_PGSQL + prompt "nfacctd-pgsql: with PostgreSQL database support" + tristate + select BR2_PACKAGE_LIBPQ + + config BR2_PACKAGE_NFACCTD_CUSTOM + prompt "nfacctd-custom: customized to your needs" + tristate + + config BR2_PACKAGE_NFACCTD_ENABLE_DEBUG + prompt "debug (enable debugging options, useful for bugreports)" + bool + default n + depends BR2_PACKAGE_NFACCTD_CUSTOM + + config BR2_PACKAGE_NFACCTD_ENABLE_IPV6 + prompt "IPv6 support" + bool + default n + depends BR2_PACKAGE_NFACCTD_CUSTOM + select BR2_PACKAGE_IPTABLES + + config BR2_PACKAGE_NFACCTD_WITH_MYSQL + prompt "MySQL database support" + bool + default n + depends BR2_PACKAGE_NFACCTD_CUSTOM + select BR2_PACKAGE_LIBMYSQLCLIENT + + config BR2_PACKAGE_NFACCTD_WITH_PGSQL + prompt "PostgreSQL database support" + bool + default n + depends BR2_PACKAGE_NFACCTD_CUSTOM + select BR2_PACKAGE_LIBPQ + +endchoice + +choice + depends BR2_PACKAGE_PMACCT + prompt "pmacctd - an IP accounting daemon" + tristate + default m if CONFIG_DEVEL + default n + optional + + config BR2_PACKAGE_PMACCTD_BASIC + prompt "pmacctd: without database support" + tristate + + config BR2_PACKAGE_PMACCTD_MYSQL + prompt "pmacctd-mysql: with MySQL database support" + tristate + select BR2_PACKAGE_LIBMYSQLCLIENT + + config BR2_PACKAGE_PMACCTD_PGSQL + prompt "pmacctd-pgsql: with PostgreSQL database support" + tristate + select BR2_PACKAGE_LIBPQ + + config BR2_PACKAGE_PMACCTD_CUSTOM + prompt "pmacctd-custom: customized to your needs" + tristate + + config BR2_PACKAGE_PMACCTD_ENABLE_DEBUG + prompt "debug (enable debugging options, useful for bugreports)" + bool + default n + depends BR2_PACKAGE_PMACCTD_CUSTOM + + config BR2_PACKAGE_PMACCTD_ENABLE_IPV6 + prompt "IPv6 support" + bool + default n + depends BR2_PACKAGE_PMACCTD_CUSTOM + select BR2_PACKAGE_IPTABLES + + config BR2_PACKAGE_PMACCTD_WITH_MYSQL + prompt "MySQL database support" + bool + default n + depends BR2_PACKAGE_PMACCTD_CUSTOM + select BR2_PACKAGE_LIBMYSQLCLIENT + + config BR2_PACKAGE_PMACCTD_WITH_PGSQL + prompt "PostgreSQL database support" + bool + default n + depends BR2_PACKAGE_PMACCTD_CUSTOM + select BR2_PACKAGE_LIBPQ + +endchoice + +config BR2_PACKAGE_PMACCT_CLIENT + depends BR2_PACKAGE_PMACCT + prompt "pmacct-client: a command-line client to gather data from the IMT plugin" if BR2_PACKAGE_NFACCTD_BASIC || BR2_PACKAGE_NFACCTD_MYSQL || BR2_PACKAGE_NFACCTD_PGSQL || BR2_PACKAGE_NFACCTD_CUSTOM || BR2_PACKAGE_PMACCTD_BASIC || BR2_PACKAGE_PMACCTD_MYSQL || BR2_PACKAGE_PMACCTD_PGSQL || BR2_PACKAGE_PMACCTD_CUSTOM + tristate + default n + +config BR2_PACKAGE_PMACCT_BASIC + tristate + default BR2_PACKAGE_NFACCTD_BASIC || BR2_PACKAGE_PMACCTD_BASIC + +config BR2_PACKAGE_PMACCT_MYSQL + tristate + default BR2_PACKAGE_NFACCTD_MYSQL || BR2_PACKAGE_PMACCTD_MYSQL + +config BR2_PACKAGE_PMACCT_PGSQL + tristate + default BR2_PACKAGE_NFACCTD_PGSQL || BR2_PACKAGE_PMACCTD_PGSQL + -- cgit v1.2.3