mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-01-06 02:17:34 -08:00
52 lines
892 B
Bash
52 lines
892 B
Bash
# Copyright 1999-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit autotools flag-o-matic
|
|
|
|
DESCRIPTION="The dnsproxy daemon is a proxy for DNS queries"
|
|
HOMEPAGE="https://www.wolfermann.org/dnsproxy.html"
|
|
SRC_URI="https://www.wolfermann.org/${P}.tar.gz"
|
|
|
|
LICENSE="MIT GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 x86"
|
|
|
|
DEPEND="
|
|
dev-libs/libevent
|
|
"
|
|
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
|
|
emake ${PN}
|
|
}
|
|
|
|
src_install() {
|
|
dosbin ${PN}
|
|
keepdir /var/empty
|
|
|
|
newconfd "${FILESDIR}"/${PN}.confd ${PN}
|
|
newinitd "${FILESDIR}"/${PN}.initd ${PN}
|
|
insinto /etc/${PN}
|
|
newins ${PN}.conf ${PN}.conf.dist
|
|
|
|
dodoc README
|
|
doman ${PN}.1
|
|
}
|