From owner-svn-ports-all@freebsd.org Thu Jan 26 10:49:09 2017 Return-Path: Delivered-To: svn-ports-all@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 5E21CCC1790; Thu, 26 Jan 2017 10:49:09 +0000 (UTC) (envelope-from ehaupt@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 1100E1661; Thu, 26 Jan 2017 10:49:08 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v0QAn8Gm046005; Thu, 26 Jan 2017 10:49:08 GMT (envelope-from ehaupt@FreeBSD.org) Received: (from ehaupt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v0QAn7sX046003; Thu, 26 Jan 2017 10:49:07 GMT (envelope-from ehaupt@FreeBSD.org) Message-Id: <201701261049.v0QAn7sX046003@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ehaupt set sender to ehaupt@FreeBSD.org using -f From: Emanuel Haupt Date: Thu, 26 Jan 2017 10:49:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r432481 - head/net-mgmt/packit 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.23 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: Thu, 26 Jan 2017 10:49:09 -0000 Author: ehaupt Date: Thu Jan 26 10:49:07 2017 New Revision: 432481 URL: https://svnweb.freebsd.org/changeset/ports/432481 Log: - Update to 1.5 - Use new-ish options framework - Add license - Take maintainership Modified: head/net-mgmt/packit/Makefile head/net-mgmt/packit/distinfo head/net-mgmt/packit/pkg-descr Modified: head/net-mgmt/packit/Makefile ============================================================================== --- head/net-mgmt/packit/Makefile Thu Jan 26 10:11:52 2017 (r432480) +++ head/net-mgmt/packit/Makefile Thu Jan 26 10:49:07 2017 (r432481) @@ -2,29 +2,37 @@ # $FreeBSD$ PORTNAME= packit -PORTVERSION= 1.0 -PORTREVISION= 4 +PORTVERSION= 1.5 CATEGORIES= net-mgmt -MASTER_SITES= http://packit.sourceforge.net/downloads/ -EXTRACT_SUFX= .tgz -MAINTAINER= ports@FreeBSD.org +MAINTAINER= ehaupt@FreeBSD.org COMMENT= Network auditing tool +LICENSE= GPLv2 +LICENSE_FILE= ${WRKSRC}/LICENSE + LIB_DEPENDS= libnet.so:net/libnet +USE_GITHUB= yes +GH_ACCOUNT= eribertomota + +USES= autoreconf GNU_CONFIGURE= yes + CPPFLAGS+= -I${LOCALBASE}/include LIBS+= -L${LOCALBASE}/lib PLIST_FILES= sbin/packit \ man/man8/packit.8.gz -.if defined(WITHOUT_CAPTURE) -CONFIGURE_ARGS+= --without-capture -.endif -.if defined(WITHOUT_INJECTION) -CONFIGURE_ARGS+= --without-injection -.endif +OPTIONS_DEFINE= CAPTURE INJECTION + +CAPTURE_DESC= Capture support +INJECTION_DESC= Injection support + +OPTIONS_DEFAULT=CAPTURE INJECTION + +CAPTURE_CONFIGURE_OFF= --without-capture +INJECTION_CONFIGURE_OFF= --without-injection .include Modified: head/net-mgmt/packit/distinfo ============================================================================== --- head/net-mgmt/packit/distinfo Thu Jan 26 10:11:52 2017 (r432480) +++ head/net-mgmt/packit/distinfo Thu Jan 26 10:49:07 2017 (r432481) @@ -1,2 +1,3 @@ -SHA256 (packit-1.0.tgz) = dd03023a03b3c98819f4da5c23426d103ed3f457562e2afda2eb3ebc419ad8fa -SIZE (packit-1.0.tgz) = 138367 +TIMESTAMP = 1485426490 +SHA256 (eribertomota-packit-1.5_GH0.tar.gz) = 5e0c8f7406581345f71cd769800bab83c448766ac48907c3263e105349d4dbd7 +SIZE (eribertomota-packit-1.5_GH0.tar.gz) = 52390 Modified: head/net-mgmt/packit/pkg-descr ============================================================================== --- head/net-mgmt/packit/pkg-descr Thu Jan 26 10:11:52 2017 (r432480) +++ head/net-mgmt/packit/pkg-descr Thu Jan 26 10:49:07 2017 (r432481) @@ -6,4 +6,4 @@ useful in testing firewalls, intrusion d scanning, simulating network traffic, and general TCP/IP auditing. Packit is also an excellent tool for learning TCP/IP. -WWW: http://packit.sourceforge.net/ +WWW: https://github.com/eribertomota/packit