summaryrefslogtreecommitdiff
path: root/security/fwbuilder21
diff options
context:
space:
mode:
authorbad <bad@pkgsrc.org>2006-11-09 19:07:56 +0000
committerbad <bad@pkgsrc.org>2006-11-09 19:07:56 +0000
commit8ce21a8fff28866018594522f77829a58160e493 (patch)
tree2d08935e33c9f68e7591970f2f3199e50fd16d1c /security/fwbuilder21
parent7f4f21f2309ab9e065a861d44a05ffaaf76e2a77 (diff)
downloadpkgsrc-8ce21a8fff28866018594522f77829a58160e493.tar.gz
Initial import of fwbuilder-2.1.7.
Changes since the 2.0.12 release: Improvements and changes in the GUI * The GUI works much faster with very large object trees. * "Where used" menu item to quickly find and show all groups and firewall rules that reference given object. Confirmation dialog shown when an object is deleted also shows all groups and rules that use it. * Built-in installer can now save a copy of .fwb file to the firewall. * Compile/install dialog is now an independent window instead of a modal dialog, this means the user can look at the policy and objects while compilation and/or installation is going on. * Network discovery driud is back, ported from fwbuilder 1.0. As before, it supports reading object definitions from a file in /etc/hosts format, can read DNS zone and also can crawl the network using SNMP queries. * Startup splash window has been removed. * Keeping track of dependencies between objects. Firewalls that refer to an object that is modified are marked with bold font. * Added bulk compile and install operations. * All object dialogs have been converted into built-in panels that appear in the right hand part of the main window. * Improvements in "Find" function: administrator can now drag an object into a well in the find dialog panel to make it search for this particular object. * The "Find and replace" operation has been implemented. New object types, new rule types and rule elements, new actions and other new features * AddressTable This object resolves to a set of IP addresses defined in an external file. * DNSName: This object resolves a host name to the IP address using DNS. Object can be confgiured to do so at compile time or run time. * TagService: This object matches tags set by action Tag. * Interface objects can now be marked as bridge ports. * Support for routing rules has been implemented. * Global policy and interface policies have been merged. Each policy rule now has rule element "Interface". * Policy rules can have the following new actions: * Queue: This action passes the packet to user space process for inspection. * Custom: This action allows administrator to define arbitrary piece of code to be used in place of an action. * Branch: This action is used to create a branch in the rule set. * Tag: This action associates internal tag with the packet. * Classify: This action allows the firewall to define QoS class for the packet that matches the rule. * Route: This action makes the firewall to route the packet that matches the rule through an interface or a gateway specified in the parameters of the action. * Firewall object now has an attribute "inactive" excluding it from bulk compiles and installs. Compiler for iptables * Support for address tables loaded from external files at compile or run time. * Support user defined chains with predefined names (using special action ) * Support for CLASSIFY, MARK, CONNMARK, QUEUE, ROUTE targets * Support for physdev module for bridging firewalls * additional optimization of rules in INPUT and OUTPUT chain: now removing firewall object from src or dst to simplify rule if it uses OUTPUT or INPUT chain. * support for modules connlimit and hashlimit. Compiler for PF * Support for load balancing rules * Support for tag and route options * Support for address ranges and network objects in TSrc in NAT rules * Support for pool types in NAT rules ('bitmask', 'random', 'source-hash', 'round-robin'), as well as 'static-port' option. * Supprot for anchors (by way of a special action) * Support for tables with predefined names (using AddressTable object) * Support for packet 'tagging' (by way of a special action and service object TagService) Compiler for ipfilter * Support for PPTP and IRC proxies * Support for route option API * internal object ID is augumented with process ID of the program that creates an object. * fwbedit Fwbedit can now create objects and repair broken object database.
Diffstat (limited to 'security/fwbuilder21')
-rw-r--r--security/fwbuilder21/DESCR14
-rw-r--r--security/fwbuilder21/Makefile27
-rw-r--r--security/fwbuilder21/PLIST60
-rw-r--r--security/fwbuilder21/distinfo10
-rw-r--r--security/fwbuilder21/patches/patch-aa18
-rw-r--r--security/fwbuilder21/patches/patch-ab24
-rw-r--r--security/fwbuilder21/patches/patch-ac18
-rw-r--r--security/fwbuilder21/patches/patch-ad26
-rw-r--r--security/fwbuilder21/patches/patch-ae18
9 files changed, 215 insertions, 0 deletions
diff --git a/security/fwbuilder21/DESCR b/security/fwbuilder21/DESCR
new file mode 100644
index 00000000000..d6bb6957b64
--- /dev/null
+++ b/security/fwbuilder21/DESCR
@@ -0,0 +1,14 @@
+Firewall Builder is a multi-platform firewall configuration and
+management tool. It consists of a GUI and a set of policy compilers for
+various firewall platforms. Firewall Builder uses an object-oriented
+approach, it helps administrators maintain a database of network
+objects and allows policy editing using simple drag-and-drop
+operations. Firewall Builder currently supports
+
+ iptables,
+ IP Filter,
+ ipfw,
+ OpenBSD PF, and
+ Cisco PIX
+
+fwbuilder provides the GUI frontend and the policy compilers.
diff --git a/security/fwbuilder21/Makefile b/security/fwbuilder21/Makefile
new file mode 100644
index 00000000000..883de470844
--- /dev/null
+++ b/security/fwbuilder21/Makefile
@@ -0,0 +1,27 @@
+# $NetBSD: Makefile,v 1.1.1.1 2006/11/09 19:07:56 bad Exp $
+
+DISTNAME= fwbuilder-2.1.7
+PKGNAME= fwbuilder21-2.1.7
+CATEGORIES= security net
+MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=fwbuilder/}
+
+MAINTAINER= pkgsrc-users@NetBSD.org
+HOMEPAGE= http://www.fwbuilder.org/
+COMMENT= Firewall Builder GUI
+
+CONFLICTS= fwbuilder-[0-9]*
+
+USE_LIBTOOL= yes
+GNU_CONFIGURE= yes
+USE_TOOLS+= gmake
+USE_LANGUAGES= c c++
+UNLIMIT_RESOURCES+= datasize
+
+QMAKE= ${QTDIR}/bin/qmake
+CONFIGURE_ENV+= QMAKE=${QMAKE:Q}
+MAKE_ENV+= QMAKE=${QMAKE:Q}
+
+.include "../../security/libfwbuilder21/buildlink3.mk"
+.include "../../x11/qt3-tools/buildlink3.mk"
+
+.include "../../mk/bsd.pkg.mk"
diff --git a/security/fwbuilder21/PLIST b/security/fwbuilder21/PLIST
new file mode 100644
index 00000000000..01c696d7d15
--- /dev/null
+++ b/security/fwbuilder21/PLIST
@@ -0,0 +1,60 @@
+@comment $NetBSD: PLIST,v 1.1.1.1 2006/11/09 19:07:56 bad Exp $
+bin/fwbedit21
+bin/fwblookup21
+bin/fwbuilder21
+bin/fwb_ipt21
+bin/fwb_pf21
+bin/fwb_ipf21
+bin/fwb_ipfw21
+share/doc/fwbuilder-${PKGVERSION}/AUTHORS
+share/doc/fwbuilder-${PKGVERSION}/ChangeLog
+share/doc/fwbuilder-${PKGVERSION}/COPYING
+share/doc/fwbuilder-${PKGVERSION}/Credits
+share/doc/fwbuilder-${PKGVERSION}/FWBuilder-Routing-LICENSE.txt
+share/doc/fwbuilder-${PKGVERSION}/README.floppyfw
+share/doc/fwbuilder-${PKGVERSION}/README.ipf
+share/doc/fwbuilder-${PKGVERSION}/README.ipfw
+share/doc/fwbuilder-${PKGVERSION}/README.ipt
+share/doc/fwbuilder-${PKGVERSION}/README.pf
+share/doc/fwbuilder-${PKGVERSION}/README.routing
+share/doc/fwbuilder-${PKGVERSION}/ReleaseNotes_2.1.7.txt
+share/doc/fwbuilder-${PKGVERSION}/ReleaseNotes_2.1.7.html
+share/doc/fwbuilder-${PKGVERSION}/PatchAcceptancePolicy.txt
+share/doc/fwbuilder-${PKGVERSION}/PatchAcceptancePolicy.txt
+@dirrm share/doc/fwbuilder-${PKGVERSION}
+share/fwbuilder21/locale/fwbuilder_de.qm
+share/fwbuilder21/locale/fwbuilder_es.qm
+share/fwbuilder21/locale/fwbuilder_fr.qm
+share/fwbuilder21/locale/fwbuilder_ja.qm
+share/fwbuilder21/locale/fwbuilder_ru.qm
+share/fwbuilder21/locale/fwbuilder_sv.qm
+@dirrm share/fwbuilder21/locale
+share/fwbuilder21/objects_init.xml
+share/fwbuilder21/templates.xml
+share/fwbuilder21/resources.xml
+share/fwbuilder21/os/freebsd.xml
+share/fwbuilder21/os/fwsm_os.xml
+share/fwbuilder21/os/linksys.xml
+share/fwbuilder21/os/linux24.xml
+share/fwbuilder21/os/macosx.xml
+share/fwbuilder21/os/openbsd.xml
+share/fwbuilder21/os/pix_os.xml
+share/fwbuilder21/os/solaris.xml
+share/fwbuilder21/os/unknown_os.xml
+@dirrm share/fwbuilder21/os
+share/fwbuilder21/platform/fwsm.xml
+share/fwbuilder21/platform/ipf.xml
+share/fwbuilder21/platform/ipfw.xml
+share/fwbuilder21/platform/iptables.xml
+share/fwbuilder21/platform/pf.xml
+share/fwbuilder21/platform/pix.xml
+share/fwbuilder21/platform/unknown.xml
+@dirrm share/fwbuilder21/platform
+@dirrm share/fwbuilder21
+share/man/man1/fwbedit21.1
+share/man/man1/fwb_ipf21.1
+share/man/man1/fwb_ipfw21.1
+share/man/man1/fwb_ipt21.1
+share/man/man1/fwblookup21.1
+share/man/man1/fwb_pf21.1
+share/man/man1/fwbuilder21.1
diff --git a/security/fwbuilder21/distinfo b/security/fwbuilder21/distinfo
new file mode 100644
index 00000000000..6645f57aa6e
--- /dev/null
+++ b/security/fwbuilder21/distinfo
@@ -0,0 +1,10 @@
+$NetBSD: distinfo,v 1.1.1.1 2006/11/09 19:07:56 bad Exp $
+
+SHA1 (fwbuilder-2.1.7.tar.gz) = 3f796a5a4fbb0f1d88c23c5bf2b8f649e8d8bfbc
+RMD160 (fwbuilder-2.1.7.tar.gz) = 3d28a86cd707f58719baadec06b357f465d4d579
+Size (fwbuilder-2.1.7.tar.gz) = 1518347 bytes
+SHA1 (patch-aa) = dadac6310b0d27c326209867ee356610907f099c
+SHA1 (patch-ab) = 2210d7c6813e19108004d491073b0c46ef56577d
+SHA1 (patch-ac) = 74f94531167bebc473299bbc8d636173de7a5e3a
+SHA1 (patch-ad) = 593e9459076bb2b633507c17b489a66cbcac0f55
+SHA1 (patch-ae) = c88624f1b18c55deca7d722b46103b8a09f7c98a
diff --git a/security/fwbuilder21/patches/patch-aa b/security/fwbuilder21/patches/patch-aa
new file mode 100644
index 00000000000..fb9bc06c9ab
--- /dev/null
+++ b/security/fwbuilder21/patches/patch-aa
@@ -0,0 +1,18 @@
+$NetBSD: patch-aa,v 1.1.1.1 2006/11/09 19:07:56 bad Exp $
+
+--- po/po.pro.orig 2005-09-04 20:49:14.000000000 +0000
++++ po/po.pro
+@@ -7,11 +7,13 @@ win32 {
+ QMAKE_RUN_CC = @echo
+ QMAKE_RUN_CXX = @echo
+ QMAKE_LINK = @echo
++ QMAKE_LIBTOOL = @echo
+ }
+ !win32 {
+ QMAKE_RUN_CC = @echo > /dev/null
+ QMAKE_RUN_CXX = @echo > /dev/null
+ QMAKE_LINK = @echo > /dev/null
++ QMAKE_LIBTOOL = @echo > /dev/null
+ }
+
+ TARGET = po
diff --git a/security/fwbuilder21/patches/patch-ab b/security/fwbuilder21/patches/patch-ab
new file mode 100644
index 00000000000..66a7fefdedb
--- /dev/null
+++ b/security/fwbuilder21/patches/patch-ab
@@ -0,0 +1,24 @@
+$NetBSD: patch-ab,v 1.1.1.1 2006/11/09 19:07:56 bad Exp $
+
+--- qmake.inc.in.orig 2006-06-21 09:20:37.000000000 +0200
++++ qmake.inc.in 2006-11-08 01:26:21.000000000 +0100
+@@ -27,7 +27,7 @@
+ res_os.path = $(DDIR)@RES_DIR@/os
+ res_platform.path = $(DDIR)@RES_DIR@/platform
+
+- CONFIG += qt thread rtti stl warn_on debug
++ CONFIG += qt thread rtti stl warn_on
+ INCLUDEPATH += @LIBFWBUILDER_INCLUDEPATH@
+
+ LIBS += $$LIBS_FWBUILDER @LIBS@
+@@ -35,9 +35,8 @@
+ PKGLOCALEDIR = $$res.path/locale
+
+ QMAKE_CFLAGS_DEBUG += -Wno-unused-parameter
+- QMAKE_CFLAGS_RELEASE += -Wno-unused-parameter
+ QMAKE_CXXFLAGS_DEBUG += -Wno-unused-parameter @CXXFLAGS@
+- QMAKE_CXXFLAGS_RELEASE += -Wno-unused-parameter @CXXFLAGS@
++ QMAKE_CXXFLAGS_RELEASE += @CXXFLAGS@
+ }
+ }
+
diff --git a/security/fwbuilder21/patches/patch-ac b/security/fwbuilder21/patches/patch-ac
new file mode 100644
index 00000000000..e3051b3a15e
--- /dev/null
+++ b/security/fwbuilder21/patches/patch-ac
@@ -0,0 +1,18 @@
+$NetBSD: patch-ac,v 1.1.1.1 2006/11/09 19:07:56 bad Exp $
+
+--- src/res/res.pro.orig 2005-07-06 06:05:01.000000000 +0000
++++ src/res/res.pro
+@@ -7,11 +7,13 @@ win32 {
+ QMAKE_RUN_CC = @echo
+ QMAKE_RUN_CXX = @echo
+ QMAKE_LINK = @echo
++ QMAKE_LIBTOOL = @echo
+ }
+ !win32 {
+ QMAKE_RUN_CC = @echo > /dev/null
+ QMAKE_RUN_CXX = @echo > /dev/null
+ QMAKE_LINK = @echo > /dev/null
++ QMAKE_LIBTOOL = @echo > /dev/null
+ }
+
+
diff --git a/security/fwbuilder21/patches/patch-ad b/security/fwbuilder21/patches/patch-ad
new file mode 100644
index 00000000000..b7d8054ef75
--- /dev/null
+++ b/security/fwbuilder21/patches/patch-ad
@@ -0,0 +1,26 @@
+$NetBSD: patch-ad,v 1.1.1.1 2006/11/09 19:07:56 bad Exp $
+
+--- src/tools/tools.pro.orig 2004-07-03 06:55:35.000000000 +0000
++++ src/tools/tools.pro
+@@ -7,18 +7,21 @@ win32 {
+ QMAKE_RUN_CC = @echo
+ QMAKE_RUN_CXX = @echo
+ QMAKE_LINK = @echo
++ QMAKE_LIBTOOL = @echo
+ }
+
+ unix {
+ QMAKE_RUN_CC = @true
+ QMAKE_RUN_CXX = @true
+ QMAKE_LINK = @true
++ QMAKE_LIBTOOL = @true
+ }
+
+ macx {
+ QMAKE_RUN_CC = @true
+ QMAKE_RUN_CXX = @true
+ QMAKE_LINK = @true
++ QMAKE_LIBTOOL = @true
+ }
+
+ TARGET = tools
diff --git a/security/fwbuilder21/patches/patch-ae b/security/fwbuilder21/patches/patch-ae
new file mode 100644
index 00000000000..34c8c36df64
--- /dev/null
+++ b/security/fwbuilder21/patches/patch-ae
@@ -0,0 +1,18 @@
+$NetBSD: patch-ae,v 1.1.1.1 2006/11/09 19:07:56 bad Exp $
+
+--- doc/doc.pro.orig 2005-11-02 06:42:02.000000000 +0000
++++ doc/doc.pro
+@@ -7,11 +7,13 @@ win32 {
+ QMAKE_RUN_CC = @echo
+ QMAKE_RUN_CXX = @echo
+ QMAKE_LINK = @echo
++ QMAKE_LIBTOOL = @echo
+ }
+ !win32 {
+ QMAKE_RUN_CC = @echo > /dev/null
+ QMAKE_RUN_CXX = @echo > /dev/null
+ QMAKE_LINK = @echo > /dev/null
++ QMAKE_LIBTOOL = @echo > /dev/null
+ }
+
+ TARGET = doc