# # Copyright (C) 2006-2015 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:=mtr PKG_VERSION:=0.92 PKG_RELEASE:=2 PKG_MAINTAINER:=Jonathan McCrohan PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=https://codeload.github.com/traviscross/mtr/tar.gz/v$(PKG_VERSION)? PKG_HASH:=568a52911a8933496e60c88ac6fea12379469d7943feb9223f4337903e4bc164 PKG_LICENSE:=GPL-2.0+ PKG_LICENSE_FILES:=COPYING PKG_INSTALL:=1 PKG_BUILD_PARALLEL:=1 PKG_FIXUP:=autoreconf include $(INCLUDE_DIR)/package.mk define Package/mtr SECTION:=net CATEGORY:=Network DEPENDS:=+libncurses TITLE:=Full screen ncurses traceroute tool URL:=https://www.bitwizard.nl/mtr/ endef 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 CONFIGURE_ARGS += \ --without-gtk \ $(call autoconf_bool,CONFIG_IPV6,ipv6) define Build/Configure echo $(PKG_VERSION) > .tarball-version $(call Build/Configure/Default) endef define Package/mtr/install $(INSTALL_DIR) $(1)/usr/sbin $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/mtr $(1)/usr/sbin/ $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/mtr-packet $(1)/usr/sbin/ endef $(eval $(call BuildPackage,mtr))