From owner-svn-ports-all@freebsd.org Tue Feb 25 12:04:19 2020 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id A9CA725A17E; Tue, 25 Feb 2020 12:04:19 +0000 (UTC) (envelope-from decke@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 48Rczl3zw8z4JgK; Tue, 25 Feb 2020 12:04:19 +0000 (UTC) (envelope-from decke@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 820B2E24D; Tue, 25 Feb 2020 12:04:19 +0000 (UTC) (envelope-from decke@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 01PC4Jqb036733; Tue, 25 Feb 2020 12:04:19 GMT (envelope-from decke@FreeBSD.org) Received: (from decke@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 01PC4IVB036730; Tue, 25 Feb 2020 12:04:18 GMT (envelope-from decke@FreeBSD.org) Message-Id: <202002251204.01PC4IVB036730@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: decke set sender to decke@FreeBSD.org using -f From: Bernhard Froehlich Date: Tue, 25 Feb 2020 12:04:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r527075 - in head/net: . addrwatch X-SVN-Group: ports-head X-SVN-Commit-Author: decke X-SVN-Commit-Paths: in head/net: . addrwatch X-SVN-Commit-Revision: 527075 X-SVN-Commit-Repository: ports 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.29 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, 25 Feb 2020 12:04:19 -0000 Author: decke Date: Tue Feb 25 12:04:18 2020 New Revision: 527075 URL: https://svnweb.freebsd.org/changeset/ports/527075 Log: addrwatch is a similar software to arpwatch. It main purpose is to monitor network and log ethernet/ip pairings. To simply try out addrwatch start it without any arguments. When started without arguments it will open first non loopback interface and start logging events to the console without writing anything to disk. All discovered ethernet/ip address pairings will be printed to stdout. All debug, warning, and err messages will be sent to syslog and printed to stderr. WWW: https://github.com/fln/addrwatch PR: 244359 Submitted by: Michael Muenz Added: head/net/addrwatch/ head/net/addrwatch/Makefile (contents, props changed) head/net/addrwatch/distinfo (contents, props changed) head/net/addrwatch/pkg-descr (contents, props changed) Modified: head/net/Makefile Modified: head/net/Makefile ============================================================================== --- head/net/Makefile Tue Feb 25 11:50:23 2020 (r527074) +++ head/net/Makefile Tue Feb 25 12:04:18 2020 (r527075) @@ -10,6 +10,7 @@ SUBDIR += Sockets SUBDIR += activemq SUBDIR += adasockets + SUBDIR += addrwatch SUBDIR += afpfs-ng SUBDIR += aget SUBDIR += akonadi-calendar Added: head/net/addrwatch/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/addrwatch/Makefile Tue Feb 25 12:04:18 2020 (r527075) @@ -0,0 +1,28 @@ +# $FreeBSD$ + +PORTNAME= addrwatch +DISTVERSIONPREFIX=v +DISTVERSION= 1.0.2 +CATEGORIES= net + +MAINTAINER= m.muenz@gmail.com +COMMENT= Supports IP/Ethernet pairing for IPv4 and IPv6 + +LICENSE= GPLv3 + +LIB_DEPENDS= libevent.so:devel/libevent \ + libpcap.so:net/libpcap \ + libargp.so:devel/argp-standalone + +USES= autoreconf gmake pkgconfig +GNU_CONFIGURE= yes +CONFIGURE_ARGS+=CPPFLAGS="-I${LOCALBASE}/include" LDFLAGS="-L${LOCALBASE}/lib" +USE_GITHUB= yes +GH_ACCOUNT= fln + +PLIST_FILES= bin/addrwatch \ + bin/addrwatch_stdout \ + bin/addrwatch_syslog \ + man/man8/addrwatch.8.gz + +.include Added: head/net/addrwatch/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/addrwatch/distinfo Tue Feb 25 12:04:18 2020 (r527075) @@ -0,0 +1,3 @@ +TIMESTAMP = 1582621254 +SHA256 (fln-addrwatch-v1.0.2_GH0.tar.gz) = 56a2180305e95adde584bd9502771269b9a216419b49631046b368502d5d5fba +SIZE (fln-addrwatch-v1.0.2_GH0.tar.gz) = 44584 Added: head/net/addrwatch/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/addrwatch/pkg-descr Tue Feb 25 12:04:18 2020 (r527075) @@ -0,0 +1,11 @@ +addrwatch is a similar software to arpwatch. It main purpose is to +monitor network and log ethernet/ip pairings. + +To simply try out addrwatch start it without any arguments. When +started without arguments it will open first non loopback interface and +start logging events to the console without writing anything to disk. +All discovered ethernet/ip address pairings will be printed to stdout. +All debug, warning, and err messages will be sent to syslog and printed +to stderr. + +WWW: https://github.com/fln/addrwatch