blob: d4078679037e3c8d90d4f7929235a9760ae205b8 (
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-proxy/dnsproxy/dnsproxy-1.16-r1.ebuild,v 1.1 2010/10/27 03:17:56 jer Exp $
EAPI="2"
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"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="dev-libs/libevent"
RDEPEND="${DEPEND}"
src_prepare() {
epatch "${FILESDIR}"/${P}-include.patch
}
src_configure() {
append-flags -D_GNU_SOURCE
econf --with-native-libevent || die "econf failed"
}
src_compile() {
emake dnsproxy || die "make failed"
}
src_install() {
dosbin dnsproxy
keepdir /var/empty
newconfd "${FILESDIR}"/dnsproxy.confd dnsproxy
newinitd "${FILESDIR}"/dnsproxy.initd dnsproxy
insinto /etc/dnsproxy
newins dnsproxy.conf dnsproxy.conf.dist
dodoc README
doman dnsproxy.1
}
|