From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id F2A78138222 for ; Tue, 3 May 2016 19:17:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E811BE07FC; Tue, 3 May 2016 19:17:49 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7FA4521C007 for ; Tue, 3 May 2016 19:17:48 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 820D1340BF6 for ; Tue, 3 May 2016 19:17:47 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1F0A1343 for ; Tue, 3 May 2016 19:17:44 +0000 (UTC) From: "Austin English" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Austin English" Message-ID: <1462303021.8bdff3fe5eb19d7b04bb7ffdc1fbf44753fba557.wizardedit@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-proxy/dnsproxy/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-proxy/dnsproxy/dnsproxy-1.16-r2.ebuild X-VCS-Directories: net-proxy/dnsproxy/ X-VCS-Committer: wizardedit X-VCS-Committer-Name: Austin English X-VCS-Revision: 8bdff3fe5eb19d7b04bb7ffdc1fbf44753fba557 X-VCS-Branch: master Date: Tue, 3 May 2016 19:17:44 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: bebc7ac0-abe8-43e6-8fb3-07174b51165c X-Archives-Hash: d57457504bf0b8dc62c74ace7c2c0393 commit: 8bdff3fe5eb19d7b04bb7ffdc1fbf44753fba557 Author: Austin English gentoo org> AuthorDate: Tue May 3 18:57:35 2016 +0000 Commit: Austin English gentoo org> CommitDate: Tue May 3 19:17:01 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8bdff3fe 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(+) 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 0000000..73eead3 --- /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 +}