blob: 48f7c9ade22704bcb8480dc0e8554822d7d689c2 (
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
|
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python3_{10..11} )
inherit distutils-r1 linux-info systemd
EGO_PN="github.com/evilsocket/opensnitch"
EGO_VENDOR=(
"github.com/evilsocket/ftrace v1.2.0"
"github.com/fsnotify/fsnotify v1.5.1"
"github.com/golang/protobuf v1.5.2"
"github.com/google/gopacket v1.1.19"
"github.com/google/nftables 950e408d48c671ccd9f4997a4b6eb95db21365d6"
"github.com/iovisor/gobpf v0.2.0"
"github.com/vishvananda/netlink v1.1.0"
"github.com/vishvananda/netns 50045581ed74"
"golang.org/x/net 27dd8689420f github.com/golang/net"
"golang.org/x/sync 036812b2e83c github.com/golang/sync"
"golang.org/x/sys 4e6760a101f9 github.com/golang/sys"
"golang.org/x/text v0.3.7 github.com/golang/text"
"google.golang.org/grpc v1.32.0 github.com/grpc/grpc-go"
"google.golang.org/protobuf v1.27.1 github.com/protocolbuffers/protobuf-go"
"google.golang.org/genproto 325a89244dc8 github.com/googleapis/go-genproto"
"github.com/mdlayher/netlink v1.6.0"
"github.com/josharian/native v1.0.0"
"github.com/mdlayher/socket v0.2.2"
)
inherit golang-vcs-snapshot
DESCRIPTION="Desktop application firewall"
HOMEPAGE="https://github.com/evilsocket/opensnitch"
SRC_URI="https://github.com/evilsocket/opensnitch/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz
${EGO_VENDOR_URI}
amd64? ( https://dev.pentoo.ch/~blshkv/distfiles/opensnitch_amd64.o )
x86? ( https://dev.pentoo.ch/~blshkv/distfiles/opensnitch_i386.o )
arm64? ( https://dev.pentoo.ch/~blshkv/distfiles/opensnitch_arm64.o )
"
LICENSE="Apache-2.0"
SLOT="0"
IUSE="systemd"
KEYWORDS="~amd64"
DEPEND=">=dev-lang/go-1.13
net-libs/libnetfilter_queue
dev-go/go-protobuf
dev-go/protoc-gen-go-grpc
"
RDEPEND="
dev-python/grpcio-tools[${PYTHON_USEDEP}]
dev-python/python-slugify[${PYTHON_USEDEP}]
dev-python/pyinotify[${PYTHON_USEDEP}]
dev-python/PyQt5[sql,${PYTHON_USEDEP}]
"
RESTRICT="test"
#https://github.com/evilsocket/opensnitch/issues/712
QA_PREBUILT="etc/opensnitchd/opensnitch.o"
#KPROBES* required by ebpf
CONFIG_CHECK="NETFILTER_XT_MATCH_CONNTRACK CGROUP_BPF BPF BPF_SYSCALL BPF_EVENTS KPROBES KPROBE_EVENTS"
pkg_pretend() {
linux-info_pkg_setup
}
src_prepare() {
rm -r src/${EGO_PN}/ui/tests
emake -C src/${EGO_PN} protocol
cd src/${EGO_PN}/ui
pyrcc5 -o opensnitch/resources_rc.py opensnitch/res/resources.qrc
sed -i 's/^import ui_pb2/from . import ui_pb2/' opensnitch/ui_pb2*
use systemd && cd "${WORKDIR}/${P}/src/${EGO_PN}" && eapply "${FILESDIR}/systemd.patch"
eapply_user
}
src_compile() {
GOPATH="${S}:$(get_golibdir_gopath)" \
GOCACHE="${T}/go-cache" \
go build -v -work -x -ldflags="-s -w" "${EGO_PN}/daemon" || die
pushd src/${EGO_PN}/ui >/dev/null || die
distutils-r1_src_compile
popd >/dev/null || die
}
src_install(){
newbin daemon opensnitchd
pushd src/${EGO_PN}/ui >/dev/null || die
distutils-r1_src_install
popd >/dev/null || die
pushd src/${EGO_PN}/daemon >/dev/null || die
insinto /etc/opensnitchd/rules
insinto /etc/opensnitchd/
doins default-config.json
doins system-fw.json
if use amd64; then
newins "${DISTDIR}"/opensnitch_amd64.o opensnitch.o
elif use arm64; then
newins "${DISTDIR}"/opensnitch_arm64.o opensnitch.o
elif use x86; then
newins "${DISTDIR}"/opensnitch_i386.o opensnitch.o
fi
popd >/dev/null || die
if use systemd; then
pushd src/${EGO_PN}/daemon >/dev/null || die
systemd_dounit opensnitchd.service
popd >/dev/null || die
else
newinitd "${FILESDIR}"/opensnitch.initd ${PN}
fi
}
|