From 6233f08fa95dfc93683a8530f72ca902e21d1fe7 Mon Sep 17 00:00:00 2001 From: ms Date: Mon, 27 Feb 2006 17:13:57 +0000 Subject: [PATCH] =?utf8?q?OpenH323=20hinzugef=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit git-svn-id: http://svn.ipfire.org/svn/ipfire/trunk@72 ea5c0bd1-69bd-2848-81d8-4f18e57aeed8 --- doc/packages-list.txt | 4 +- lfs/openh323 | 85 +++++++++++++++++++++++++++++++++++++++++++ lfs/pwlib | 83 ++++++++++++++++++++++++++++++++++++++++++ make.sh | 2 + 4 files changed, 173 insertions(+), 1 deletion(-) create mode 100644 lfs/openh323 create mode 100644 lfs/pwlib diff --git a/doc/packages-list.txt b/doc/packages-list.txt index c9b8d94a4..06cb796e3 100644 --- a/doc/packages-list.txt +++ b/doc/packages-list.txt @@ -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 @@ -115,6 +115,7 @@ * 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 @@ -130,6 +131,7 @@ * 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 index 000000000..3710cdc99 --- /dev/null +++ b/lfs/openh323 @@ -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 # +# # +# 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 index 000000000..51e4d43f2 --- /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 # +# # +# 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 3d2b689f9..fbf4ae3b2 100644 --- a/make.sh +++ b/make.sh @@ -624,6 +624,8 @@ buildipcop() { ipcopmake lpd ipcopmake xampp ipcopmake pam + ipcopmake pwlib + ipcopmake openh323 } buildinstaller() { -- 2.39.5