summaryrefslogtreecommitdiffstats
path: root/package
diff options
context:
space:
mode:
authorflorian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73>2005-12-14 12:01:36 +0000
committerflorian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73>2005-12-14 12:01:36 +0000
commitc620d81965cbaa4f9e72748521e9aadc8aef3004 (patch)
tree1be80177ad740e754b6bca64336eaa1696573a7e /package
parentc56be3f9941752673d2898ed0917761f83aee2e2 (diff)
Added wccpd a Web Cache Coordination Protocol daemon
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@2668 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package')
-rw-r--r--package/Config.in1
-rw-r--r--package/Makefile1
-rwxr-xr-xpackage/wccpd/Config.in9
-rwxr-xr-xpackage/wccpd/Makefile51
-rwxr-xr-xpackage/wccpd/ipkg/wccpd.control5
5 files changed, 67 insertions, 0 deletions
diff --git a/package/Config.in b/package/Config.in
index 4342107e5..51e3e5ec0 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -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"
diff --git a/package/Makefile b/package/Makefile
index e273949fd..b4ad10743 100644
--- a/package/Makefile
+++ b/package/Makefile
@@ -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
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.