From 145d080d49635abb27e0d304dc410f334a62b892 Mon Sep 17 00:00:00 2001 From: Florian Fainelli Date: Sun, 11 Apr 2010 18:26:22 +0000 Subject: [PATCH] [package] add e169-stats (#7101) SVN-Revision: 20805 --- net/e169-stats/Makefile | 37 ++++++++++++++++++++++++++++ net/e169-stats/patches/01-make.patch | 11 +++++++++ 2 files changed, 48 insertions(+) create mode 100644 net/e169-stats/Makefile create mode 100644 net/e169-stats/patches/01-make.patch diff --git a/net/e169-stats/Makefile b/net/e169-stats/Makefile new file mode 100644 index 0000000000..65b4abf2c5 --- /dev/null +++ b/net/e169-stats/Makefile @@ -0,0 +1,37 @@ +# +# Copyright (C) 2010 OpenWrt.org +# +# This is free software, licensed under the GNU General Public License v2. +# See /LICENSE for more information. +# + +include $(TOPDIR)/rules.mk + +PKG_NAME:=e169-stats +PKG_VERSION:=0.4 +PKG_RELEASE:=1 + +PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz +PKG_SOURCE_URL:=http://www.mavetju.org/download/ +PKG_MD5SUM:=11aa0b9abf6ff430ba90bbd7ee178774 + +include $(INCLUDE_DIR)/package.mk + +define Package/e169-stats + SECTION:=net + CATEGORY:=Network + TITLE:=e169-stats + URL:=http://www.mavetju.org/weblog/html/00282.html + DEPENDS:=+libncurses +endef + +define Package/e169-stats/description + Huawei E169 statistics, works with other Huawei's devices. +endef + +define Package/e169-stats/install + $(INSTALL_DIR) $(1)/usr/bin + $(INSTALL_BIN) $(PKG_BUILD_DIR)/e169-stats $(1)/usr/bin/ +endef + +$(eval $(call BuildPackage,e169-stats)) diff --git a/net/e169-stats/patches/01-make.patch b/net/e169-stats/patches/01-make.patch new file mode 100644 index 0000000000..d51447b79e --- /dev/null +++ b/net/e169-stats/patches/01-make.patch @@ -0,0 +1,11 @@ +--- e169/Makefile.orig 2009-06-23 09:39:38.000000000 +0200 ++++ e169/Makefile 2010-04-05 22:57:56.000000000 +0200 +@@ -1,7 +1,7 @@ + all: e169-stats + + e169-stats: e169-stats.c +- gcc -Wall -o e169-stats e169-stats.c -lcurses ++ $(CC) -Wall -o e169-stats e169-stats.c -lcurses -I$(STAGING_DIR)/usr/include -L$(STAGING_DIR)/usr/lib + + clean: + -rm e169-stats *.core -- 2.30.2