mtr: new package

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
Gustavo Zacarias 2014-01-29 17:03:44 -03:00 committed by Peter Korsgaard
parent bc8ede2bb3
commit 22bbca9b91
3 changed files with 34 additions and 0 deletions

View File

@ -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"

9
package/mtr/Config.in Normal file
View File

@ -0,0 +1,9 @@
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/

24
package/mtr/mtr.mk Normal file
View File

@ -0,0 +1,24 @@
################################################################################
#
# 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))