From owner-svn-ports-all@FreeBSD.ORG Tue Sep 10 22:44:05 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 74B318DE; Tue, 10 Sep 2013 22:44:05 +0000 (UTC) (envelope-from wg@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5327C2403; Tue, 10 Sep 2013 22:44:05 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r8AMi5Rx066684; Tue, 10 Sep 2013 22:44:05 GMT (envelope-from wg@svn.freebsd.org) Received: (from wg@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r8AMi4uV066680; Tue, 10 Sep 2013 22:44:04 GMT (envelope-from wg@svn.freebsd.org) Message-Id: <201309102244.r8AMi4uV066680@svn.freebsd.org> From: William Grzybowski Date: Tue, 10 Sep 2013 22:44:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r326936 - in head/net-mgmt: . omping X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Sep 2013 22:44:05 -0000 Author: wg Date: Tue Sep 10 22:44:04 2013 New Revision: 326936 URL: http://svnweb.freebsd.org/changeset/ports/326936 Log: net-mgmt/omping: Tool to test IP multicast functionality Omping (Open Multicast Ping) is tool to test IP multicast functionality primarily in local network. Features * Similar user experience as classic ping tool * Ping multiple hosts at once * Implementation of RFC Draft draft-ietf-mboned-ssmping-08 * Any-source and Source-specific Multicast WWW: https://fedorahosted.org/omping/ PR: ports/181979 Submitted by: Frank Wall Added: head/net-mgmt/omping/ head/net-mgmt/omping/Makefile (contents, props changed) head/net-mgmt/omping/distinfo (contents, props changed) head/net-mgmt/omping/pkg-descr (contents, props changed) Modified: head/net-mgmt/Makefile Modified: head/net-mgmt/Makefile ============================================================================== --- head/net-mgmt/Makefile Tue Sep 10 22:31:42 2013 (r326935) +++ head/net-mgmt/Makefile Tue Sep 10 22:44:04 2013 (r326936) @@ -188,6 +188,7 @@ SUBDIR += observium SUBDIR += ocsinventory-agent SUBDIR += ocsinventory-ng + SUBDIR += omping SUBDIR += openlldp SUBDIR += openvmps SUBDIR += ourmon Added: head/net-mgmt/omping/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-mgmt/omping/Makefile Tue Sep 10 22:44:04 2013 (r326936) @@ -0,0 +1,23 @@ +# Created by: Frank Wall +# $FreeBSD$ + +PORTNAME= omping +PORTVERSION= 0.0.4 +CATEGORIES= net-mgmt +MASTER_SITES= https://fedorahosted.org/releases/o/m/${PORTNAME}/ + +MAINTAINER= fw@moov.de +COMMENT= Tool to test IP multicast functionality + +LICENSE= MIT + +USES= gmake + +PLIST_FILES= bin/${PORTNAME} + +MAN8= ${PORTNAME}.8 + +post-patch: + @${REINPLACE_CMD} -e 's|/share/man|/man|g' ${WRKSRC}/Makefile + +.include Added: head/net-mgmt/omping/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-mgmt/omping/distinfo Tue Sep 10 22:44:04 2013 (r326936) @@ -0,0 +1,2 @@ +SHA256 (omping-0.0.4.tar.gz) = 8909616b007139138d9d1cb51cc234edaf728f20a26897ef2959a570da02dc0a +SIZE (omping-0.0.4.tar.gz) = 44287 Added: head/net-mgmt/omping/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-mgmt/omping/pkg-descr Tue Sep 10 22:44:04 2013 (r326936) @@ -0,0 +1,10 @@ +Omping (Open Multicast Ping) is tool to test IP multicast functionality +primarily in local network. + +Features +* Similar user experience as classic ping tool +* Ping multiple hosts at once +* Implementation of RFC Draft draft-ietf-mboned-ssmping-08 +* Any-source and Source-specific Multicast + +WWW: https://fedorahosted.org/omping/