|
From: <abe...@us...> - 2017-06-27 17:35:29
|
Revision: 8416
http://sourceforge.net/p/astlinux/code/8416
Author: abelbeck
Date: 2017-06-27 17:35:27 +0000 (Tue, 27 Jun 2017)
Log Message:
-----------
mtr, version bump to 0.92, now requires a mtr-packet helper and uses libcap, fix displayed version number
Modified Paths:
--------------
branches/1.0/package/bash/rbash/cmd_symlinks.txt
branches/1.0/package/mtr/Config.in
branches/1.0/package/mtr/mtr.mk
Modified: branches/1.0/package/bash/rbash/cmd_symlinks.txt
===================================================================
--- branches/1.0/package/bash/rbash/cmd_symlinks.txt 2017-06-27 13:44:43 UTC (rev 8415)
+++ branches/1.0/package/bash/rbash/cmd_symlinks.txt 2017-06-27 17:35:27 UTC (rev 8416)
@@ -28,3 +28,4 @@
usr/sbin/fping6
usr/sbin/iftop
usr/sbin/mtr
+usr/sbin/mtr-packet
Modified: branches/1.0/package/mtr/Config.in
===================================================================
--- branches/1.0/package/mtr/Config.in 2017-06-27 13:44:43 UTC (rev 8415)
+++ branches/1.0/package/mtr/Config.in 2017-06-27 17:35:27 UTC (rev 8416)
@@ -2,6 +2,7 @@
bool "mtr"
default n
select BR2_PACKAGE_NCURSES
+ select BR2_PACKAGE_LIBCAP
help
My TraceRoute
mtr combines the functionality of the 'traceroute' and 'ping'
Modified: branches/1.0/package/mtr/mtr.mk
===================================================================
--- branches/1.0/package/mtr/mtr.mk 2017-06-27 13:44:43 UTC (rev 8415)
+++ branches/1.0/package/mtr/mtr.mk 2017-06-27 17:35:27 UTC (rev 8416)
@@ -3,21 +3,25 @@
# mtr
#
#############################################################
-MTR_VERSION = 0.87
+MTR_VERSION = 0.92
MTR_SITE = ftp://ftp.bitwizard.nl/mtr
MTR_SOURCE = mtr-$(MTR_VERSION).tar.gz
-MTR_DEPENDENCIES = host-pkg-config ncurses
+MTR_DEPENDENCIES = host-pkg-config ncurses libcap
MTR_CONF_OPT = \
+ PACKAGE_VERSION="$(MTR_VERSION)" \
+ PACKAGE_STRING="mtr $(MTR_VERSION)" \
--without-gtk
define MTR_INSTALL_TARGET_CMDS
- $(INSTALL) -D -m 4711 $(@D)/mtr $(TARGET_DIR)/usr/sbin/
+ $(INSTALL) -D -m 0755 $(@D)/mtr $(TARGET_DIR)/usr/sbin/
+ $(INSTALL) -D -m 4711 $(@D)/mtr-packet $(TARGET_DIR)/usr/sbin/
endef
define MTR_UNINSTALL_TARGET_CMDS
rm -f $(TARGET_DIR)/usr/sbin/mtr
+ rm -f $(TARGET_DIR)/usr/sbin/mtr-packet
endef
$(eval $(call AUTOTARGETS,package,mtr))
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|