blob: 380d72354dd128290abf68db1baa8861ecae22b6 (
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
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit systemd tmpfiles
DESCRIPTION="Dynamic DNS client with multiple SSL/TLS library support"
HOMEPAGE="https://github.com/troglobit/inadyn"
SRC_URI="https://github.com/troglobit/inadyn/releases/download/v${PV}/${P}.tar.xz"
LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86"
IUSE="gnutls mbedtls openssl"
REQUIRED_USE="?? ( gnutls mbedtls openssl )"
DEPEND="
acct-group/inadyn
acct-user/inadyn
dev-libs/confuse:=
gnutls? (
dev-libs/nettle:=
net-libs/gnutls:=
)
mbedtls? ( net-libs/mbedtls:= )
openssl? ( dev-libs/openssl:= )
"
RDEPEND="${DEPEND}"
BDEPEND="virtual/pkgconfig"
PATCHES=( "${FILESDIR}/${PN}-2.12.0-musl.patch" )
src_configure() {
# Tests would need a custom config file in homedir per configure help?
local myeconfargs=(
--disable-ssl
--with-systemd="$(systemd_get_systemunitdir)"
)
if use gnutls || use mbedtls || use openssl; then
myeconfargs=( --enable-ssl )
fi
if use mbedtls; then
myeconfargs+=( --enable-mbedtls )
# MbedTLS has no support for pkg-config
# TODO: Revisit a while after bug #922123 is fixed
myeconfargs+=( MbedTLS_CFLAGS="-I${ESYSROOT}/usr/include/mbedtls" )
myeconfargs+=( MbedTLS_LIBS="-lmbedtls" )
fi
use openssl && myeconfargs+=( --enable-openssl )
econf "${myeconfargs[@]}"
}
src_install() {
default
insinto /etc
insopts -m 0600 -o inadyn -g inadyn
doins examples/inadyn.conf
newinitd "${FILESDIR}"/inadyn.initd inadyn
newconfd "${FILESDIR}"/inadyn.confd inadyn
newtmpfiles "${FILESDIR}"/inadyn.tmpfilesd inadyn.conf
}
pkg_postinst() {
tmpfiles_process inadyn.conf
}
|