Commit 22bbca9b authored by Gustavo Zacarias's avatar Gustavo Zacarias Committed by Peter Korsgaard
Browse files

mtr: new package

parent bc8ede2b
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -876,6 +876,7 @@ source "package/mongoose/Config.in"
source "package/mongrel2/Config.in"
source "package/mrouted/Config.in"
source "package/msmtp/Config.in"
source "package/mtr/Config.in"
source "package/mutt/Config.in"
source "package/nbd/Config.in"
source "package/ncftp/Config.in"

package/mtr/Config.in

0 → 100644
+9 −0
Original line number Diff line number Diff line
config BR2_PACKAGE_MTR
	bool "mtr"
	# res_mkquery() only available in 0.9.33+
	depends on !BR2_UCLIBC_VERSION_0_9_31 && !BR2_UCLIBC_VERSION_0_9_32
	help
	  mtr combines the functionality of the 'traceroute' and 'ping'
	  programs in a single network diagnostic tool.

	  http://www.bitwizard.nl/mtr/

package/mtr/mtr.mk

0 → 100644
+24 −0
Original line number Diff line number Diff line
################################################################################
#
# mtr
#
################################################################################

MTR_VERSION = 0.85
MTR_SITE = ftp://ftp.bitwizard.nl/mtr
MTR_CONF_OPT = --without-gtk --without-glib
MTR_DEPENDENCIES = host-pkgconf $(if $(BR2_PACKAGE_NCURSES),ncurses)
MTR_LICENSE = GPLv2
MTR_LICENSE_FILES = COPYING

# uClibc has res_ninit but not res_nmkquery
ifeq ($(BR2_TOOLCHAIN_USES_UCLIBC),y)
define MTR_DISABLE_RES_NINIT
	$(SED) 's/#ifdef res_ninit/#if 0/' \
		$(@D)/dns.c
endef
endif

MTR_POST_PATCH_HOOKS += MTR_DISABLE_RES_NINIT

$(eval $(call autotools-package))