From owner-svn-ports-head@FreeBSD.ORG Fri Mar 15 07:40:36 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 46AB6542; Fri, 15 Mar 2013 07:40:36 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 29A84815; Fri, 15 Mar 2013 07:40:36 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r2F7eZtW019382; Fri, 15 Mar 2013 07:40:35 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r2F7eZXC019376; Fri, 15 Mar 2013 07:40:35 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201303150740.r2F7eZXC019376@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Fri, 15 Mar 2013 07:40:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r314277 - head/net/mtr X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 15 Mar 2013 07:40:36 -0000 Author: sunpoet Date: Fri Mar 15 07:40:34 2013 New Revision: 314277 URL: http://svnweb.freebsd.org/changeset/ports/314277 Log: - Update to 0.84 - Modify COMMENT - Add LICENSE - Remove IPV6 from OPTIONS_DEFAULT - Cleanup Makefile header - Update pkg-descr Changes: https://github.com/traviscross/mtr/blob/master/NEWS Modified: head/net/mtr/Makefile (contents, props changed) head/net/mtr/distinfo (contents, props changed) head/net/mtr/pkg-descr (contents, props changed) Modified: head/net/mtr/Makefile ============================================================================== --- head/net/mtr/Makefile Fri Mar 15 07:21:04 2013 (r314276) +++ head/net/mtr/Makefile Fri Mar 15 07:40:34 2013 (r314277) @@ -1,27 +1,28 @@ -# New ports collection makefile for: mtr -# Date created: 12 August 1998 -# Whom: Bill Fumerola -# +# Created by: Bill Fumerola # $FreeBSD$ -# PORTNAME= mtr -PORTVERSION= 0.82 -PORTREVISION?= 1 +PORTVERSION= 0.84 CATEGORIES= net MASTER_SITES= ftp://ftp.bitwizard.nl/mtr/ \ - http://launchpadlibrarian.net/82181604/ \ + http://launchpadlibrarian.net/130869615/ \ LOCAL/sunpoet MAINTAINER= sunpoet@FreeBSD.org -COMMENT= Traceroute and ping in a single graphical network diagnostic tool +COMMENT= Traceroute and ping in a single network diagnostic tool + +LICENSE= GPLv2 OPTIONS_DEFINE= IPV6 X11 -OPTIONS_DEFAULT=IPV6 X11 +OPTIONS_DEFAULT=X11 X11_DESC= Build X11-enabled mtr +CPPFLAGS+= -I${LOCALBASE}/include/glib-2.0 GNU_CONFIGURE= yes +LDFLAGS+= -L${LOCALBASE}/lib -lglib-2.0 USE_GMAKE= yes +USE_GNOME= _glib20 +USE_PKGCONFIG= build MAN8= mtr.8 PLIST_FILES= sbin/mtr @@ -40,7 +41,7 @@ CONFIGURE_ARGS+=--with-gtk USE_GNOME= gtk20 .else CONFIGURE_ARGS+=--without-gtk -PKGNAMESUFFIX= -nox11 +PKGNAMESUFFIX+= -nox11 .endif post-patch: Modified: head/net/mtr/distinfo ============================================================================== --- head/net/mtr/distinfo Fri Mar 15 07:21:04 2013 (r314276) +++ head/net/mtr/distinfo Fri Mar 15 07:40:34 2013 (r314277) @@ -1,2 +1,2 @@ -SHA256 (mtr-0.82.tar.gz) = f3b457c9623ae03565688a7ffd49d4843a5e2505ccaf3ba8d9fbd86e3ce9b6a0 -SIZE (mtr-0.82.tar.gz) = 270245 +SHA256 (mtr-0.84.tar.gz) = e9eb34001f6e11e56f5389a879dc42dd8862f63053148f77823dbf8f36b7286b +SIZE (mtr-0.84.tar.gz) = 286912 Modified: head/net/mtr/pkg-descr ============================================================================== --- head/net/mtr/pkg-descr Fri Mar 15 07:21:04 2013 (r314276) +++ head/net/mtr/pkg-descr Fri Mar 15 07:40:34 2013 (r314277) @@ -1,5 +1,12 @@ -mtr combines the functionality of the "traceroute" and "ping" programs -into a single network diagnostic tool. +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. + +Official mtr repository is at https://github.com/traviscross/mtr WWW: http://www.bitwizard.nl/mtr/ -WWW: https://launchpad.net/mtr