]> git.ipfire.org Git - ipfire-2.x.git/blobdiff - lfs/ipp2p
Imported a small .gitignore.
[ipfire-2.x.git] / lfs / ipp2p
index af20feff0d8d05045f1d3c731da8d731519ce0c3..8b89652be70518cc6c6ec48bcdbdfb3bb70ef796 100644 (file)
--- a/lfs/ipp2p
+++ b/lfs/ipp2p
@@ -1,22 +1,20 @@
 ###############################################################################
-# This file is part of the IPCop Firewall.                                    #
 #                                                                             #
-# IPCop is free software; you can redistribute it and/or modify               #
+# IPFire.org - A linux based firewall                                         #
+# Copyright (C) 2007  Michael Tremer & Christian Schmidt                      #
+#                                                                             #
+# This program is free software: you can redistribute it and/or modify        #
 # it under the terms of the GNU General Public License as published by        #
-# the Free Software Foundation; either version 2 of the License, or           #
+# the Free Software Foundation, either version 3 of the License, or           #
 # (at your option) any later version.                                         #
 #                                                                             #
-# IPCop is distributed in the hope that it will be useful,                    #
+# This program is distributed in the hope that it will be useful,             #
 # but WITHOUT ANY WARRANTY; without even the implied warranty of              #
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the               #
 # GNU General Public License for more details.                                #
 #                                                                             #
 # You should have received a copy of the GNU General Public License           #
-# along with IPCop; if not, write to the Free Software                        #
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA    #
-#                                                                             #
-# Makefiles are based on LFSMake, which is                                    #
-# Copyright (C) 2002 Rod Roard <rod@sunsetsystems.com>                        #
+# along with this program.  If not, see <http://www.gnu.org/licenses/>.       #
 #                                                                             #
 ###############################################################################
 
@@ -63,16 +61,18 @@ $(TARGET) :
        @cp -vf $(DIR_SRC)/src/ipp2p/* $(DIR_APP)
        cd $(DIR_SRC) && rm -rf iptables-*
        cd $(DIR_SRC) && tar xfj $(DIR_DL)/iptables-1.3.5.tar.bz2
-       cd $(DIR_SRC) && ln -sf iptables-1.3.5 iptables
-       cd $(DIR_APP) && make
+       cd $(DIR_SRC) && ln -sf iptables-* iptables
 ifeq "$(SMP)" "1"
-       cp -f $(DIR_APP)/ipt_ipp2p.ko /lib/modules/$(KVER)-smp/kernel/net/ipv4/netfilter
+       cd $(DIR_APP) && make ipt_ipp2p.ko
+       cp -f $(DIR_APP)/ipt_ipp2p.ko /lib/modules/$(KVER)-ipfire-smp/kernel/net/ipv4/netfilter
 else
 ifeq "$(IPT)" "1"
-       cp -f $(DIR_APP)/libipt_ipp2p.o /lib/iptables
+       cd $(DIR_APP) && make libipt_ipp2p.so
+       cp -f $(DIR_APP)/libipt_ipp2p.so /lib/iptables
 else
-       cp -f $(DIR_APP)/ipt_ipp2p.ko /lib/modules/$(KVER)/kernel/net/ipv4/netfilter
+       cd $(DIR_APP) && make ipt_ipp2p.ko
+       cp -f $(DIR_APP)/ipt_ipp2p.ko /lib/modules/$(KVER)-ipfire/kernel/net/ipv4/netfilter
 endif
 endif
-       @rm -rf $(DIR_APP) $(DIR_SRC)/iptables-*
+       @rm -rf $(DIR_APP) $(DIR_SRC)/iptables*
        @$(POSTBUILD)