summaryrefslogtreecommitdiffstats
path: root/package/httping
diff options
context:
space:
mode:
Diffstat (limited to 'package/httping')
-rw-r--r--package/httping/Config.in11
-rw-r--r--package/httping/Makefile36
-rw-r--r--package/httping/ipkg/httping.control4
3 files changed, 51 insertions, 0 deletions
diff --git a/package/httping/Config.in b/package/httping/Config.in
new file mode 100644
index 000000000..a818905a0
--- /dev/null
+++ b/package/httping/Config.in
@@ -0,0 +1,11 @@
+config BR2_PACKAGE_HTTPING
+ prompt "httping........................... Httping is like 'ping' but for http-requests."
+ tristate
+ default m if CONFIG_DEVEL
+ help
+ Httping is like 'ping' but for http-requests.
+ Give it an url, and it'll show you how long it takes to connect, send a
+ request and retrieve the reply (only the headers). Be aware that the
+ transmission across the network also takes time!
+
+ http://www.vanheusden.com/httping/
diff --git a/package/httping/Makefile b/package/httping/Makefile
new file mode 100644
index 000000000..aaab6ab6c
--- /dev/null
+++ b/package/httping/Makefile
@@ -0,0 +1,36 @@
+# $Id: Makefile 1146 2005-06-05 13:32:28Z florian $
+
+include $(TOPDIR)/rules.mk
+
+PKG_NAME:=httping
+PKG_VERSION:=1.0.10
+PKG_RELEASE:=1
+PKG_MD5SUM:=998b00b8babeb3196d28c20ad87d9c15
+
+PKG_SOURCE_URL:=http://www.vanheusden.com/httping/
+PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tgz
+PKG_CAT:=zcat
+
+PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
+
+include $(TOPDIR)/package/rules.mk
+
+$(eval $(call PKG_template,HTTPING,$(PKG_NAME),$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
+
+$(PKG_BUILD_DIR)/.configured:
+ touch $@
+
+$(PKG_BUILD_DIR)/.built:
+ $(MAKE) -C $(PKG_BUILD_DIR) \
+ CC=$(TARGET_CC)
+ touch $@
+
+$(IPKG_HTTPING):
+ mkdir -p $(IDIR_HTTPING)/usr/sbin
+ cp $(PKG_BUILD_DIR)/$(PKG_NAME) $(IDIR_HTTPING)/usr/sbin/
+ $(STRIP) $(IDIR_HTTPING)/usr/sbin/*
+ $(IPKG_BUILD) $(IDIR_HTTPING) $(PACKAGE_DIR)
+
+mostlyclean:
+ $(MAKE) -C $(PKG_BUILD_DIR) clean
+ rm -f $(PKG_BUILD_DIR)/.built
diff --git a/package/httping/ipkg/httping.control b/package/httping/ipkg/httping.control
new file mode 100644
index 000000000..5ab31d962
--- /dev/null
+++ b/package/httping/ipkg/httping.control
@@ -0,0 +1,4 @@
+Package: httping
+Section: net
+Priority: optional
+Description: Httping is like 'ping' but for http-requests.