blob: a210e789bf43b489fb5a682210efbab720f2e6e8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
inherit bsdmk freebsd user
DESCRIPTION="FreeBSD's base system libraries"
SLOT="0"
IUSE=""
# Crypto is needed to have an internal OpenSSL header
if [[ ${PV} != *9999* ]]; then
KEYWORDS="~amd64-fbsd ~x86-fbsd"
fi
EXTRACTONLY="
usr.sbin/
sbin/
contrib/pf/
etc/
"
RDEPEND="net-libs/libpcap"
DEPEND="${RDEPEND}
dev-libs/libevent
=sys-freebsd/freebsd-mk-defs-${RV}*
=sys-freebsd/freebsd-sources-${RV}*"
S="${WORKDIR}"
SUBDIRS="usr.sbin/authpf sbin/pfctl sbin/pflogd usr.sbin/ftp-proxy"
pkg_setup() {
enewgroup authpf 63
}
src_prepare() {
# pcap-int.h redefines snprintf as pcap_snprintf
epatch "${FILESDIR}/${PN}-9.0-pcap_pollution.patch"
# Use system's libevent
epatch "${FILESDIR}/${PN}-11.1-libevent.patch"
epatch "${FILESDIR}/${PN}-11.1-pflogd.patch"
epatch "${FILESDIR}/${PN}-9.0-bpf.patch"
# Link in kernel sources
[[ ! -e "${WORKDIR}/sys" ]] && ln -s "/usr/src/sys" "${WORKDIR}/sys"
}
src_compile() {
for dir in ${SUBDIRS}; do
einfo "Starting make in ${dir}"
cd "${S}/${dir}" || die
freebsd_src_compile || die "Make ${dir} failed"
done
}
src_install() {
for dir in ${SUBDIRS}; do
einfo "Starting install in ${dir}"
cd "${S}/${dir}" || die
freebsd_src_install || die "Install ${dir} failed"
done
cd "${WORKDIR}"/etc
insinto /etc
doins pf.os
# pf.initd provided by openrc, but no pf.confd
newconfd "${FILESDIR}/pf.confd" pf
}
|