From 5fa6349565118720199b984aa75920309a755a26 Mon Sep 17 00:00:00 2001 From: Florian Fainelli Date: Mon, 13 Feb 2006 12:40:39 +0000 Subject: [PATCH] Added httping SVN-Revision: 3230 --- openwrt/package/Config.in | 1 + openwrt/package/Makefile | 1 + openwrt/package/config/Makefile | 1 + openwrt/package/httping/Config.in | 11 ++++++ openwrt/package/httping/Makefile | 36 ++++++++++++++++++++ openwrt/package/httping/ipkg/httping.control | 4 +++ 6 files changed, 54 insertions(+) create mode 100644 openwrt/package/httping/Config.in create mode 100644 openwrt/package/httping/Makefile create mode 100644 openwrt/package/httping/ipkg/httping.control diff --git a/openwrt/package/Config.in b/openwrt/package/Config.in index b2a54b80c6..e69cad2c3f 100644 --- a/openwrt/package/Config.in +++ b/openwrt/package/Config.in @@ -76,6 +76,7 @@ source "package/howl/Config.in" source "package/hostap-utils/Config.in" source "package/hostapd/Config.in" source "package/htpdate/Config.in" +source "package/httping/Config.in" source "package/iftop/Config.in" source "package/ipcad/Config.in" source "package/iproute2/Config.in" diff --git a/openwrt/package/Makefile b/openwrt/package/Makefile index 927ad57bb9..d16f84d50e 100644 --- a/openwrt/package/Makefile +++ b/openwrt/package/Makefile @@ -62,6 +62,7 @@ package-$(BR2_PACKAGE_HOSTAP_UTILS) += hostap-utils package-$(BR2_PACKAGE_HOSTAPD) += hostapd package-$(BR2_COMPILE_HOWL) += howl package-$(BR2_PACKAGE_HTPDATE) += htpdate +package-$(BR2_PACKAGE_HTTPING) += httping package-$(BR2_PACKAGE_ICECAST) += icecast package-$(BR2_PACKAGE_ID3LIB) += id3lib package-$(BR2_PACKAGE_IFTOP) += iftop diff --git a/openwrt/package/config/Makefile b/openwrt/package/config/Makefile index 9e841d998e..846b04cbb4 100644 --- a/openwrt/package/config/Makefile +++ b/openwrt/package/config/Makefile @@ -9,6 +9,7 @@ HOSTCC = gcc HOSTCFLAGS= -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer # Ensure consistent sort order, 'gcc -print-search-dirs' behavior, etc. LC_ALL:= C +CP:=cp -a all: ncurses conf mconf diff --git a/openwrt/package/httping/Config.in b/openwrt/package/httping/Config.in new file mode 100644 index 0000000000..a818905a0c --- /dev/null +++ b/openwrt/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/openwrt/package/httping/Makefile b/openwrt/package/httping/Makefile new file mode 100644 index 0000000000..aaab6ab6c6 --- /dev/null +++ b/openwrt/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/openwrt/package/httping/ipkg/httping.control b/openwrt/package/httping/ipkg/httping.control new file mode 100644 index 0000000000..5ab31d9621 --- /dev/null +++ b/openwrt/package/httping/ipkg/httping.control @@ -0,0 +1,4 @@ +Package: httping +Section: net +Priority: optional +Description: Httping is like 'ping' but for http-requests. -- 2.30.2