From a20aa237203f613553e01e56484b2164e863a80a Mon Sep 17 00:00:00 2001 From: nbd Date: Mon, 4 Apr 2005 22:12:17 +0000 Subject: add aiccu, bwm, ntpclient and radvd (from Sebastian Noel) git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@562 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- package/bwm/Config.in | 5 +++++ package/bwm/Makefile | 43 +++++++++++++++++++++++++++++++++++++++++++ package/bwm/bwm.control | 6 ++++++ 3 files changed, 54 insertions(+) create mode 100644 package/bwm/Config.in create mode 100644 package/bwm/Makefile create mode 100644 package/bwm/bwm.control (limited to 'package/bwm') diff --git a/package/bwm/Config.in b/package/bwm/Config.in new file mode 100644 index 000000000..3a04ffd93 --- /dev/null +++ b/package/bwm/Config.in @@ -0,0 +1,5 @@ +config BR2_PACKAGE_BWM + tristate "bwm" + default m + help + A very tiny bandwidth monitor. diff --git a/package/bwm/Makefile b/package/bwm/Makefile new file mode 100644 index 000000000..cf9c51e91 --- /dev/null +++ b/package/bwm/Makefile @@ -0,0 +1,43 @@ +include $(TOPDIR)/rules.mk + +PKG_NAME:=bwm +PKG_VERSION:=1.1.0 +PKG_RELEASE:=1 +PKG_MD5SUM:=51021a036acb92d2bda0c0c0483f9552 + +PKG_SOURCE_URL:=http://ftp.debian.org/debian/pool/main/b/bwm +PKG_SOURCE:=$(PKG_NAME)_$(PKG_VERSION).orig.tar.gz +PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION).orig +PKG_CAT:=zcat +PKG_IPK:=$(PACKAGE_DIR)/$(PKG_NAME)_$(PKG_VERSION)-$(PKG_RELEASE)_$(ARCH).ipk +PKG_IPK_DIR:=$(PKG_BUILD_DIR)/ipkg + +$(DL_DIR)/$(PKG_SOURCE): + $(SCRIPT_DIR)/download.pl $(DL_DIR) $(PKG_SOURCE) $(PKG_MD5SUM) $(PKG_SOURCE_URL) + +$(PKG_BUILD_DIR)/.unpacked: $(DL_DIR)/$(PKG_SOURCE) + $(PKG_CAT) $(DL_DIR)/$(PKG_SOURCE) | tar -C $(BUILD_DIR) $(TAR_OPTIONS) - + touch $(PKG_BUILD_DIR)/.unpacked + +$(PKG_BUILD_DIR)/$(PKG_NAME): $(PKG_BUILD_DIR)/.unpacked + $(TARGET_CC) $(TARGET_CFLAGS) $(PKG_BUILD_DIR)/bwm.c -o $(PKG_BUILD_DIR)/bwm + +$(PKG_IPK): $(PKG_BUILD_DIR)/$(PKG_NAME) + $(SCRIPT_DIR)/make-ipkg-dir.sh $(PKG_IPK_DIR) $(PKG_NAME).control $(PKG_VERSION)-$(PKG_RELEASE) $(ARCH) + mkdir -p $(PKG_IPK_DIR)/usr/bin + install -m 755 $(PKG_BUILD_DIR)/$(PKG_NAME) $(PKG_IPK_DIR)/usr/bin/ + $(STRIP) $(PKG_IPK_DIR)/usr/bin/* + mkdir -p $(PACKAGE_DIR) + $(IPKG_BUILD) $(PKG_IPK_DIR) $(PACKAGE_DIR) + +$(IPKG_STATE_DIR)/info/$(PKG_NAME).list: $(PKG_IPK) + $(IPKG) install $(PKG_IPK) + +source: $(DL_DIR)/$(PKG_SOURCE) +prepare: $(PKG_BUILD_DIR)/.unpacked +compile: $(PKG_IPK) +install: $(IPKG_STATE_DIR)/info/$(PKG_NAME).list + +clean: + rm -rf $(PKG_BUILD_DIR) + rm -f $(PKG_IPK) diff --git a/package/bwm/bwm.control b/package/bwm/bwm.control new file mode 100644 index 000000000..41fe4ee84 --- /dev/null +++ b/package/bwm/bwm.control @@ -0,0 +1,6 @@ +Package: bwm +Priority: optional +Section: net +Maintainer: Sebastien NOEL +Source: http://ftp.debian.org/debian/pool/main/b/bwm/ +Description: A very tiny bandwidth monitor -- cgit v1.2.3