Revision: 7102 http://sourceforge.net/p/ipcop/svn/7102 Author: dotzball Date: 2013-09-01 17:07:30 +0000 (Sun, 01 Sep 2013) Log Message: ----------- Add libnetfilter_acct-1.0.2 and libnetfilter_log-1.0.1
Preparation for ulogd upgrade. Modified Paths: -------------- ipcop/trunk/make.sh ipcop/trunk/updates/2.1.0/ROOTFILES.i486-2.1.0 ipcop/trunk/updates/2.1.0/information.xml Added Paths: ----------- ipcop/trunk/config/rootfiles/common/libnetfilter_acct ipcop/trunk/config/rootfiles/common/libnetfilter_log ipcop/trunk/lfs/libnetfilter_acct ipcop/trunk/lfs/libnetfilter_log Added: ipcop/trunk/config/rootfiles/common/libnetfilter_acct =================================================================== --- ipcop/trunk/config/rootfiles/common/libnetfilter_acct (rev 0) +++ ipcop/trunk/config/rootfiles/common/libnetfilter_acct 2013-09-01 17:07:30 UTC (rev 7102) @@ -0,0 +1,6 @@ +#usr/include/libnetfilter_acct +#usr/include/libnetfilter_acct/libnetfilter_acct.h +#usr/lib/libnetfilter_acct.so +usr/lib/libnetfilter_acct.so.1 +usr/lib/libnetfilter_acct.so.1.0.0 +#usr/lib/pkgconfig/libnetfilter_acct.pc Added: ipcop/trunk/config/rootfiles/common/libnetfilter_log =================================================================== --- ipcop/trunk/config/rootfiles/common/libnetfilter_log (rev 0) +++ ipcop/trunk/config/rootfiles/common/libnetfilter_log 2013-09-01 17:07:30 UTC (rev 7102) @@ -0,0 +1,11 @@ +#usr/include/libnetfilter_log +#usr/include/libnetfilter_log/libipulog.h +#usr/include/libnetfilter_log/libnetfilter_log.h +#usr/include/libnetfilter_log/linux_nfnetlink_log.h +#usr/lib/libnetfilter_log.so +usr/lib/libnetfilter_log.so.1 +usr/lib/libnetfilter_log.so.1.1.0 +#usr/lib/libnetfilter_log_libipulog.so +usr/lib/libnetfilter_log_libipulog.so.1 +usr/lib/libnetfilter_log_libipulog.so.1.0.0 +#usr/lib/pkgconfig/libnetfilter_log.pc Added: ipcop/trunk/lfs/libnetfilter_acct =================================================================== --- ipcop/trunk/lfs/libnetfilter_acct (rev 0) +++ ipcop/trunk/lfs/libnetfilter_acct 2013-09-01 17:07:30 UTC (rev 7102) @@ -0,0 +1,91 @@ +############################################################################### +# 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_acct +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_acct/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 = 2118d9514c079839ebd9cb3144ad2ad7 + +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_acct.la + + @rm -rf $(DIR_APP) + @$(POSTBUILD) Property changes on: ipcop/trunk/lfs/libnetfilter_acct ___________________________________________________________________ Added: svn:keywords ## -0,0 +1 ## +Id \ No newline at end of property Added: ipcop/trunk/lfs/libnetfilter_log =================================================================== --- ipcop/trunk/lfs/libnetfilter_log (rev 0) +++ ipcop/trunk/lfs/libnetfilter_log 2013-09-01 17:07:30 UTC (rev 7102) @@ -0,0 +1,92 @@ +############################################################################### +# 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_log +VER = 1.0.1 +HOST_ARCH = all +OTHER_SRC = yes + +THISAPP = $(PKG_NAME)-$(VER) +DL_FILE = $(THISAPP).tar.bz2 +DL_FROM = http://www.netfilter.org/projects/libnetfilter_log/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 = 2a4bb0654ae675a52d2e8d1c06090b94 + +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_log.la + rm /usr/lib/libnetfilter_log_libipulog.la + + @rm -rf $(DIR_APP) + @$(POSTBUILD) Property changes on: ipcop/trunk/lfs/libnetfilter_log ___________________________________________________________________ Added: svn:keywords ## -0,0 +1 ## +Id \ No newline at end of property Modified: ipcop/trunk/make.sh =================================================================== --- ipcop/trunk/make.sh 2013-09-01 11:10:03 UTC (rev 7101) +++ ipcop/trunk/make.sh 2013-09-01 17:07:30 UTC (rev 7102) @@ -1881,6 +1881,8 @@ chroot_make ibod chroot_make libmnl # iptables/conntrack chroot_make libnfnetlink # iptables/conntrack + chroot_make libnetfilter_acct # iptables/conntrack + chroot_make libnetfilter_log # iptables/conntrack chroot_make libnetfilter_conntrack # iptables/conntrack chroot_make libnetfilter_cttimeout # iptables/conntrack chroot_make iptables Modified: ipcop/trunk/updates/2.1.0/ROOTFILES.i486-2.1.0 =================================================================== --- ipcop/trunk/updates/2.1.0/ROOTFILES.i486-2.1.0 2013-09-01 11:10:03 UTC (rev 7101) +++ ipcop/trunk/updates/2.1.0/ROOTFILES.i486-2.1.0 2013-09-01 17:07:30 UTC (rev 7102) @@ -447,10 +447,20 @@ /usr/lib/libnfnetlink.so.0 /usr/lib/libnfnetlink.so.0.2.0 ## +## libnetfilter_acct-1.0.2 +/usr/lib/libnetfilter_acct.so.1 +/usr/lib/libnetfilter_acct.so.1.0.0 +## ## libnetfilter_conntrack-1.0.4 /usr/lib/libnetfilter_conntrack.so.3 /usr/lib/libnetfilter_conntrack.so.3.5.0 ## +## libnetfilter_log-1.0.1 +/usr/lib/libnetfilter_log.so.1 +/usr/lib/libnetfilter_log.so.1.1.0 +/usr/lib/libnetfilter_log_libipulog.so.1 +/usr/lib/libnetfilter_log_libipulog.so.1.0.0 +## ## libnl-3.2.16 /usr/lib/libnl-3.so.200 /usr/lib/libnl-3.so.200.12.1 Modified: ipcop/trunk/updates/2.1.0/information.xml =================================================================== --- ipcop/trunk/updates/2.1.0/information.xml 2013-09-01 11:10:03 UTC (rev 7101) +++ ipcop/trunk/updates/2.1.0/information.xml 2013-09-01 17:07:30 UTC (rev 7102) @@ -5,7 +5,7 @@ <size>0</size> <description>setserial, pcmciautils, perl, ppp, openvpn radiusplugin patched<br /> cairo recompiled with -O3, isdn4k-utils with -Os -fno-strict-aliasing<br /> - Add xz-5.0.4<br /> + Add libnetfilter_acct-1.0.2, libnetfilter_log-1.0.1, xz-5.0.4<br /> Language updates.<br /> Fix SF bug #805, undefined value in connections webui.<br /> Upgrade acpid to 2.0.17, arping to 2.13, bash to 4.2.45, bind to 9.8.4-P2, CnxADSL to ..PIM-2.6-2.7 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. ------------------------------------------------------------------------------ Learn the latest--Visual Studio 2012, SharePoint 2013, SQL 2012, more! Discover the easy way to master current and previous Microsoft technologies and advance your career. Get an incredible 1,500+ hours of step-by-step tutorial videos with LearnDevNow. Subscribe today and save! http://pubads.g.doubleclick.net/gampad/clk?id=58040911&iu=/4140/ostg.clktrk _______________________________________________ Ipcop-svn mailing list Ipcop-svn@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/ipcop-svn