]> git.ipfire.org Git - ipfire-2.x.git/commitdiff
OpenH323 hinzugefĆ¼gt
authorms <ms@ea5c0bd1-69bd-2848-81d8-4f18e57aeed8>
Mon, 27 Feb 2006 17:13:57 +0000 (17:13 +0000)
committerms <ms@ea5c0bd1-69bd-2848-81d8-4f18e57aeed8>
Mon, 27 Feb 2006 17:13:57 +0000 (17:13 +0000)
git-svn-id: http://svn.ipfire.org/svn/ipfire/trunk@72 ea5c0bd1-69bd-2848-81d8-4f18e57aeed8

doc/packages-list.txt
lfs/openh323 [new file with mode: 0644]
lfs/pwlib [new file with mode: 0644]
make.sh

index c9b8d94a4c87b94c3a719cee9019dc01dcd1797d..06cb796e3a29a1eb6fa1e72f4eb7361ff247e923 100644 (file)
@@ -72,7 +72,7 @@
 * iana-etc-2.00
 * ibod
 * inetutils-1.4.2
-* ipac-ng-1.31
+* ipac-ng-1.28
 * ipaddr-1.2
 * iproute2-2.4.7-now-ss010824
 * iptables-1.3.5
 * noip_updater_v1.6
 * ntp-4.2.0
 * oinkmaster-1.2
+* openh323_1.12.2
 * openssh-3.9p1
 * openssl-0.9.7i
 * openswan-1.0.10
 * procps-3.2.5
 * psmisc-21.4
 * pulsar-4.0.19
+* pwlib_1.5.2
 * rp-pppoe-3.5
 * rrdtool-1.0.49
 * sed-4.0.9
diff --git a/lfs/openh323 b/lfs/openh323
new file mode 100644 (file)
index 0000000..3710cdc
--- /dev/null
@@ -0,0 +1,85 @@
+###############################################################################
+# 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 <rod@sunsetsystems.com>                        #
+#                                                                             #
+# Modifications by:                                                           #
+# ??-12-2003 Mark Wormgoor < mark@wormgoor.com>                               #
+#          - Modified Makefile for IPCop build                                #
+#                                                                             #
+# $Id: ntp,v 1.6.2.3 2005/02/05 15:38:15 gespinasse Exp $
+#                                                                             #
+###############################################################################
+
+###############################################################################
+# Definitions
+###############################################################################
+
+include Config
+
+VER        = 1.12.2
+
+THISAPP    = openh323_$(VER)
+DL_FILE    = $(THISAPP).tar.gz
+DL_FROM    = http://www.openh323.org/bin
+DIR_APP    = $(DIR_SRC)/openh323
+TARGET     = $(DIR_INFO)/$(THISAPP)
+
+###############################################################################
+# Top-level Rules
+###############################################################################
+
+objects = $(DL_FILE)
+
+$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
+
+$(DL_FILE)_MD5 = 15f0b12b60769d03eca9e498050776f3
+
+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) && ./configure --prefix=/usr
+       cd $(DIR_APP) && make opt PWLIBDIR=/usr/src/pwlib && make install PWLIBDIR=/usr/src/pwlib
+       @rm -rf $(DIR_APP)
+       @rm -rf /usr/src/pwlib
+       @$(POSTBUILD)
diff --git a/lfs/pwlib b/lfs/pwlib
new file mode 100644 (file)
index 0000000..51e4d43
--- /dev/null
+++ b/lfs/pwlib
@@ -0,0 +1,83 @@
+###############################################################################
+# 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 <rod@sunsetsystems.com>                        #
+#                                                                             #
+# Modifications by:                                                           #
+# ??-12-2003 Mark Wormgoor < mark@wormgoor.com>                               #
+#          - Modified Makefile for IPCop build                                #
+#                                                                             #
+# $Id: ntp,v 1.6.2.3 2005/02/05 15:38:15 gespinasse Exp $
+#                                                                             #
+###############################################################################
+
+###############################################################################
+# Definitions
+###############################################################################
+
+include Config
+
+VER        = 1.5.2
+
+THISAPP    = pwlib_$(VER)
+DL_FILE    = $(THISAPP).tar.gz
+DL_FROM    = http://www.openh323.org/bin
+DIR_APP    = $(DIR_SRC)/pwlib
+TARGET     = $(DIR_INFO)/$(THISAPP)
+
+###############################################################################
+# Top-level Rules
+###############################################################################
+
+objects = $(DL_FILE)
+
+$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
+
+$(DL_FILE)_MD5 = 0fa33ba1b32b254abe0b731a52c0f2f9
+
+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) && ./configure --prefix=/usr
+       cd $(DIR_APP) && make opt && make install
+       @$(POSTBUILD)
diff --git a/make.sh b/make.sh
index 3d2b689f9a1fcd9f896704383cf6db305a0c6968..fbf4ae3b27061341f4b2f4462ec35374ce580484 100644 (file)
--- a/make.sh
+++ b/make.sh
@@ -624,6 +624,8 @@ buildipcop() {
   ipcopmake lpd
   ipcopmake xampp
   ipcopmake pam
+  ipcopmake pwlib
+  ipcopmake openh323
 }
 
 buildinstaller() {