[packages] Use default templates instead of custom reimplementations where applicable
[openwrt/svn-archive/archive.git] / net / ipcad / Makefile
1 #
2 # Copyright (C) 2006-2009 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:=ipcad
11 PKG_VERSION:=3.7.3
12 PKG_RELEASE:=3
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=@SF/ipcad
16 PKG_MD5SUM:=125605249958894148ec26d3c88189f5
17
18 PKG_INSTALL:=1
19
20 include $(INCLUDE_DIR)/package.mk
21
22 define Package/ipcad
23 SECTION:=net
24 CATEGORY:=Network
25 DEPENDS:=+libpcap
26 TITLE:=listens for traffic on the specified interfaces
27 URL:=http://lionet.info/ipcad/
28 endef
29
30 define Package/ipcad/description
31 This daemon listens for traffic on the specified interfaces.
32 It has the built-in RSH and NetFlow engines to allow exporting
33 the accounting data the same way as Cisco routers do.
34 endef
35
36 define Package/ipcad/conffiles/
37 /etc/ipcad.conf
38 endef
39
40 CONFIGURE_ARGS += \
41 --enable-shared \
42 --disable-static \
43 --with-psrc=pcap \
44 --with-pcap-include="$(STAGING_DIR)/usr/include" \
45 --with-pcap-libraries="$(STAGING_DIR)/usr/lib" \
46
47 # XXX: don't detect/use netfilter QUEUE/ULOG captures
48 CONFIGURE_VARS += \
49 ac_cv_func_getifaddrs=no \
50 ac_cv_header_ifaddrs_h=no \
51 ac_cv_header_linux_netfilter_ipv4_ip_queue_h=no \
52 ac_cv_header_linux_netfilter_ipv4_ipt_ULOG_h=no \
53
54 define Package/ipcad/install
55 $(INSTALL_DIR) $(1)/etc
56 $(CP) $(PKG_INSTALL_DIR)/etc/ipcad.conf $(1)/etc/
57 $(INSTALL_DIR) $(1)/usr/bin
58 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/ipcad $(1)/usr/bin/
59 endef
60
61 $(eval $(call BuildPackage,ipcad))