Gentoo Archives: gentoo-commits

From: "Javier Villavicencio (the_paya)" <the_paya@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-freebsd/freebsd-pf/files: freebsd-pf-7.0-pcap_pollution.patch freebsd-pf-7.0-libevent.patch pf.confd
Date: Thu, 22 Jan 2009 21:03:54
Message-Id: E1LQ6iO-0007lW-57@stork.gentoo.org
1 the_paya 09/01/22 21:03:52
2
3 Modified: pf.confd
4 Added: freebsd-pf-7.0-pcap_pollution.patch
5 freebsd-pf-7.0-libevent.patch
6 Log:
7 Import of the 7.1 ebuilds from gentoo-bsd overlay.
8 (Portage version: 2.2_rc23/cvs/FreeBSD i386)
9
10 Revision Changes Path
11 1.2 sys-freebsd/freebsd-pf/files/pf.confd
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-freebsd/freebsd-pf/files/pf.confd?rev=1.2&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-freebsd/freebsd-pf/files/pf.confd?rev=1.2&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-freebsd/freebsd-pf/files/pf.confd?r1=1.1&r2=1.2
16
17 Index: pf.confd
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sys-freebsd/freebsd-pf/files/pf.confd,v
20 retrieving revision 1.1
21 retrieving revision 1.2
22 diff -u -r1.1 -r1.2
23 --- pf.confd 14 Apr 2006 15:26:29 -0000 1.1
24 +++ pf.confd 22 Jan 2009 21:03:52 -0000 1.2
25 @@ -1,10 +1,9 @@
26 # Copyright 2006 Gentoo Foundation
27 # Distributed under the terms of the GNU General Public License v2
28 -# $Header: /var/cvsroot/gentoo-x86/sys-freebsd/freebsd-pf/files/pf.confd,v 1.1 2006/04/14 15:26:29 flameeyes Exp $
29
30 # Defines where the rules file is found, by default /etc/pf.conf
31 -PF_RULES_FILE=/etc/pf.conf
32 +# pf_conf=/etc/pf.conf
33
34 # Extra options to pass to pfctl when loading the rules
35 # See pfctl(8)
36 -# PF_OPTS=
37 +# pf_args=
38
39
40
41 1.1 sys-freebsd/freebsd-pf/files/freebsd-pf-7.0-pcap_pollution.patch
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-freebsd/freebsd-pf/files/freebsd-pf-7.0-pcap_pollution.patch?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-freebsd/freebsd-pf/files/freebsd-pf-7.0-pcap_pollution.patch?rev=1.1&content-type=text/plain
45
46 Index: freebsd-pf-7.0-pcap_pollution.patch
47 ===================================================================
48 --- contrib/pf/pflogd/privsep.c.orig 2007-07-03 09:30:02 -0300
49 +++ contrib/pf/pflogd/privsep.c 2008-06-13 23:55:39 -0300
50 @@ -31,13 +31,14 @@
51 #include <errno.h>
52 #include <fcntl.h>
53 #include <limits.h>
54 +#include <stdio.h>
55 +#define HAVE_SNPRINTF
56 #ifndef __FreeBSD__
57 #include <pcap.h>
58 #include <pcap-int.h>
59 #endif
60 #include <pwd.h>
61 #include <signal.h>
62 -#include <stdio.h>
63 #include <stdlib.h>
64 #include <string.h>
65 #ifdef __FreeBSD__
66
67
68
69 1.1 sys-freebsd/freebsd-pf/files/freebsd-pf-7.0-libevent.patch
70
71 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-freebsd/freebsd-pf/files/freebsd-pf-7.0-libevent.patch?rev=1.1&view=markup
72 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-freebsd/freebsd-pf/files/freebsd-pf-7.0-libevent.patch?rev=1.1&content-type=text/plain
73
74 Index: freebsd-pf-7.0-libevent.patch
75 ===================================================================
76 --- usr.sbin/ftp-proxy/ftp-proxy/Makefile.orig 2008-06-14 00:01:52 -0300
77 +++ usr.sbin/ftp-proxy/ftp-proxy/Makefile 2008-06-14 00:03:19 -0300
78 @@ -10,8 +10,7 @@
79 CFLAGS+= -I${.CURDIR}/../../../contrib/pf/libevent
80 CFLAGS+= -I${.CURDIR}/../../../sys/contrib/pf
81
82 -DPADD= ${LIBEVENT}
83 -LDADD= ${LIBEVENT}
84 +LDADD= -levent
85
86 WARNS?= 2