blob: 1fd35b39ddd94b38edf90c6ecf3bf62cc0014500 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
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"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
DEPEND=""
RDEPEND=""
src_install() {
dosbin dnsproxy
dodoc README
doman dnsproxy.1
insinto /etc/dnsproxy
newins dnsproxy.conf dnsproxy.conf-dist
newconfd ${FILESDIR}/confd dnsproxy
newinitd ${FILESDIR}/initd dnsproxy
}
|