From owner-freebsd-ports Wed Oct 30 1:20: 7 2002 Delivered-To: freebsd-ports@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4294037B401 for ; Wed, 30 Oct 2002 01:20:03 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4A95143E75 for ; Wed, 30 Oct 2002 01:20:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id g9U9K2x3011632 for ; Wed, 30 Oct 2002 01:20:02 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id g9U9K2no011631; Wed, 30 Oct 2002 01:20:02 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8ECE337B401 for ; Wed, 30 Oct 2002 01:16:02 -0800 (PST) Received: from relay1.ntu-kpi.kiev.ua (www.ntu-kpi.kiev.ua [212.111.192.161]) by mx1.FreeBSD.org (Postfix) with ESMTP id B7E7343E4A for ; Wed, 30 Oct 2002 01:15:58 -0800 (PST) (envelope-from simon@comsys.ntu-kpi.kiev.ua) Received: from comsys.ntu-kpi.kiev.ua (eth0.comsys.ntu-kpi.kiev.ua [10.0.1.184]) by relay1.ntu-kpi.kiev.ua (Postfix) with ESMTP id 52F0519CDD for ; Wed, 30 Oct 2002 11:15:52 +0200 (EET) Received: from pm514-9.comsys.ntu-kpi.kiev.ua (pm514-9.comsys.ntu-kpi.kiev.ua [10.18.54.109]) by comsys.ntu-kpi.kiev.ua (8.11.6/8.11.6) with ESMTP id g9U9JJ866695 for ; Wed, 30 Oct 2002 11:19:19 +0200 (EET) Received: from pm514-9.comsys.ntu-kpi.kiev.ua (localhost [127.0.0.1]) by pm514-9.comsys.ntu-kpi.kiev.ua (8.12.6/8.12.6) with ESMTP id g9U9Fgun000162 for ; Wed, 30 Oct 2002 11:15:43 +0200 (EET) (envelope-from simon@pm514-9.comsys.ntu-kpi.kiev.ua) Received: (from simon@localhost) by pm514-9.comsys.ntu-kpi.kiev.ua (8.12.6/8.12.6/Submit) id g9U9FePT000159 for FreeBSD-gnats-submit@freebsd.org; Wed, 30 Oct 2002 11:15:40 +0200 (EET) Message-Id: <20021030091536.GA131@pm514-9.comsys.ntu-kpi.kiev.ua> Date: Wed, 30 Oct 2002 11:15:37 +0200 From: Andrey Simonenko To: FreeBSD-gnats-submit@FreeBSD.org Subject: ports/44743: Maintainer update port sysutils/ipa 1.2.8 -> 1.2.9 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 44743 >Category: ports >Synopsis: Maintainer update port sysutils/ipa 1.2.8 -> 1.2.9 >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Wed Oct 30 01:20:01 PST 2002 >Closed-Date: >Last-Modified: >Originator: Andrey Simonenko >Release: FreeBSD 4.7-STABLE i386 >Organization: >Environment: >Description: Please update port sysutils/ipa 1.2.8 -> 1.2.9 IPA-1.2.9 supports IPFW2 and now it is possible to remove not needed accounting systems support, so port's Makefile was changed. >How-To-Repeat: >Fix: diff -ruN ipa.orig/Makefile ipa/Makefile --- ipa.orig/Makefile Tue Oct 15 19:17:42 2002 +++ ipa/Makefile Tue Oct 29 22:12:16 2002 @@ -6,7 +6,7 @@ # PORTNAME= ipa -PORTVERSION= 1.2.8 +PORTVERSION= 1.2.9 CATEGORIES= sysutils MASTER_SITES= http://www.simon.org.ua/ipa/ \ http://www.mirrors.wiretapped.net/security/network-monitoring/ipa/ \ @@ -26,4 +26,27 @@ MAN8= ipa.8 ipastat.8 MANLANG= "" ru_RU.KOI8-R -.include +.include + +pre-everything: + @${ECHO_MSG} "-------------------------------------------------------------------" +.if !defined(WITHOUT_IPFW) + @${ECHO_MSG} "o You can remove IPv4 Firewall support by defining WITHOUT_IPFW" +.endif +.if !defined(WITHOUT_IP6FW) && ${OSVERSION} >= 420001 + @${ECHO_MSG} "o You can remove IPv6 Firewall support by defining WITHOUT_IP6FW" +.endif +.if !defined(WITHOUT_IPFIL) + @${ECHO_MSG} "o You can remove IP Filter support by defining WITHOUT_IPFIL" +.endif +.if !defined(WITHOUT_IP6FW) && !defined(WITH_IP6FW) && ${OSVERSION} >= 400000 && ${OSVERSION} < 420001 + @${ECHO_MSG} "o You can add IPv6 Firewall support by defining WITH_IP6FW," + @${ECHO_MSG} " this support will be probably broken on your system (see the" + @${ECHO_MSG} " ${WRKSRC}/INSTALL file for more information)" +.endif +.if !defined(IPFW2) && !defined(WITHOUT_IPFW) && ${OSVERSION} >= 460100 && ${OSVERSION} < 500038 + @${ECHO_MSG} "o You can add IPFW2 support by defining IPFW2" +.endif + @${ECHO_MSG} "-------------------------------------------------------------------" + +.include diff -ruN ipa.orig/distinfo ipa/distinfo --- ipa.orig/distinfo Tue Oct 15 19:17:42 2002 +++ ipa/distinfo Mon Oct 28 22:05:22 2002 @@ -1 +1 @@ -MD5 (ipa-1.2.8.tar.gz) = b0e8e4e11d25ee0855780beb0557092e +MD5 (ipa-1.2.9.tar.gz) = 9bd5314eec444921441601c8dcf0db08 diff -ruN ipa.orig/files/patch-aa ipa/files/patch-aa --- ipa.orig/files/patch-aa Tue Oct 15 19:17:42 2002 +++ ipa/files/patch-aa Mon Oct 28 22:16:11 2002 @@ -1,5 +1,5 @@ ---- Makefile.orig Fri Sep 27 23:24:32 2002 -+++ Makefile Sat Sep 28 20:11:41 2002 +--- Makefile.orig Mon Oct 28 21:40:37 2002 ++++ Makefile Mon Oct 28 22:15:47 2002 @@ -38,7 +38,7 @@ # -Ox - optimize; # -g - produce debugging information. @@ -9,7 +9,7 @@ # # PREFIX - prefix for all below listed paths -@@ -96,10 +96,10 @@ +@@ -81,10 +81,10 @@ # # Some INSTALL_* variables # @@ -24,7 +24,7 @@ INSTALL_MAN_DIR= ${INSTALL} -d -m 0555 -g wheel -o root INSTALL_DATA_DIR= ${INSTALL} -d -m 0555 -g wheel -o root -@@ -241,8 +241,10 @@ +@@ -247,8 +247,10 @@ .endif ${INSTALL_MAN} man/ru_RU.KOI8-R/ipa.5 man/ru_RU.KOI8-R/ipa.conf.5 ${DSTMANDIR}/ru_SU.KOI8-R/man5 ${INSTALL_MAN} man/ru_RU.KOI8-R/ipa.8 man/ru_RU.KOI8-R/ipastat.8 ${DSTMANDIR}/ru_SU.KOI8-R/man8 diff -ruN ipa.orig/pkg-descr ipa/pkg-descr --- ipa.orig/pkg-descr Tue Oct 15 19:17:42 2002 +++ ipa/pkg-descr Tue Oct 29 19:14:22 2002 @@ -1,6 +1,6 @@ ipa(8) allows to make IP accounting (network accounting) based on -FreeBSD IPv4/v6 Firewall, OpenBSD Packet Filter and IP Filter -accounting rules on FreeBSD, NetBSD and OpenBSD. +FreeBSD IPv4/v6 Firewall (including IPFW2), OpenBSD Packet Filter and +IP Filter accounting rules on FreeBSD, NetBSD and OpenBSD. It supports limits for accounting rules and limits events as "limit is reached", "reached limit is expired", etc. It understands time intervals >Release-Note: >Audit-Trail: >Unformatted: To: FreeBSD-gnats-submit@freebsd.org From: Andrey Simonenko Reply-To: Andrey Simonenko Cc: X-send-pr-version: 3.113 X-GNATS-Notify: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message