diff options
author | Sam James <sam@gentoo.org> | 2024-11-13 18:31:55 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2024-11-13 18:49:47 +0000 |
commit | 70ac253f4cf09c82b09323f7a2e0fee456279b1c (patch) | |
tree | 8c3915f8101e4a78f453c9c75d64d984c22dadb7 /net-proxy | |
parent | net-proxy/dnsproxy: add comment for _GNU_SOURCE workaround (diff) | |
download | gentoo-70ac253f4cf09c82b09323f7a2e0fee456279b1c.tar.gz gentoo-70ac253f4cf09c82b09323f7a2e0fee456279b1c.tar.bz2 gentoo-70ac253f4cf09c82b09323f7a2e0fee456279b1c.zip |
net-proxy/dnsproxy: EAPI 8, eautoreconf for modern C issues
Closes: https://bugs.gentoo.org/900288
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'net-proxy')
-rw-r--r-- | net-proxy/dnsproxy/dnsproxy-1.17-r1.ebuild (renamed from net-proxy/dnsproxy/dnsproxy-1.17.ebuild) | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/net-proxy/dnsproxy/dnsproxy-1.17.ebuild b/net-proxy/dnsproxy/dnsproxy-1.17-r1.ebuild index d39f3894720d..a9d22d44e75e 100644 --- a/net-proxy/dnsproxy/dnsproxy-1.17.ebuild +++ b/net-proxy/dnsproxy/dnsproxy-1.17-r1.ebuild @@ -1,8 +1,9 @@ # Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 -inherit flag-o-matic +EAPI=8 + +inherit autotools flag-o-matic DESCRIPTION="The dnsproxy daemon is a proxy for DNS queries" HOMEPAGE="https://www.wolfermann.org/dnsproxy.html" @@ -18,10 +19,18 @@ DEPEND=" RDEPEND=" ${DEPEND} " + PATCHES=( "${FILESDIR}"/${PN}-1.16-include.patch ) +src_prepare() { + default + + # bug #900288 + eautoreconf +} + src_compile() { # https://github.com/awaw/dnsproxy/commit/7eba35568c87a21a668722b3b04c113e9160e789 append-cppflags -D_GNU_SOURCE |