net/usbip: fix SDK compile issues
[openwrt/svn-archive/archive.git] / net / ngrep / 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:=ngrep
11 PKG_VERSION:=1.45
12 PKG_RELEASE:=3
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
15 PKG_SOURCE_URL:=@SF/ngrep
16 PKG_MD5SUM:=bc8150331601f3b869549c94866b4f1c
17
18 PKG_INSTALL:=1
19
20 include $(INCLUDE_DIR)/package.mk
21
22 define Package/ngrep
23 SECTION:=net
24 CATEGORY:=Network
25 DEPENDS:=+libpcap +libpcre
26 TITLE:=network grep
27 URL:=http://ngrep.sourceforge.net
28 endef
29
30 define Package/ngrep/description
31 ngrep a pcap-aware tool that will allow you to specify extended
32 regular expressions to match against data payloads of packets. It
33 currently recognizes TCP, UDP, and ICMP across Ethernet, PPP, SLIP,
34 FDDI, Token Ring and null interfaces, and understands BPF filter
35 logic in the same fashion as more common packet sniffing tools,
36 like tcpdump and snoop.
37 endef
38
39 CONFIGURE_ARGS+= \
40 --with-pcap-includes=$(STAGING_DIR)/usr/include \
41 --enable-pcre \
42 --with-pcre=$(STAGING_DIR)/usr \
43 --disable-dropprivs \
44
45 CONFIGURE_VARS+= \
46 LDFLAGS="$(TARGET_LDFLAGS) -lpcre" \
47
48 define Package/ngrep/install
49 $(INSTALL_DIR) $(1)/usr/bin
50 $(CP) $(PKG_INSTALL_DIR)/usr/bin/ngrep $(1)/usr/bin/
51 endef
52
53 $(eval $(call BuildPackage,ngrep))