f222900fb8
Signed-off-by: Dirk Neukirchen <dirkneukirchen@web.de> Signed-off-by: Gabor Juhos <juhosg@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/packages@40257 3c298f89-4303-0410-b956-a3cf2f4a3e73
51 lines
1.0 KiB
Makefile
51 lines
1.0 KiB
Makefile
#
|
|
# Copyright (C) 2006 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:=fprobe-ulog
|
|
PKG_VERSION:=1.1
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
|
PKG_SOURCE_URL:=@SF/fprobe
|
|
PKG_MD5SUM:=cdb2e4edc47e8a3d5479eeabfb979ebc
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/fprobe-ulog
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
DEPENDS:=+libpthread
|
|
TITLE:=NetFlow probe (ulog-based)
|
|
URL:=http://fprobe.sourceforge.net
|
|
endef
|
|
|
|
define Package/fprobe-ulog/description
|
|
A NetFlow probe obtaining packets through linux netfilter code
|
|
(iptables ULOG target).
|
|
endef
|
|
|
|
define Build/Configure
|
|
$(call Build/Configure/Default, \
|
|
--with-piddir=/var \
|
|
--with-membulk=index8 \
|
|
--with-hash=xor8 \
|
|
)
|
|
endef
|
|
|
|
define Build/Compile
|
|
$(MAKE) -C $(PKG_BUILD_DIR)
|
|
endef
|
|
|
|
define Package/fprobe-ulog/install
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/src/fprobe-ulog $(1)/usr/bin/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,fprobe-ulog))
|