diff options
author | Quentin Retornaz <gentoo@retornaz.com> | 2019-12-29 21:27:15 +0100 |
---|---|---|
committer | Anthony G. Basile <blueness@gentoo.org> | 2020-01-03 16:31:58 -0500 |
commit | 06f3f121631f90bddbd09bef70f13140e03ac518 (patch) | |
tree | 5ceca3844f60a2c3159a92a27bd068b96f440988 /net-dns/getdns | |
parent | cmake.eclass: src_prepare: Revert to cmake-utils.eclass behaviour (diff) | |
download | gentoo-06f3f121631f90bddbd09bef70f13140e03ac518.tar.gz gentoo-06f3f121631f90bddbd09bef70f13140e03ac518.tar.bz2 gentoo-06f3f121631f90bddbd09bef70f13140e03ac518.zip |
net-dns/getdns: fix forgot use_with replaced by usex and switch to cmake.eclass
Closes: https://bugs.gentoo.org/703886
Package-Manager: Portage-2.3.79, Repoman-2.3.16
Signed-off-by: Quentin Retornaz <gentoo@retornaz.com>
Signed-off-by: Anthony G. Basile <blueness@gentoo.org>
Diffstat (limited to 'net-dns/getdns')
-rw-r--r-- | net-dns/getdns/getdns-1.6.0_beta1-r1.ebuild | 87 |
1 files changed, 87 insertions, 0 deletions
diff --git a/net-dns/getdns/getdns-1.6.0_beta1-r1.ebuild b/net-dns/getdns/getdns-1.6.0_beta1-r1.ebuild new file mode 100644 index 000000000000..434509bab8da --- /dev/null +++ b/net-dns/getdns/getdns-1.6.0_beta1-r1.ebuild @@ -0,0 +1,87 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +_SRCURI_P="${P/%_beta1/-beta.1}" + +inherit cmake fcaps systemd + +DESCRIPTION="Modern asynchronous DNS API" +HOMEPAGE="https://getdnsapi.net/" +SRC_URI="https://getdnsapi.net/releases/${_SRCURI_P//./-}/${_SRCURI_P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="doc examples +getdns-query +getdns-server-mon gnutls +idn libev libevent libuv static-libs stubby +unbound" + +S="${WORKDIR}/${_SRCURI_P}" + +# https://bugs.gentoo.org/661760 +# https://github.com/getdnsapi/getdns/issues/407 +RESTRICT="test" + +DEPEND=" + dev-libs/libbsd + dev-libs/libyaml + dev-libs/openssl:= + idn? ( net-dns/libidn2:= ) + gnutls? ( + net-libs/gnutls:0=[dane,openssl] + dev-libs/nettle:0= + ) + libev? ( dev-libs/libev:= ) + libevent? ( dev-libs/libevent:= ) + libuv? ( dev-libs/libuv:= ) + unbound? ( >=net-dns/unbound-1.5.9:= ) +" +RDEPEND=" + ${DEPEND} + stubby? ( + acct-group/stubby + acct-user/stubby + sys-libs/libcap + ) +" +BDEPEND=" + doc? ( app-doc/doxygen ) +" + +PATCHES=( "${FILESDIR}/${PN}-1.4.2-stubby.service.patch" ) + +src_configure() { + local mycmakeargs=( + -DCMAKE_INSTALL_RUNSTATEDIR=/var/run + -DENABLE_STATIC=$(usex static-libs) + -DBUILD_GETDNS_QUERY=$(usex getdns-query) + -DBUILD_GETDNS_SERVER_MON=$(usex getdns-server-mon) + -DUSE_GNUTLS=$(usex gnutls) + -DUSE_LIBIDN2=$(usex idn) + -DUSE_LIBEV=$(usex libev) + -DUSE_LIBEVENT2=$(usex libevent) + -DUSE_LIBUV=$(usex libuv) + -DBUILD_STUBBY=$(usex stubby) + -DENABLE_UNBOUND_EVENT_API=$(usex unbound) + -DBUILD_DOXYGEN=$(usex doc) + ) + cmake_src_configure +} + +src_install() { + cmake_src_install + if use stubby; then + newinitd "${FILESDIR}"/stubby.initd-r2 stubby + newconfd "${FILESDIR}"/stubby.confd-r1 stubby + insinto /etc/logrotate.d + newins "${FILESDIR}"/stubby.logrotate stubby + systemd_dounit "${S}"/stubby/systemd/stubby.service + systemd_dotmpfilesd "${S}"/stubby/systemd/stubby.conf + fi +} + +pkg_postinst() { + if use stubby; then + fcaps cap_net_bind_service=ei /usr/bin/stubby + fi +} |