2014-07-19 13:18:37 +00:00
|
|
|
#
|
2015-06-18 15:32:51 +00:00
|
|
|
# Copyright (C) 2006-2015 OpenWrt.org
|
2014-07-19 13:18:37 +00:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=mtr
|
2022-03-14 20:16:47 +00:00
|
|
|
PKG_VERSION:=0.95
|
|
|
|
PKG_RELEASE:=$(AUTORELEASE)
|
2018-07-16 17:20:44 +00:00
|
|
|
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
2022-03-14 20:16:47 +00:00
|
|
|
PKG_SOURCE_URL:=https://codeload.github.com/traviscross/mtr/tar.gz/v$(PKG_VERSION)?
|
|
|
|
PKG_HASH:=12490fb660ba5fb34df8c06a0f62b4f9cbd11a584fc3f6eceda0a99124e8596f
|
2014-07-19 13:18:37 +00:00
|
|
|
|
2018-09-01 23:55:55 +00:00
|
|
|
PKG_MAINTAINER:=Jonathan McCrohan <jmccrohan@gmail.com>
|
2019-09-02 13:15:08 +00:00
|
|
|
PKG_LICENSE:=GPL-2.0-or-later
|
2014-08-13 23:54:44 +00:00
|
|
|
PKG_LICENSE_FILES:=COPYING
|
2019-09-12 12:13:21 +00:00
|
|
|
PKG_CPE_ID:=cpe:/a:matt_kimball_and_roger_wolff:mtr
|
2014-07-19 13:18:37 +00:00
|
|
|
|
|
|
|
PKG_INSTALL:=1
|
2018-07-16 17:20:44 +00:00
|
|
|
PKG_BUILD_PARALLEL:=1
|
2022-03-14 20:16:47 +00:00
|
|
|
PKG_FIXUP:=autoreconf
|
|
|
|
|
|
|
|
CONFIGURE_ARGS += \
|
|
|
|
--without-gtk \
|
|
|
|
$(call autoconf_bool,CONFIG_IPV6,ipv6)
|
2014-07-19 13:18:37 +00:00
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
2022-03-14 20:16:47 +00:00
|
|
|
define Package/mtr/Default
|
|
|
|
SECTION:=net
|
|
|
|
CATEGORY:=Network
|
|
|
|
DEPENDS:=+libncurses
|
|
|
|
TITLE:=Full screen ncurses traceroute tool
|
|
|
|
URL:=https://www.bitwizard.nl/mtr/
|
|
|
|
PROVIDES:=mtr
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/mtr-nojson
|
|
|
|
$(Package/mtr/Default)
|
|
|
|
TITLE+= Without JSON
|
|
|
|
VARIANT:=nojson
|
|
|
|
DEFAULT_VARIANT:=1
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/mtr-json
|
|
|
|
$(Package/mtr/Default)
|
|
|
|
TITLE+= With JSON
|
|
|
|
VARIANT:=json
|
|
|
|
DEPENDS+=+jansson
|
2014-07-19 13:18:37 +00:00
|
|
|
endef
|
|
|
|
|
2022-03-14 20:16:47 +00:00
|
|
|
ifeq ($(BUILD_VARIANT),nojson)
|
|
|
|
CONFIGURE_ARGS += --without-jansson
|
|
|
|
endif
|
|
|
|
|
2014-07-19 13:18:37 +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
|
|
|
|
|
2019-12-10 12:04:47 +00:00
|
|
|
TARGET_CFLAGS += -ffunction-sections -fdata-sections
|
|
|
|
TARGET_LDFLAGS += -Wl,--gc-sections,--as-needed
|
|
|
|
|
2018-09-01 23:55:55 +00:00
|
|
|
CONFIGURE_VARS += ac_cv_lib_cap_cap_set_proc=no
|
|
|
|
|
2022-03-14 20:16:47 +00:00
|
|
|
define Package/mtr/install/Default
|
2014-07-19 13:18:37 +00:00
|
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
|
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/mtr $(1)/usr/sbin/
|
2018-07-23 23:55:21 +00:00
|
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/mtr-packet $(1)/usr/sbin/
|
2014-07-19 13:18:37 +00:00
|
|
|
endef
|
|
|
|
|
2022-03-14 20:16:47 +00:00
|
|
|
Package/mtr-nojson/install = $(Package/mtr/install/Default)
|
|
|
|
Package/mtr-json/install = $(Package/mtr/install/Default)
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,mtr-nojson))
|
|
|
|
$(eval $(call BuildPackage,mtr-json))
|