1
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-10-06 03:01:18 +02:00

Added wccpd a Web Cache Coordination Protocol daemon

SVN-Revision: 2668
This commit is contained in:
Florian Fainelli 2005-12-14 12:01:36 +00:00
parent 86d260bcd7
commit db75840d96
5 changed files with 67 additions and 0 deletions

@ -136,6 +136,7 @@ source "package/vpnc/Config.in"
source "package/vrrpd/Config.in"
source "package/vsftpd/Config.in"
source "package/vtun/Config.in"
source "package/wccpd/Config.in"
source "package/wificonf/Config.in"
source "package/wifidog/Config.in"
source "package/wireless-tools/Config.in"

@ -212,6 +212,7 @@ package-$(BR2_PACKAGE_VPNC) += vpnc
package-$(BR2_PACKGE_VRRPD) += vrrpd
package-$(BR2_PACKAGE_VTUN) += vtun
package-$(BR2_PACKAGE_VSFTPD) += vsftpd
package-$(BR2_PACKAGE_WCCPD) += wccpd
package-$(BR2_PACKAGE_WIFICONF) += wificonf
package-$(BR2_PACKAGE_WIFIDOG) += wifidog
package-$(BR2_PACKAGE_WIVIZ) += wiviz

@ -0,0 +1,9 @@
config BR2_PACKAGE_WCCPD
prompt "wccpd............................. a Web Cache Coordination daemon"
tristate
default m if CONFIG_DEVEL
help
wccpd is a WCCP (Web Cache Coordination Protocol) server daemon
It allows a router (running Linux) to redirect web traffic to a
group of Squid servers using WCCP as the monitoring/controling
protocol.

51
openwrt/package/wccpd/Makefile Executable file

@ -0,0 +1,51 @@
include $(TOPDIR)/rules.mk
PKG_NAME:=wccpd
PKG_VERSION:=0.2
PKG_RELEASE:=1
PKG_MD5SUM:=5f15c274de61dfb88e0dbfc1ccbe6b67
PKG_SOURCE_URL:=@SF/wccpd
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
PKG_CAT:=zcat
PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
include $(TOPDIR)/package/rules.mk
$(eval $(call PKG_template,WCCPD,$(PKG_NAME),$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
$(PKG_BUILD_DIR)/.configured:
(cd $(PKG_BUILD_DIR); rm -rf config.cache; \
$(TARGET_CONFIGURE_OPTS) \
CFLAGS="$(TARGET_CFLAGS)" \
ac_cv_func_setpgrp_void=yes \
./configure \
--target=$(GNU_TARGET_NAME) \
--host=$(GNU_TARGET_NAME) \
--build=$(GNU_HOST_NAME) \
--prefix=/usr \
--exec-prefix=/usr \
--bindir=/usr/bin \
--sbindir=/usr/sbin \
--libexecdir=/usr/lib \
--sysconfdir=/etc \
--datadir=/usr/share \
--localstatedir=/var \
--mandir=/usr/man \
--mandir=/usr/man \
--infodir=/usr/info \
--program-prefix="" \
--with-gnu-ld \
);
touch $@
$(PKG_BUILD_DIR)/.built:
$(MAKE) DESTDIR=$(PKG_INSTALL_DIR) -C $(PKG_BUILD_DIR) install
touch $@
$(IPKG_WCCPD):
mkdir -p $(IDIR_WCCPD)
cp -fpR $(PKG_INSTALL_DIR)/* $(IDIR_WCCPD)/
$(RSTRIP) $(IDIR_WCCPD)
$(IPKG_BUILD) $(IDIR_WCCPD) $(PACKAGE_DIR)

@ -0,0 +1,5 @@
Package: wccpd
Section: net
Architecture: mipsel
Priority: optional
Description: wccpd is a WCCP (Web Cache Coordination Protocol) server daemon.