|
From: <abe...@us...> - 2012-07-17 23:04:25
|
Revision: 5616
http://astlinux.svn.sourceforge.net/astlinux/?rev=5616&view=rev
Author: abelbeck
Date: 2012-07-17 23:04:18 +0000 (Tue, 17 Jul 2012)
Log Message:
-----------
mtr, new package My TraceRoute, disabled for now, but we probably want it. Thanks Darrick
Modified Paths:
--------------
branches/1.0/astlinux.config
branches/1.0/astlinux18.config
branches/1.0/initrd.config
branches/1.0/package/Config.in
branches/1.0/runnix-uclibc.config
branches/1.0/runnix.config
Added Paths:
-----------
branches/1.0/package/mtr/
branches/1.0/package/mtr/Config.in
branches/1.0/package/mtr/mtr.mk
Modified: branches/1.0/astlinux.config
===================================================================
--- branches/1.0/astlinux.config 2012-07-17 19:35:44 UTC (rev 5615)
+++ branches/1.0/astlinux.config 2012-07-17 23:04:18 UTC (rev 5616)
@@ -1,7 +1,7 @@
#
# Automatically generated make config: don't edit
-# Buildroot 2011.08-svn5612-dirty Configuration
-# Tue Jul 17 11:10:18 2012
+# Buildroot 2011.08-svn5615-dirty Configuration
+# Tue Jul 17 18:01:18 2012
#
BR2_HAVE_DOT_CONFIG=y
# BR2_arm is not set
@@ -691,6 +691,7 @@
BR2_PACKAGE_MINIUPNPD=y
# BR2_PACKAGE_MROUTED is not set
BR2_PACKAGE_MSMTP=y
+# BR2_PACKAGE_MTR is not set
# BR2_PACKAGE_MUTT is not set
# BR2_PACKAGE_NBD is not set
# BR2_PACKAGE_NCFTP is not set
Modified: branches/1.0/astlinux18.config
===================================================================
--- branches/1.0/astlinux18.config 2012-07-17 19:35:44 UTC (rev 5615)
+++ branches/1.0/astlinux18.config 2012-07-17 23:04:18 UTC (rev 5616)
@@ -1,7 +1,7 @@
#
# Automatically generated make config: don't edit
-# Buildroot 2011.08-svn5612-dirty Configuration
-# Tue Jul 17 11:10:20 2012
+# Buildroot 2011.08-svn5615-dirty Configuration
+# Tue Jul 17 18:01:20 2012
#
BR2_HAVE_DOT_CONFIG=y
# BR2_arm is not set
@@ -685,6 +685,7 @@
BR2_PACKAGE_MINIUPNPD=y
# BR2_PACKAGE_MROUTED is not set
BR2_PACKAGE_MSMTP=y
+# BR2_PACKAGE_MTR is not set
# BR2_PACKAGE_MUTT is not set
# BR2_PACKAGE_NBD is not set
# BR2_PACKAGE_NCFTP is not set
Modified: branches/1.0/initrd.config
===================================================================
--- branches/1.0/initrd.config 2012-07-17 19:35:44 UTC (rev 5615)
+++ branches/1.0/initrd.config 2012-07-17 23:04:18 UTC (rev 5616)
@@ -1,7 +1,7 @@
#
# Automatically generated make config: don't edit
-# Buildroot 2011.08-svn5612-dirty Configuration
-# Tue Jul 17 11:10:24 2012
+# Buildroot 2011.08-svn5615-dirty Configuration
+# Tue Jul 17 18:01:28 2012
#
BR2_HAVE_DOT_CONFIG=y
# BR2_arm is not set
@@ -574,6 +574,7 @@
# BR2_PACKAGE_MII_DIAG is not set
# BR2_PACKAGE_MROUTED is not set
# BR2_PACKAGE_MSMTP is not set
+# BR2_PACKAGE_MTR is not set
# BR2_PACKAGE_MUTT is not set
# BR2_PACKAGE_NBD is not set
# BR2_PACKAGE_NCFTP is not set
Modified: branches/1.0/package/Config.in
===================================================================
--- branches/1.0/package/Config.in 2012-07-17 19:35:44 UTC (rev 5615)
+++ branches/1.0/package/Config.in 2012-07-17 23:04:18 UTC (rev 5616)
@@ -460,6 +460,7 @@
source "package/miniupnpd/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"
Added: branches/1.0/package/mtr/Config.in
===================================================================
--- branches/1.0/package/mtr/Config.in (rev 0)
+++ branches/1.0/package/mtr/Config.in 2012-07-17 23:04:18 UTC (rev 5616)
@@ -0,0 +1,11 @@
+config BR2_PACKAGE_MTR
+ bool "mtr"
+ default n
+ select BR2_PACKAGE_NCURSES
+ help
+ My TraceRoute
+ mtr combines the functionality of the 'traceroute' and 'ping'
+ programs in a single network diagnostic tool.
+
+ http://www.bitwizard.nl/mtr/
+
Added: branches/1.0/package/mtr/mtr.mk
===================================================================
--- branches/1.0/package/mtr/mtr.mk (rev 0)
+++ branches/1.0/package/mtr/mtr.mk 2012-07-17 23:04:18 UTC (rev 5616)
@@ -0,0 +1,23 @@
+#############################################################
+#
+# mtr
+#
+#############################################################
+MTR_VERSION = 0.82
+MTR_SITE = ftp://ftp.bitwizard.nl/mtr
+MTR_SOURCE = mtr-$(MTR_VERSION).tar.gz
+
+MTR_DEPENDENCIES = ncurses
+
+MTR_CONF_OPT = \
+ --without-gtk
+
+define MTR_INSTALL_TARGET_CMDS
+ $(INSTALL) -D $(@D)/mtr $(TARGET_DIR)/usr/bin/
+endef
+
+define MTR_UNINSTALL_TARGET_CMDS
+ rm -f $(TARGET_DIR)/usr/bin/mtr
+endef
+
+$(eval $(call AUTOTARGETS,package,mtr))
Modified: branches/1.0/runnix-uclibc.config
===================================================================
--- branches/1.0/runnix-uclibc.config 2012-07-17 19:35:44 UTC (rev 5615)
+++ branches/1.0/runnix-uclibc.config 2012-07-17 23:04:18 UTC (rev 5616)
@@ -1,7 +1,7 @@
#
# Automatically generated make config: don't edit
-# Buildroot 2011.08-svn5612-dirty Configuration
-# Tue Jul 17 11:10:23 2012
+# Buildroot 2011.08-svn5615-dirty Configuration
+# Tue Jul 17 18:01:26 2012
#
BR2_HAVE_DOT_CONFIG=y
# BR2_arm is not set
@@ -868,6 +868,7 @@
# BR2_PACKAGE_MII_DIAG is not set
# BR2_PACKAGE_MROUTED is not set
# BR2_PACKAGE_MSMTP is not set
+# BR2_PACKAGE_MTR is not set
#
# mutt requires a toolchain with WCHAR support
Modified: branches/1.0/runnix.config
===================================================================
--- branches/1.0/runnix.config 2012-07-17 19:35:44 UTC (rev 5615)
+++ branches/1.0/runnix.config 2012-07-17 23:04:18 UTC (rev 5616)
@@ -1,7 +1,7 @@
#
# Automatically generated make config: don't edit
-# Buildroot 2011.08-svn5612-dirty Configuration
-# Tue Jul 17 11:10:21 2012
+# Buildroot 2011.08-svn5615-dirty Configuration
+# Tue Jul 17 18:01:24 2012
#
BR2_HAVE_DOT_CONFIG=y
# BR2_arm is not set
@@ -604,6 +604,7 @@
# BR2_PACKAGE_MII_DIAG is not set
# BR2_PACKAGE_MROUTED is not set
# BR2_PACKAGE_MSMTP is not set
+# BR2_PACKAGE_MTR is not set
# BR2_PACKAGE_MUTT is not set
# BR2_PACKAGE_NBD is not set
# BR2_PACKAGE_NCFTP is not set
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|