c3f624aa13b7ce6dce0afd2bf407cb21e7ce96ea
[openwrt/svn-archive/archive.git] / net / darkstat / Makefile
1 #
2 # Copyright (C) 2007-2010 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=darkstat
11 PKG_VERSION:=3.0.713
12 PKG_RELEASE:=1
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
15 PKG_SOURCE_URL:=http://dmr.ath.cx/net/darkstat
16 PKG_MD5SUM:=3fd2a4ddb123ad11bb99f1094a6206d9
17
18 PKG_INSTALL:=1
19
20 include $(INCLUDE_DIR)/package.mk
21
22 define Package/darkstat
23 SECTION:=net
24 CATEGORY:=Network
25 DEPENDS:=+libpcap +zlib
26 TITLE:=Network bandwidth monitor
27 URL:=http://dmr.ath.cx/net/darkstat/
28 endef
29
30 define Package/darkstat/description
31 darkstat is a packet sniffer that runs as a background process on a cable/DSL
32 router, gathers all sorts of statistics about network usage, and serves them
33 over HTTP.
34 endef
35
36 define Package/darkstat/conffiles
37 /etc/config/darkstat
38 endef
39
40 CONFIGURE_ARGS += \
41 --with-chroot-dir=/var/empty
42
43 define Build/Compile
44 $(HOSTCC) $(PKG_BUILD_DIR)/static/c-ify.c \
45 -o $(PKG_BUILD_DIR)/c-ify
46 $(call Build/Compile/Default)
47 endef
48
49 define Package/darkstat/install
50 $(INSTALL_DIR) $(1)/usr/sbin
51 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/darkstat $(1)/usr/sbin/
52 $(INSTALL_DIR) $(1)/etc/init.d
53 $(INSTALL_BIN) ./files/darkstat.init $(1)/etc/init.d/darkstat
54 $(INSTALL_DIR) $(1)/etc/config
55 $(INSTALL_CONF) ./files/darkstat.conf $(1)/etc/config/darkstat
56 endef
57
58 $(eval $(call BuildPackage,darkstat))