blob: 1287bafc47701849de5663c846b748d7a0f2696f (
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
|
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
ZIG_SLOT="0.16"
inherit zig systemd git-r3
DESCRIPTION="A small, speedy DNS proxy and bad-stuff-blocker"
HOMEPAGE="https://codeberg.org/zacoons/dnss"
LICENSE="Unlicense"
SLOT="0"
KEYWORDS=""
IUSE="openrc systemd"
RDEPEND="
openrc? ( sys-apps/openrc )
systemd? ( sys-apps/systemd )
"
DEPEND="${RDEPEND}"
EGIT_REPO_URI="https://codeberg.org/zacoons/dnss.git"
src_compile() {
ezig build --release=fast
}
src_install() {
# Manually install the binary because zig_src_install may fail
local binary="${BUILD_DIR}/zig-out/bin/dnss"
[[ -f "${binary}" ]] || binary="${S}/zig-out/bin/dnss"
[[ -f "${binary}" ]] || die "dnss binary not found"
dobin "${binary}"
# Example config
if [[ ! -f "${S}/example.dnss.conf" ]]; then
die "example.dnss.conf not found"
fi
insinto /etc
newins "${S}/example.dnss.conf" dnss.conf.example
# systemd service
if use systemd; then
if [[ ! -f "${S}/pkg/aur/systemd/dnss.service" ]]; then
die "systemd service file not found at pkg/aur/systemd/dnss.service"
fi
systemd_dounit "${S}/pkg/aur/systemd/dnss.service"
fi
# OpenRC init script
if use openrc; then
if [[ ! -f "${S}/pkg/aur/openrc/dnss" ]]; then
die "OpenRC script not found at pkg/aur/openrc/dnss"
fi
newinitd "${S}/pkg/aur/openrc/dnss" dnss
fi
}
|