From 8bdff3fe5eb19d7b04bb7ffdc1fbf44753fba557 Mon Sep 17 00:00:00 2001 From: Austin English Date: Tue, 3 May 2016 13:57:35 -0500 Subject: net-proxy/dnsproxy: use #!/sbin/openrc-run instead of #!/sbin/runscript Gentoo-Bug: https://bugs.gentoo.org/573846 Package-Manager: portage-2.2.26 --- net-proxy/dnsproxy/dnsproxy-1.16-r2.ebuild | 43 ++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 net-proxy/dnsproxy/dnsproxy-1.16-r2.ebuild (limited to 'net-proxy') diff --git a/net-proxy/dnsproxy/dnsproxy-1.16-r2.ebuild b/net-proxy/dnsproxy/dnsproxy-1.16-r2.ebuild new file mode 100644 index 000000000000..73eead3504b4 --- /dev/null +++ b/net-proxy/dnsproxy/dnsproxy-1.16-r2.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit eutils flag-o-matic + +DESCRIPTION="The dnsproxy daemon is a proxy for DNS queries" +HOMEPAGE="http://www.wolfermann.org/dnsproxy.html" +SRC_URI="http://www.wolfermann.org/${P}.tar.gz" + +LICENSE="MIT GPL-2" +SLOT="0" +KEYWORDS="amd64 x86" +IUSE="" + +DEPEND="dev-libs/libevent" +RDEPEND="${DEPEND}" + +src_prepare() { + eapply -p0 "${FILESDIR}"/${P}-include.patch + append-cppflags -D_GNU_SOURCE + + default +} + +src_compile() { + 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 +} -- cgit v1.2.3-65-gdbad