removed duplicate freetype
[openwrt/svn-archive/archive.git] / net / fprobe / Makefile
1 #
2 # Copyright (C) 2006 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7 # $Id$
8
9 include $(TOPDIR)/rules.mk
10
11 PKG_NAME:=fprobe
12 PKG_VERSION:=1.1
13 PKG_RELEASE:=1
14
15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
16 PKG_SOURCE_URL:=@SF/fprobe
17 PKG_MD5SUM:=65850d0470078269b33eee58cba77ac2
18 PKG_CAT:=bzcat
19
20 PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
21
22 include $(INCLUDE_DIR)/package.mk
23
24 define Package/fprobe
25 SECTION:=net
26 CATEGORY:=Network
27 DEPENDS:=+libpcap +libpthread
28 TITLE:=NetFlow probe (libpcap-based)
29 URL:=http://fprobe.sourceforge.net/
30 endef
31
32 define Build/Configure
33 $(call Build/Configure/Default, \
34 --with-piddir=/var \
35 --with-pcap="$(STAGING_DIR)/usr/include" \
36 --with-libpcap="$(STAGING_DIR)/usr/lib" \
37 --with-membulk=index8 \
38 --with-hash=xor8 \
39 )
40 endef
41
42 define Build/Compile
43 $(MAKE) -C $(PKG_BUILD_DIR)
44 endef
45
46 define Package/fprobe/install
47 $(INSTALL_DIR) $(1)/usr/bin
48 $(INSTALL_BIN) $(PKG_BUILD_DIR)/src/fprobe $(1)/usr/bin/
49 endef
50
51 $(eval $(call BuildPackage,fprobe))