2006-08-05 17:10:23 +00:00
|
|
|
#
|
|
|
|
# Copyright (C) 2006 OpenWrt.org
|
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
# $Id$
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=mtr
|
|
|
|
PKG_VERSION:=0.69
|
|
|
|
PKG_RELEASE:=1
|
|
|
|
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
2006-10-28 22:43:08 +00:00
|
|
|
PKG_SOURCE_URL:=ftp://ftp.bitwizard.nl/mtr/
|
|
|
|
PKG_MD5SUM:=58904d6d8d70114195cdeb653d56914c
|
|
|
|
|
2006-08-05 17:10:23 +00:00
|
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
|
|
|
PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
|
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
|
|
|
define Package/mtr
|
|
|
|
SECTION:=net
|
|
|
|
CATEGORY:=Network
|
|
|
|
DEPENDS:=+libncurses
|
|
|
|
TITLE:=Full screen ncurses traceroute tool
|
|
|
|
URL:=http://www.bitwizard.nl/mtr/
|
|
|
|
endef
|
|
|
|
|
2007-10-14 04:32:56 +00:00
|
|
|
define Package/mtr/description
|
|
|
|
mtr combines the functionality of the 'traceroute' and 'ping' programs
|
|
|
|
in a single network diagnostic tool.
|
|
|
|
As mtr starts, it investigates the network connection between the host
|
|
|
|
mtr runs on and a user-specified destination host. After it
|
|
|
|
determines the address of each network hop between the machines,
|
|
|
|
it sends a sequence ICMP ECHO requests to each one to determine the
|
|
|
|
quality of the link to each machine. As it does this, it prints
|
|
|
|
running statistics about each machine.
|
|
|
|
endef
|
|
|
|
|
2006-08-05 17:10:23 +00:00
|
|
|
define Build/Configure
|
2006-11-05 20:12:42 +00:00
|
|
|
(cd $(PKG_BUILD_DIR); touch \
|
|
|
|
configure.in \
|
|
|
|
aclocal.m4 \
|
|
|
|
Makefile.in \
|
|
|
|
img/Makefile.in \
|
|
|
|
stamp-h.in \
|
|
|
|
config.h.in \
|
|
|
|
configure \
|
|
|
|
);
|
2006-10-28 22:43:08 +00:00
|
|
|
$(call Build/Configure/Default, \
|
|
|
|
--without-gtk \
|
|
|
|
, \
|
|
|
|
ac_cv_lib_resolv_res_mkquery=yes \
|
|
|
|
)
|
2006-08-05 17:10:23 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Compile
|
|
|
|
$(MAKE) -C $(PKG_BUILD_DIR) \
|
|
|
|
DESTDIR="$(PKG_INSTALL_DIR)" \
|
|
|
|
all install
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/mtr/install
|
2006-11-23 00:29:07 +00:00
|
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
2007-12-09 18:59:01 +00:00
|
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/mtr $(1)/usr/sbin/
|
2006-08-05 17:10:23 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,mtr))
|