sys-libs/nss-tls: fix for bug 928369, general improvement

Closes: https://bugs.gentoo.org/928369
Signed-off-by: Julien Roy <julien@jroy.ca>
This commit is contained in:
Alfred Wingate
2024-04-21 16:49:46 -04:00
committed by Julien Roy
parent 79b9a0390e
commit e65f4f75e4
2 changed files with 46 additions and 57 deletions

View File

@@ -0,0 +1,46 @@
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="A DNS over HTTPS resolver for glibc"
HOMEPAGE="https://github.com/dimkr/nss-tls"
SRC_URI="https://github.com/dimkr/nss-tls/archive/${PV}.tar.gz -> ${P}.tar.gz"
inherit meson systemd
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~x86"
RDEPEND="
dev-libs/glib
net-libs/libsoup:2.4
"
DEPEND="
${RDEPEND}
sys-libs/glibc[nscd(+)]"
src_prepare() {
default
sed -e "s/@0@\/run\/nss-tls/\/var\/run\/nss-tls/" -i "${S}"/meson.build || die
if use systemd; then
sed -i -e "s/systemd = /systemd = dependency('systemd')" meson.build || die
else
sed -i -e "s/systemd = /systemd = disabler()" meson.build || die
fi
}
src_install() {
meson_src_install
systemd_newunit "${S}"/nss-tlsd.service.in nss-tlsd.service
doinitd "${FILESDIR}"/nss-tlsd
}
post_install() {
ewarn "Do Not put ip address of the server in nss-tls.conf"
ewarn "use the dns name and add record of dns server in /etc/hosts"
ewarn "echo "8.8.8.8 dns.google" >> /etc/hosts"
}

View File

@@ -1,57 +0,0 @@
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
DESCRIPTION="A DNS over HTTPS resolver for glibc"
HOMEPAGE="https://github.com/dimkr/nss-tls"
SRC_URI="https://github.com/dimkr/nss-tls/archive/${PV}.tar.gz -> ${P}.tar.gz"
inherit meson systemd
LICENSE="LGPL-2.1"
KEYWORDS="~amd64 ~x86"
IUSE="systemd"
SLOT="0"
RDEPEND="dev-libs/glib
net-libs/libsoup"
DEPEND="${RDEPEND}
sys-libs/glibc[nscd(+)]"
BDEPEND="
${DEPEND}
app-alternatives/ninja
dev-build/meson
"
src_prepare() {
default
sed -e "s/@0@\/run\/nss-tls/\/var\/run\/nss-tls/" -i "${S}"/meson.build || die
}
src_configure() {
local emesonargs=(
--buildtype=release
)
meson_src_configure
}
src_compile() {
meson_src_compile
}
src_install() {
if use systemd ; then
systemd_newunit "${S}"/nss-tlsd.service.in nss-tlsd.service
else
doinitd "${FILESDIR}"/nss-tlsd
fi
meson_src_install
}
post_install() {
ewarn "Do Not put ip address of the server in nss-tls.conf"
ewarn "use the dns name and add record of dns server in /etc/hosts"
ewarn "echo "8.8.8.8 dns.google" >> /etc/hosts"
}