blob: c0b232cb9b01e9bfd50e30221620051493e08a49 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit eutils
DESCRIPTION="A caching DNS proxy server"
HOMEPAGE="http://dnrd.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="debug"
DEPEND=""
src_compile() {
econf $(use_enable debug) \
--disable-dependency-tracking
emake || die "emake failed"
}
src_install() {
dosbin src/dnrd || die "dosbin failed"
doman doc/dnrd.8 || die "doman failed"
dodoc README ChangeLog NEWS doc/README-cache doc/README-master
insinto /etc/${PN}
doins doc/master.sample || die "doins failed"
keepdir /etc/dnrd
doinitd ${FILESDIR}/dnrd
newconfd ${FILESDIR}/dnrd.conf dnrd
}
pkg_postinst() {
enewgroup dnrd
enewuser dnrd -1 -1 /dev/null dnrd
}
|