From c620d81965cbaa4f9e72748521e9aadc8aef3004 Mon Sep 17 00:00:00 2001 From: florian Date: Wed, 14 Dec 2005 12:01:36 +0000 Subject: Added wccpd a Web Cache Coordination Protocol daemon git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@2668 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- package/wccpd/Config.in | 9 +++++++ package/wccpd/Makefile | 51 ++++++++++++++++++++++++++++++++++++++++ package/wccpd/ipkg/wccpd.control | 5 ++++ 3 files changed, 65 insertions(+) create mode 100755 package/wccpd/Config.in create mode 100755 package/wccpd/Makefile create mode 100755 package/wccpd/ipkg/wccpd.control (limited to 'package/wccpd') diff --git a/package/wccpd/Config.in b/package/wccpd/Config.in new file mode 100755 index 000000000..33b35ecb0 --- /dev/null +++ b/package/wccpd/Config.in @@ -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. diff --git a/package/wccpd/Makefile b/package/wccpd/Makefile new file mode 100755 index 000000000..318a074df --- /dev/null +++ b/package/wccpd/Makefile @@ -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) diff --git a/package/wccpd/ipkg/wccpd.control b/package/wccpd/ipkg/wccpd.control new file mode 100755 index 000000000..136051d6b --- /dev/null +++ b/package/wccpd/ipkg/wccpd.control @@ -0,0 +1,5 @@ +Package: wccpd +Section: net +Architecture: mipsel +Priority: optional +Description: wccpd is a WCCP (Web Cache Coordination Protocol) server daemon. -- cgit v1.2.3