From e9581f09df723395dc0c56bd88c35faa7f43d311 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Mon, 22 Nov 2010 01:12:05 +0100 Subject: [PATCH] New package: miniupnpd. --- lfs/miniupnpd | 79 +++++++++++++++++++++++++++++ make.sh | 1 + src/patches/miniupnpd-iptcrdr.patch | 16 ++++++ 3 files changed, 96 insertions(+) create mode 100644 lfs/miniupnpd create mode 100644 src/patches/miniupnpd-iptcrdr.patch diff --git a/lfs/miniupnpd b/lfs/miniupnpd new file mode 100644 index 0000000000..96531db716 --- /dev/null +++ b/lfs/miniupnpd @@ -0,0 +1,79 @@ +############################################################################### +# # +# 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 3 of the License, or # +# (at your option) any later version. # +# # +# 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 this program. If not, see . # +# # +############################################################################### + +############################################################################### +# Definitions +############################################################################### + +include Config + +VER = 1.4 + +THISAPP = miniupnpd-$(VER) +DL_FILE = $(THISAPP).tar.gz +DL_FROM = $(URL_IPFIRE) +DIR_APP = $(DIR_SRC)/$(THISAPP) +TARGET = $(DIR_INFO)/$(THISAPP) + +############################################################################### +# Top-level Rules +############################################################################### + +objects = $(DL_FILE) + +$(DL_FILE) = $(DL_FROM)/$(DL_FILE) + +$(DL_FILE)_MD5 = ffa33d4ed8732c662bdb7d511e86db76 + +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) : $(patsubst %,$(DIR_DL)/%,$(objects)) + @$(PREBUILD) + @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE) + cd $(DIR_APP) && patch -Np0 -i $(DIR_SRC)/src/patches/miniupnpd-iptcrdr.patch + cd $(DIR_APP) && make -f Makefile.linux \ + CFLAGS="$(CFLAGS) -DIPTABLES_143 -I/usr/src/linux/include" + + cd $(DIR_APP) && install -m 755 miniupnpd /usr/sbin + @rm -rf $(DIR_APP) + @$(POSTBUILD) diff --git a/make.sh b/make.sh index 03cf937360..479cae58e2 100755 --- a/make.sh +++ b/make.sh @@ -648,6 +648,7 @@ buildipfire() { ipfiremake minicom ipfiremake ddrescue ipfiremake imspector + ipfiremake miniupnpd echo Build on $HOSTNAME > $BASEDIR/build/var/ipfire/firebuild cat /proc/version >> $BASEDIR/build/var/ipfire/firebuild echo >> $BASEDIR/build/var/ipfire/firebuild diff --git a/src/patches/miniupnpd-iptcrdr.patch b/src/patches/miniupnpd-iptcrdr.patch new file mode 100644 index 0000000000..677043bdc3 --- /dev/null +++ b/src/patches/miniupnpd-iptcrdr.patch @@ -0,0 +1,16 @@ +--- netfilter/iptcrdr.c.old 2010-02-24 14:22:23.000000000 +0100 ++++ netfilter/iptcrdr.c 2010-02-24 14:48:00.000000000 +0100 +@@ -20,6 +20,13 @@ + + #if IPTABLES_143 + /* IPTABLES API version >= 1.4.3 */ ++ ++#define BUILD_BUG_ON_ZERO(e) (sizeof(struct { int:-!!(e); })) ++#define __must_be_array(a) \ ++ BUILD_BUG_ON_ZERO(__builtin_types_compatible_p(typeof(a), typeof(&a[0]))) ++#define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]) + __must_be_array(arr)) ++#define LIST_POISON2 ((void *) 0x00200200 ) ++ + #include + #define ip_nat_multi_range nf_nat_multi_range + #define ip_nat_range nf_nat_range -- 2.39.2