diff options
author | jeh <jeh@FreeBSD.org> | 2003-11-09 16:00:18 +0000 |
---|---|---|
committer | jeh <jeh@FreeBSD.org> | 2003-11-09 16:00:18 +0000 |
commit | 694ea430a8b1fb18e3178e01fa77a7befb14cb42 (patch) | |
tree | 91dad1f2a6900dcd67e9896076765d2ce82a51b8 /security | |
parent | 91512025b61e1307f56f3011ecd04bad16e4a859 (diff) | |
download | FreeBSD-ports-694ea430a8b1fb18e3178e01fa77a7befb14cb42.zip FreeBSD-ports-694ea430a8b1fb18e3178e01fa77a7befb14cb42.tar.gz |
Bump port version to 2.00:
- Build again with FreeBSD_version > 501113 (if_xname)
- Fix some byte order problems with route-to rules
- Stable release
PR: 589037
Submitted By: MAINTAINER
Diffstat (limited to 'security')
-rw-r--r-- | security/pf/Makefile | 3 | ||||
-rw-r--r-- | security/pf/distinfo | 2 | ||||
-rw-r--r-- | security/pf/files/patch-ac | 14 | ||||
-rw-r--r-- | security/pf/pkg-descr | 2 |
4 files changed, 4 insertions, 17 deletions
diff --git a/security/pf/Makefile b/security/pf/Makefile index 09f7b54..e4f9c55 100644 --- a/security/pf/Makefile +++ b/security/pf/Makefile @@ -6,8 +6,7 @@ # PORTNAME= pf_freebsd -PORTVERSION= 1.66 -PORTREVISION= 1 +PORTVERSION= 2.00 CATEGORIES= security ipv6 MASTER_SITES= http://pf4freebsd.love2party.net/ .if defined(WITH_ALTQ) && (${WITH_ALTQ} == "yes") diff --git a/security/pf/distinfo b/security/pf/distinfo index 66d363f..b329613 100644 --- a/security/pf/distinfo +++ b/security/pf/distinfo @@ -1 +1 @@ -MD5 (pf_freebsd_1.66.tar.gz) = e14526765cb23f2b8ff5fb0cc6bccc8a +MD5 (pf_freebsd_2.00.tar.gz) = e55504a934a232a0030dc746f0bf96d0 diff --git a/security/pf/files/patch-ac b/security/pf/files/patch-ac deleted file mode 100644 index 4191537..0000000 --- a/security/pf/files/patch-ac +++ /dev/null @@ -1,14 +0,0 @@ ---- freebsd_tcpdump/print-tcp.c.orig Thu Oct 9 19:55:02 2003 -+++ freebsd_tcpdump/print-tcp.c Thu Oct 9 19:56:28 2003 -@@ -406,7 +406,11 @@ - } - - /* OS Fingerprint */ -+#ifdef INET6 - if (oflag && ip6 == NULL && (flags & (TH_SYN|TH_ACK)) == TH_SYN) { -+#else -+ if (oflag && (flags & (TH_SYN|TH_ACK)) == TH_SYN) { -+#endif - struct pf_osfp_enlist *head = NULL; - struct pf_osfp_entry *fp; - unsigned long left; diff --git a/security/pf/pkg-descr b/security/pf/pkg-descr index 5c07b53..d17d60f 100644 --- a/security/pf/pkg-descr +++ b/security/pf/pkg-descr @@ -3,6 +3,8 @@ filtering TCP/IP traffic and doing Network Address Translation. PF is also capable of normalizing and conditioning TCP/IP traffic and providing bandwidth control and packet prioritization. +Version 2.00 of this port has the same function set as found in OpenBSD 3.4 + Information about pf can be found at the website of Daniel Hartmeier, the original author of PF: http://www.benzedrine.cx/pf.html and OpenBSD PF FAQ: |