updated squid

added igmpproxy
updated hdparm
added recent changes to core9


git-svn-id: http://svn.ipfire.org/svn/ipfire/branches/2.1/trunk@1239 ea5c0bd1-69bd-2848-81d8-4f18e57aeed8
This commit is contained in:
maniacikarus
2008-02-27 17:36:46 +00:00
parent cf8f37b123
commit 323208ea01
8 changed files with 106 additions and 8 deletions

View File

@@ -419,7 +419,7 @@ sub updatelqgraph {
"AREA:r2".$color{"color14"}."A0:70-150 ms",
"AREA:r1".$color{"color17"}."A0:30-70 ms",
"AREA:r0".$color{"color12"}."A0:<30 ms\\j",
"COMMENT:".sprintf("%15s",$Lang::tr{'maximal'}),
"COMMENT:".sprintf("%-15s",$Lang::tr{'maximal'}),
"COMMENT:".sprintf("%15s",$Lang::tr{'average'}),
"COMMENT:".sprintf("%15s",$Lang::tr{'minimal'}),
"COMMENT:".sprintf("%15s",$Lang::tr{'current'})."\\j",

View File

@@ -0,0 +1,9 @@
sbin/hdparm
usr/lib/collectd
usr/sbin/collectd
usr/sbin/collectdmon
etc/init.d/networking/red
etc/squid
usr/lib/squid
usr/sbin/squid
var/ipfire/graphs.pl

View File

@@ -0,0 +1,4 @@
etc/igmpproxy.conf
usr/local/bin/igmpproxy
#usr/share/man/man5/igmpproxy.conf.5
#usr/share/man/man8/igmpproxy.8

View File

@@ -101,7 +101,8 @@
* guardian-ipfire
* gzip-1.3.5
* hddtemp-0.3-beta14
* hdparm-8.4
* hdparm-8.5
* hdparm-8.6
* hplip-2.7.10
* htop-0.7
* httpd-2.2.6
@@ -109,8 +110,8 @@
* iana-etc-2.10
* icecast-2.3.1
* icegenerator-0.5.5-pre2
* igmpproxy-src-0.1-beta2
* inetutils-1.4.2
* ip1000a-2.10c
* ipac-ng-1.31
* ipaddr-1.2
* ipfireseeder-1.00
@@ -236,7 +237,7 @@
* sox-12.18.1
* spandsp-0.0.3pre24
* squashfs3.2-r2
* squid-2.6.STABLE16
* squid-2.6.STABLE18
* squid-graph-3.2
* squidGuard-1.3
* subversion-1.4.4

View File

@@ -24,7 +24,7 @@
include Config
VER = 8.4
VER = 8.6
THISAPP = hdparm-$(VER)
DL_FILE = $(THISAPP).tar.gz
@@ -40,7 +40,7 @@ objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
$(DL_FILE)_MD5 = f29945ce67796253157dc3a8041131fb
$(DL_FILE)_MD5 = 237fbceeeba6318b987983fd858994df
install : $(TARGET)

83
lfs/igmpproxy Normal file
View File

@@ -0,0 +1,83 @@
###############################################################################
# #
# 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 <http://www.gnu.org/licenses/>. #
# #
###############################################################################
###############################################################################
# Definitions
###############################################################################
include Config
VER = 0.1-beta2
THISAPP = igmpproxy-src-$(VER)
DL_FILE = $(THISAPP).tar.gz
DL_FROM = $(URL_IPFIRE)
DIR_APP = $(DIR_SRC)/$(THISAPP)
TARGET = $(DIR_INFO)/$(THISAPP)
PROG = igmpproxy
PAK_VER = 1
DEPS = ""
###############################################################################
# Top-level Rules
###############################################################################
objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
$(DL_FILE)_MD5 = 2a5a59480f44d4b14077a6b5319e9940
install : $(TARGET)
check : $(patsubst %,$(DIR_CHK)/%,$(objects))
download :$(patsubst %,$(DIR_DL)/%,$(objects))
md5 : $(subst %,%_MD5,$(objects))
dist:
@$(PAK)
###############################################################################
# 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_SRC)/$(PROG)/src && make $(MAKETUNING)
cd $(DIR_SRC)/$(PROG)/src && make install
@rm -rf $(DIR_APP)
@$(POSTBUILD)

View File

@@ -24,7 +24,7 @@
include Config
VER = 2.6.STABLE16
VER = 2.6.STABLE18
THISAPP = squid-$(VER)
DL_FILE = $(THISAPP).tar.bz2
@@ -40,7 +40,7 @@ objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
$(DL_FILE)_MD5 = 849bee6f269e6c773f215fd4b41de0e3
$(DL_FILE)_MD5 = eb49bc06ea1a40421b6f1ac9e76d1757
install : $(TARGET)

View File

@@ -536,6 +536,7 @@ buildipfire() {
ipfiremake tcptrack
ipfiremake teamspeak
ipfiremake elinks
ipfiremake igmpproxy
}