mtr: remove a broken resolver related patch chunk to fix dns issues (fixes #11044)
[packages.git] / net / mtr / Makefile
1 #
2 # Copyright (C) 2006-2012 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:=mtr
11 PKG_VERSION:=0.82
12 PKG_RELEASE:=1
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=ftp://ftp.bitwizard.nl/mtr
16 PKG_MD5SUM:=10601ea543fda3e51545c4bce195b64c
17
18 PKG_INSTALL:=1
19
20 PKG_FIXUP:=autoreconf
21
22 include $(INCLUDE_DIR)/package.mk
23
24 define Package/mtr
25   SECTION:=net
26   CATEGORY:=Network
27   DEPENDS:=+libncurses
28   TITLE:=Full screen ncurses traceroute tool
29   URL:=http://www.bitwizard.nl/mtr/
30 endef
31
32 define Package/mtr/description
33         mtr combines the functionality of the 'traceroute' and 'ping' programs
34         in a single network diagnostic tool.
35         As mtr starts, it investigates the network connection between the host
36         mtr runs on and a user-specified destination host. After it
37         determines the address of each network hop between the machines,
38         it sends a sequence ICMP ECHO requests to each one to determine the
39         quality of the link to each machine. As it does this, it prints
40         running statistics about each machine.
41 endef
42
43 CONFIGURE_ARGS += \
44         --without-gtk \
45
46 #CONFIGURE_VARS += \
47 #       ac_cv_lib_resolv_res_mkquery=no \
48
49 define Build/Configure
50         (cd $(PKG_BUILD_DIR); touch \
51                 configure.in \
52                 aclocal.m4 \
53                 Makefile.in \
54                 img/Makefile.in \
55                 stamp-h.in \
56                 config.h.in \
57                 configure \
58         );
59         $(call Build/Configure/Default)
60 endef
61
62 define Package/mtr/install
63         $(INSTALL_DIR) $(1)/usr/sbin
64         $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/mtr $(1)/usr/sbin/
65 endef
66
67 $(eval $(call BuildPackage,mtr))