From owner-svn-ports-head@freebsd.org Wed Nov 25 17:30:21 2015 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 89B3BA36986; Wed, 25 Nov 2015 17:30:21 +0000 (UTC) (envelope-from garga@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5FE45108A; Wed, 25 Nov 2015 17:30:21 +0000 (UTC) (envelope-from garga@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tAPHUKFD062587; Wed, 25 Nov 2015 17:30:20 GMT (envelope-from garga@FreeBSD.org) Received: (from garga@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tAPHUJ5q062581; Wed, 25 Nov 2015 17:30:19 GMT (envelope-from garga@FreeBSD.org) Message-Id: <201511251730.tAPHUJ5q062581@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: garga set sender to garga@FreeBSD.org using -f From: Renato Botelho Date: Wed, 25 Nov 2015 17:30:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r402403 - in head/net: . dpinger dpinger/files 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.20 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: Wed, 25 Nov 2015 17:30:21 -0000 Author: garga Date: Wed Nov 25 17:30:19 2015 New Revision: 402403 URL: https://svnweb.freebsd.org/changeset/ports/402403 Log: Add net/dpinger: IP device monitoring tool WWW: https://github.com/dennypage/dpinger Sponsored by: Rubicon Communications (Netgate) Added: head/net/dpinger/ head/net/dpinger/Makefile (contents, props changed) head/net/dpinger/distinfo (contents, props changed) head/net/dpinger/files/ head/net/dpinger/files/patch-Makefile (contents, props changed) head/net/dpinger/files/patch-dpinger.c (contents, props changed) head/net/dpinger/pkg-descr (contents, props changed) Modified: head/net/Makefile Modified: head/net/Makefile ============================================================================== --- head/net/Makefile Wed Nov 25 17:27:05 2015 (r402402) +++ head/net/Makefile Wed Nov 25 17:30:19 2015 (r402403) @@ -106,6 +106,7 @@ SUBDIR += dimes SUBDIR += dosdetector SUBDIR += dpdk + SUBDIR += dpinger SUBDIR += drawterm SUBDIR += dropbox-api-command SUBDIR += dropbox-uploader Added: head/net/dpinger/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/dpinger/Makefile Wed Nov 25 17:30:19 2015 (r402403) @@ -0,0 +1,20 @@ +# $FreeBSD$ + +PORTNAME= dpinger +PORTVERSION= 0.0.1.20151125 +CATEGORIES= net + +MAINTAINER= garga@FreeBSD.org +COMMENT= IP device monitoring tool + +LICENSE= BSD2CLAUSE + +USES= uidfix +USE_GITHUB= yes +GH_ACCOUNT= dennypage +GH_PROJECT= dpinger +GH_TAGNAME= 21942bac3a + +PLIST_FILES= bin/dpinger + +.include Added: head/net/dpinger/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/dpinger/distinfo Wed Nov 25 17:30:19 2015 (r402403) @@ -0,0 +1,2 @@ +SHA256 (dennypage-dpinger-0.0.1.20151125-21942bac3a_GH0.tar.gz) = 6b4f1911dfc38d35f103df61cd776f74def536ebc260b6b00832f5724c754701 +SIZE (dennypage-dpinger-0.0.1.20151125-21942bac3a_GH0.tar.gz) = 6073 Added: head/net/dpinger/files/patch-Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/dpinger/files/patch-Makefile Wed Nov 25 17:30:19 2015 (r402403) @@ -0,0 +1,11 @@ +--- Makefile.orig 2015-11-25 04:21:35 UTC ++++ Makefile +@@ -4,7 +4,7 @@ MAN= + BINDIR= ${PREFIX}/bin + WARNS= 6 + +-CFLAGS= -g ++#CFLAGS= -g + LDADD= -lpthread + + .include Added: head/net/dpinger/files/patch-dpinger.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/dpinger/files/patch-dpinger.c Wed Nov 25 17:30:19 2015 (r402403) @@ -0,0 +1,11 @@ +--- dpinger.c.orig 2015-11-25 04:21:35 UTC ++++ dpinger.c +@@ -164,7 +164,7 @@ cksum( + + if (len == 1) + { +- sum += (uint16_t) *((uint8_t *) p); ++ sum += (uint16_t) *((const uint8_t *) p); + } + + sum = (sum >> 16) + (sum & 0xFFFF); Added: head/net/dpinger/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/dpinger/pkg-descr Wed Nov 25 17:30:19 2015 (r402403) @@ -0,0 +1,3 @@ +IP device monitoring tool + +WWW: https://github.com/dennypage/dpinger