From b590c8d7572b727d565cc0b8ff660d43569845de Mon Sep 17 00:00:00 2001 From: root Date: Fri, 12 Jun 2026 19:09:37 -0500 Subject: Adding metadata --- .../https_dns_proxy/https_dns_proxy-9999.ebuild | 41 ++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 net-dns/https_dns_proxy/https_dns_proxy-9999.ebuild (limited to 'net-dns/https_dns_proxy/https_dns_proxy-9999.ebuild') diff --git a/net-dns/https_dns_proxy/https_dns_proxy-9999.ebuild b/net-dns/https_dns_proxy/https_dns_proxy-9999.ebuild new file mode 100644 index 000000000000..57ad56c18cc7 --- /dev/null +++ b/net-dns/https_dns_proxy/https_dns_proxy-9999.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake + +if [[ ${PV} == *9999* ]] ; then + EGIT_REPO_URI="https://github.com/aarond10/https_dns_proxy.git" + inherit git-r3 +else + COMMIT="2d9285e2b94bce21c588c8160f8fac660806987a" + SRC_URI="https://github.com/aarond10/https_dns_proxy/archive/${COMMIT}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~x86" + S="${WORKDIR}/${PN}-${COMMIT}" +fi + +DESCRIPTION="Lightweight DNS-over-HTTPS proxy" +HOMEPAGE="https://github.com/aarond10/https_dns_proxy" + +LICENSE="MIT" +SLOT="0" + +RDEPEND=" + dev-libs/libev + net-dns/c-ares + net-misc/curl[http2,ssl]" +DEPEND="${RDEPEND}" + +src_configure() { + local mycmakeargs=( + -DCMAKE_DISABLE_FIND_PACKAGE_GTest=ON + -DCLANG_TIDY_EXE=OFF + ) + cmake_src_configure +} + +src_install() { + cmake_src_install + dobin "${BUILD_DIR}"/https_dns_proxy +} -- cgit v1.3