Add ngrep from #1719
[openwrt/svn-archive/archive.git] / net / ngrep / Makefile
1 #
2 # Copyright (C) 2007 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:=ngrep
12 PKG_VERSION:=1.45
13 PKG_RELEASE:=1
14
15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
16 PKG_SOURCE_URL:=@SF/ngrep
17 PKG_MD5SUM:=bc8150331601f3b869549c94866b4f1c
18 PKG_CAT:=bzcat
19
20 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
21 PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
22
23 include $(INCLUDE_DIR)/package.mk
24
25 define Package/ngrep
26 SECTION:=net
27 CATEGORY:=Network
28 DEPENDS:=+libpcap +libpcre
29 TITLE:=network grep
30 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 URL:=http://ngrep.sourceforge.net
38 endef
39
40 define Build/Configure
41 $(call Build/Configure/Default, \
42 --with-pcap-includes=$(STAGING_DIR)/usr/include \
43 --enable-pcre \
44 --with-pcre=$(STAGING_DIR)/usr \
45 --enable-ipv6 \
46 --disable-dropprivs \
47 ,\
48 LDFLAGS="-L$(STAGING_DIR)/usr/lib -lpcre" \
49 )
50 endef
51
52 define Build/Compile
53 $(call Build/Compile/Default,\
54 DESTDIR="$(PKG_INSTALL_DIR)" \
55 all \
56 )
57 endef
58
59 define Package/ngrep/install
60 $(INSTALL_DIR) $(1)/usr/sbin
61 $(CP) $(PKG_BUILD_DIR)/$(PKG_NAME) $(1)/usr/sbin/
62 endef
63
64 $(eval $(call BuildPackage,ngrep))