blob: 1c946b299dee82b3f12e0736b6785c1bc04ee450 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
#
# Copyright (C) 2006-2011 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:=lft
PKG_VERSION:=3.32
PKG_RELEASE:=1
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=http://pwhois.org/get
PKG_MD5SUM:=5f09c9ad2475cb237b8277a2d69c569c
PKG_INSTALL:=1
include $(INCLUDE_DIR)/package.mk
define Package/lft/Default
SECTION:=net
CATEGORY:=Network
DEPENDS:=+libpcap
TITLE:=The alternative traceroute and whois tools for network engineers
URL:=http://pwhois.org/lft
endef
define Package/lft/Default/description
LFT, short for Layer Four Traceroute, is a sort of 'traceroute' that
often works much faster (than the commonly-used Van Jacobson method)
and goes through many configurations of packet-filters (firewalls).
More importantly, LFT implements numerous other features including AS
number lookups through several reliable sources, loose source routing,
netblock name lookups, et al.
endef
define Package/lft
$(call Package/lft/Default)
endef
define Package/lft/description
$(call Package/lft/Default/description)
This package contains the lft 'traceroute' program.
endef
define Package/whob
$(call Package/lft/Default)
endef
define Package/whob/description
$(call Package/lft/Default/description)
This package contains the whob 'whois' program.
endef
CONFIGURE_ARGS += \
--with-pcap="$(STAGING_DIR)/usr"
define Package/lft/install
$(INSTALL_DIR) $(1)/usr/bin
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/lft $(1)/usr/bin/
endef
define Package/whob/install
$(INSTALL_DIR) $(1)/usr/bin
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/whob $(1)/usr/bin/
endef
$(eval $(call BuildPackage,lft))
$(eval $(call BuildPackage,whob))
|