Revision: 7413 http://sourceforge.net/p/ipcop/svn/7413 Author: owes Date: 2014-04-04 20:42:15 +0000 (Fri, 04 Apr 2014) Log Message: ----------- Add libnetfilter_cthelper and libnetfilter_queue. New dependencies for conntrack_tools 1.4.2.
Modified Paths: -------------- ipcop/trunk/make.sh ipcop/trunk/updates/2.1.4/ROOTFILES.i486-2.1.4 Added Paths: ----------- ipcop/trunk/config/rootfiles/common/libnetfilter_cthelper ipcop/trunk/config/rootfiles/common/libnetfilter_queue ipcop/trunk/lfs/libnetfilter_cthelper ipcop/trunk/lfs/libnetfilter_queue Added: ipcop/trunk/config/rootfiles/common/libnetfilter_cthelper =================================================================== --- ipcop/trunk/config/rootfiles/common/libnetfilter_cthelper (rev 0) +++ ipcop/trunk/config/rootfiles/common/libnetfilter_cthelper 2014-04-04 20:42:15 UTC (rev 7413) @@ -0,0 +1,6 @@ +#usr/include/libnetfilter_cthelper +#usr/include/libnetfilter_cthelper/libnetfilter_cthelper.h +#usr/lib/libnetfilter_cthelper.so +usr/lib/libnetfilter_cthelper.so.0 +usr/lib/libnetfilter_cthelper.so.0.0.0 +#usr/lib/pkgconfig/libnetfilter_cthelper.pc Added: ipcop/trunk/config/rootfiles/common/libnetfilter_queue =================================================================== --- ipcop/trunk/config/rootfiles/common/libnetfilter_queue (rev 0) +++ ipcop/trunk/config/rootfiles/common/libnetfilter_queue 2014-04-04 20:42:15 UTC (rev 7413) @@ -0,0 +1,13 @@ +#usr/include/internal.h +#usr/include/libnetfilter_queue +#usr/include/libnetfilter_queue/libnetfilter_queue.h +#usr/include/libnetfilter_queue/libnetfilter_queue_ipv4.h +#usr/include/libnetfilter_queue/libnetfilter_queue_ipv6.h +#usr/include/libnetfilter_queue/libnetfilter_queue_tcp.h +#usr/include/libnetfilter_queue/libnetfilter_queue_udp.h +#usr/include/libnetfilter_queue/linux_nfnetlink_queue.h +#usr/include/libnetfilter_queue/pktbuff.h +#usr/lib/libnetfilter_queue.so +usr/lib/libnetfilter_queue.so.1 +usr/lib/libnetfilter_queue.so.1.3.0 +#usr/lib/pkgconfig/libnetfilter_queue.pc Added: ipcop/trunk/lfs/libnetfilter_cthelper =================================================================== --- ipcop/trunk/lfs/libnetfilter_cthelper (rev 0) +++ ipcop/trunk/lfs/libnetfilter_cthelper 2014-04-04 20:42:15 UTC (rev 7413) @@ -0,0 +1,90 @@ +############################################################################### +# This file is part of the IPCop Firewall. # +# # +# IPCop 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 # +# (at your option) any later version. # +# # +# IPCop 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 <r...@sunsetsystems.com> # +# # +# Modifications by: # +# ??-12-2003 Mark Wormgoor < m...@wormgoor.com> # +# - Modified Makefile for IPCop build # +# # +# $Id$ +# # +############################################################################### + +############################################################################### +# Definitions +############################################################################### + +include Config + +PKG_NAME = libnetfilter_cthelper +VER = 1.0.0 +HOST_ARCH = all +OTHER_SRC = yes + +THISAPP = $(PKG_NAME)-$(VER) +DL_FILE = $(THISAPP).tar.bz2 +DL_FROM = http://www.netfilter.org/projects/libnetfilter_cthelper/files +DIR_APP = $(DIR_SRC)/$(THISAPP) +TARGET = $(DIR_INFO)/$(STAGE_ORDER)_$(STAGE)/$(THISAPP) + +############################################################################### +# Top-level Rules +############################################################################### + +objects = $(DL_FILE) + +$(DL_FILE) = $(DL_FROM)/$(DL_FILE) + +$(DL_FILE)_MD5 = b2efab1a3a198a5add448960ba011acd + +install : $(TARGET) + +check : $(patsubst %,$(DIR_CHK)/%,$(objects)) + +download :$(patsubst %,$(DIR_DL)/%,$(objects)) + +md5 : $(subst %,%_MD5,$(objects)) + +############################################################################### +# Downloading, checking, md5sum +############################################################################### + +$(patsubst %,$(DIR_CHK)/%,$(objects)) : + @$(CHECK) + +$(patsubst %,$(DIR_DL)/%,$(objects)) : + @$(LOAD) + +$(subst %,%_MD5,$(objects)) : + @$(MD5) + +############################################################################### +# Installation Details +############################################################################### + +$(TARGET) : $(firstword $(MAKEFILE_LIST)) $(patsubst %,$(DIR_DL)/%,$(objects)) + @$(PREBUILD) + @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar jxf $(DIR_DL)/$(DL_FILE) + + cd $(DIR_APP) && ./configure --prefix=/usr --disable-static + cd $(DIR_APP) && make && make install + rm /usr/lib/libnetfilter_cthelper.la + + @rm -rf $(DIR_APP) + @$(POSTBUILD) Property changes on: ipcop/trunk/lfs/libnetfilter_cthelper ___________________________________________________________________ Added: svn:keywords ## -0,0 +1 ## +Id \ No newline at end of property Added: ipcop/trunk/lfs/libnetfilter_queue =================================================================== --- ipcop/trunk/lfs/libnetfilter_queue (rev 0) +++ ipcop/trunk/lfs/libnetfilter_queue 2014-04-04 20:42:15 UTC (rev 7413) @@ -0,0 +1,90 @@ +############################################################################### +# This file is part of the IPCop Firewall. # +# # +# IPCop 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 # +# (at your option) any later version. # +# # +# IPCop 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 <r...@sunsetsystems.com> # +# # +# Modifications by: # +# ??-12-2003 Mark Wormgoor < m...@wormgoor.com> # +# - Modified Makefile for IPCop build # +# # +# $Id$ +# # +############################################################################### + +############################################################################### +# Definitions +############################################################################### + +include Config + +PKG_NAME = libnetfilter_queue +VER = 1.0.2 +HOST_ARCH = all +OTHER_SRC = yes + +THISAPP = $(PKG_NAME)-$(VER) +DL_FILE = $(THISAPP).tar.bz2 +DL_FROM = http://www.netfilter.org/projects/libnetfilter_queue/files +DIR_APP = $(DIR_SRC)/$(THISAPP) +TARGET = $(DIR_INFO)/$(STAGE_ORDER)_$(STAGE)/$(THISAPP) + +############################################################################### +# Top-level Rules +############################################################################### + +objects = $(DL_FILE) + +$(DL_FILE) = $(DL_FROM)/$(DL_FILE) + +$(DL_FILE)_MD5 = df09befac35cb215865b39a36c96a3fa + +install : $(TARGET) + +check : $(patsubst %,$(DIR_CHK)/%,$(objects)) + +download :$(patsubst %,$(DIR_DL)/%,$(objects)) + +md5 : $(subst %,%_MD5,$(objects)) + +############################################################################### +# Downloading, checking, md5sum +############################################################################### + +$(patsubst %,$(DIR_CHK)/%,$(objects)) : + @$(CHECK) + +$(patsubst %,$(DIR_DL)/%,$(objects)) : + @$(LOAD) + +$(subst %,%_MD5,$(objects)) : + @$(MD5) + +############################################################################### +# Installation Details +############################################################################### + +$(TARGET) : $(firstword $(MAKEFILE_LIST)) $(patsubst %,$(DIR_DL)/%,$(objects)) + @$(PREBUILD) + @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar jxf $(DIR_DL)/$(DL_FILE) + + cd $(DIR_APP) && ./configure --prefix=/usr --disable-static + cd $(DIR_APP) && make && make install + rm /usr/lib/libnetfilter_queue.la + + @rm -rf $(DIR_APP) + @$(POSTBUILD) Property changes on: ipcop/trunk/lfs/libnetfilter_queue ___________________________________________________________________ Added: svn:keywords ## -0,0 +1 ## +Id \ No newline at end of property Modified: ipcop/trunk/make.sh =================================================================== --- ipcop/trunk/make.sh 2014-04-04 20:35:37 UTC (rev 7412) +++ ipcop/trunk/make.sh 2014-04-04 20:42:15 UTC (rev 7413) @@ -1887,7 +1887,9 @@ chroot_make libnetfilter_acct # iptables/conntrack chroot_make libnetfilter_log # iptables/conntrack chroot_make libnetfilter_conntrack # iptables/conntrack + chroot_make libnetfilter_cthelper # iptables/conntrack chroot_make libnetfilter_cttimeout # iptables/conntrack + chroot_make libnetfilter_queue # iptables/conntrack chroot_make iptables chroot_make conntrack-tools chroot_make iptstate Modified: ipcop/trunk/updates/2.1.4/ROOTFILES.i486-2.1.4 =================================================================== --- ipcop/trunk/updates/2.1.4/ROOTFILES.i486-2.1.4 2014-04-04 20:35:37 UTC (rev 7412) +++ ipcop/trunk/updates/2.1.4/ROOTFILES.i486-2.1.4 2014-04-04 20:42:15 UTC (rev 7413) @@ -9,6 +9,14 @@ /usr/lib/pppd/2.4.6/capiplugin.so /usr/lib/pppd/2.4.6/userpass.so ## +## libnetfilter_cthelper-1.0.0 +/usr/lib/libnetfilter_cthelper.so.0 +/usr/lib/libnetfilter_cthelper.so.0.0.0 +## +## libnetfilter_queue-1.0.2 +/usr/lib/libnetfilter_queue.so.1 +/usr/lib/libnetfilter_queue.so.1.3.0 +## ## linux-3.4-2 (3.4.86) /boot/vmlinuz /boot/vmlinuz-3.4-2 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. ------------------------------------------------------------------------------ _______________________________________________ Ipcop-svn mailing list Ipcop-svn@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/ipcop-svn