aboutsummaryrefslogtreecommitdiffstats
path: root/package/snort
diff options
context:
space:
mode:
authorNicolas Thill <nico@openwrt.org>2005-05-23 23:54:50 +0000
committerNicolas Thill <nico@openwrt.org>2005-05-23 23:54:50 +0000
commit518ed7c1901377a6304b25c6c2ce9baa2047a457 (patch)
tree60b8234d3a4f347a8e077025ef9be4ee97fd043d /package/snort
parent1e54deaf58429aa8e69f3808db368736f3ddf4c3 (diff)
downloadupstream-518ed7c1901377a6304b25c6c2ce9baa2047a457.tar.gz
upstream-518ed7c1901377a6304b25c6c2ce9baa2047a457.tar.bz2
upstream-518ed7c1901377a6304b25c6c2ce9baa2047a457.zip
Move complex packages to their own menu
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@1033 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/snort')
-rw-r--r--package/snort/Config.in24
1 files changed, 19 insertions, 5 deletions
diff --git a/package/snort/Config.in b/package/snort/Config.in
index ff79cfafdc..d9e840f179 100644
--- a/package/snort/Config.in
+++ b/package/snort/Config.in
@@ -1,19 +1,32 @@
+menu "snort - Ligthweight Network Intrusion Detection System (NIDS)"
+
+config BR2_PACKAGE_SNORT
+ bool
+ default BR2_PACKAGE_SNORT_BASIC || BR2_PACKAGE_SNORT_MYSQL || BR2_PACKAGE_SNORT_PGSQL || BR2_PACKAGE_SNORT_CUSTOM
+ default n
+
choice
prompt "snort - Ligthweight Network Intrusion Detection System (NIDS)"
tristate
optional
- default m if CONFIG_DEVEL
help
+
A ligthweight Network Intrusion Detection System (NIDS)
http://www.snort.org/
- Depends: libnet, libpcap, libpcre
+ Depends:
+ - libmysqlclient (for MySQL database logging support)
+ - libnet
+ - libpcap
+ - libpcre
+ - libpq (for PostgreSQL database logging support)
config BR2_PACKAGE_SNORT_BASIC
prompt "snort: without database support"
tristate
+ select BR2_PACKAGE_SNORT
select BR2_PACKAGE_LIBNET
select BR2_PACKAGE_LIBPCAP
select BR2_PACKAGE_LIBPCRE
@@ -21,6 +34,7 @@ choice
config BR2_PACKAGE_SNORT_MYSQL
prompt "snort-mysql: with MySQL database support"
tristate
+ select BR2_PACKAGE_SNORT
select BR2_PACKAGE_LIBNET
select BR2_PACKAGE_LIBPCAP
select BR2_PACKAGE_LIBPCRE
@@ -29,6 +43,7 @@ choice
config BR2_PACKAGE_SNORT_PGSQL
prompt "snort-pgsql: with PostgreSQL database support"
tristate
+ select BR2_PACKAGE_SNORT
select BR2_PACKAGE_LIBNET
select BR2_PACKAGE_LIBPCAP
select BR2_PACKAGE_LIBPCRE
@@ -37,6 +52,7 @@ choice
config BR2_PACKAGE_SNORT_CUSTOM
prompt "snort-custom: customized to your needs"
tristate
+ select BR2_PACKAGE_SNORT
select BR2_PACKAGE_LIBNET
select BR2_PACKAGE_LIBPCAP
select BR2_PACKAGE_LIBPCRE
@@ -70,6 +86,4 @@ choice
endchoice
-config BR2_PACKAGE_SNORT
- tristate
- default BR2_PACKAGE_SNORT_BASIC || BR2_PACKAGE_SNORT_MYSQL || BR2_PACKAGE_SNORT_PGSQL || BR2_PACKAGE_SNORT_CUSTOM
+endmenu