diff --git a/CHANGELOG b/CHANGELOG index 4d96db4..3cc241f 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,6 +1,6 @@ 2.00 Alpha 2 - 04/11/2014 - Slightly better documentation - - Module loading for netfilter helpers + - Kernel module loading - 4/11/2014 2.00 Alpha 1 - 04/10/2014 - Complete code rewrite and restructure to solve some long standing issues with v1 diff --git a/Makefile b/Makefile index 652c3fd..9dee066 100644 --- a/Makefile +++ b/Makefile @@ -7,6 +7,8 @@ install: $(DESTDIR)$(PREFIX)/etc/srfirewall cp -r bin/* $(DESTDIR)$(PREFIX)/bin/ cp -r lib/* $(DESTDIR)$(PREFIX)/lib/srfirewall/ + +install-etc: cp -r etc/* $(DESTDIR)$(PREFIX)/etc/srfirewall/ install-docs: diff --git a/bin/srfirewall b/bin/srfirewall index 4a0d2e2..b257ea1 100755 --- a/bin/srfirewall +++ b/bin/srfirewall @@ -19,7 +19,7 @@ # along with this program. If not, see . # Static config options, normally do not need to change -FW_VERSION="2.0 PreAlpha 1" +FW_VERSION="2.0 Alpha 2" # Important directory locations FWPREFIX="/usr/local" diff --git a/debian/rules b/debian/rules index cff0447..cb28b8e 100755 --- a/debian/rules +++ b/debian/rules @@ -7,5 +7,6 @@ %: dh $@ -#override_dh_auto_install: -# $(MAKE) DESTDIR=$$(pwd)/debian/srfirewall PREFIX=/usr install +override_dh_auto_install: + $(MAKE) DESTDIR=$$(pwd)/debian/srfirewall PREFIX=/usr install + $(MAKE) DESTDIR=$$(pwd)/debian/srfirewall PREFIX=/usr install-etc