blob: 5affa1e0fe7741b6e5be591f69e70daba286a581 (
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
|
# Copyright 2024-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit linux-mod-r1
DESCRIPTION="Jool is an Open Source SIIT and NAT64 for linux"
HOMEPAGE="https://nicmx.github.io/Jool/en/index.html"
SRC_URI="https://github.com/NICMx/Jool/releases/download/v${PV}/jool-${PV}.tar.gz"
S="${WORKDIR}/jool-${PV}"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64"
IUSE="iptables"
src_configure() {
true
}
src_compile() {
local modlist=(
jool_common=:src/mod/common:src/mod/common
jool=:src/mod/nat64:src/mod/nat64
jool_siit=:src/mod/siit:src/mod/siit
)
local modargs=(
KERNEL_DIR="${KV_OUT_DIR}"
MODULES_DIR="/lib/modules/${KV_FULL}"
)
use iptables || modargs+=(
CFLAGS_MODULE="-DXTABLES_DISABLED"
)
linux-mod-r1_src_compile
}
|