8476e88d29
git-svn-id: svn://svn.openwrt.org/openwrt/packages@32240 3c298f89-4303-0410-b956-a3cf2f4a3e73
64 lines
1.5 KiB
Makefile
64 lines
1.5 KiB
Makefile
#
|
|
# Copyright (C) 2006-2009 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:=ipcad
|
|
PKG_VERSION:=3.7.3
|
|
PKG_RELEASE:=3
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
PKG_SOURCE_URL:=@SF/ipcad
|
|
PKG_MD5SUM:=125605249958894148ec26d3c88189f5
|
|
|
|
PKG_INSTALL:=1
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/ipcad
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
DEPENDS:=+libpcap $(LIBRPC_DEPENDS) +libpthread
|
|
TITLE:=listens for traffic on the specified interfaces
|
|
URL:=http://lionet.info/ipcad/
|
|
endef
|
|
|
|
define Package/ipcad/description
|
|
This daemon listens for traffic on the specified interfaces.
|
|
It has the built-in RSH and NetFlow engines to allow exporting
|
|
the accounting data the same way as Cisco routers do.
|
|
endef
|
|
|
|
define Package/ipcad/conffiles/
|
|
/etc/ipcad.conf
|
|
endef
|
|
|
|
CONFIGURE_ARGS += \
|
|
--enable-shared \
|
|
--disable-static \
|
|
--with-psrc=pcap \
|
|
--with-pcap-include="$(STAGING_DIR)/usr/include" \
|
|
--with-pcap-libraries="$(STAGING_DIR)/usr/lib" \
|
|
|
|
# XXX: don't detect/use netfilter QUEUE/ULOG captures
|
|
CONFIGURE_VARS += \
|
|
ac_cv_func_getifaddrs=no \
|
|
ac_cv_header_ifaddrs_h=no \
|
|
ac_cv_header_linux_netfilter_ipv4_ip_queue_h=no \
|
|
ac_cv_header_linux_netfilter_ipv4_ipt_ULOG_h=no \
|
|
|
|
TARGET_LDFLAGS += $(LIBRPC)
|
|
|
|
define Package/ipcad/install
|
|
$(INSTALL_DIR) $(1)/etc
|
|
$(CP) $(PKG_INSTALL_DIR)/etc/ipcad.conf $(1)/etc/
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/ipcad $(1)/usr/bin/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,ipcad))
|