blob: 9407cd0882eca0be2d7842c85abb24861457bf6d (
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/net-dns/djbdns/djbdns-1.05-r3.ebuild,v 1.5 2002/09/10 14:44:49 drobbins Exp $
S=${WORKDIR}/${P}
DESCRIPTION="Excellent high-performance DNS services"
SRC_URI="http://cr.yp.to/djbdns/${P}.tar.gz ipv6? http://www.fefe.de/dns/djbdns-1.05-test17.diff.bz2"
HOMEPAGE="http://cr.yp.to/djbdns.html"
LICENSE="as-is"
KEYWORDS="x86 sparc sparc64"
SLOT="0"
DEPEND="virtual/glibc"
RDEPEND=">=sys-apps/daemontools-0.70
sys-apps/ucspi-tcp"
src_unpack() {
unpack ${P}.tar.gz
use ipv6 && { bzcat ${DISTDIR}/djbdns-1.05-test17.diff.bz2 | patch -d ${S} -p1 || die "Failed to apply the ipv6 patch"; }
}
src_compile() {
echo "gcc ${CFLAGS}" > conf-cc
echo "gcc" > conf-ld
echo "/usr" > conf-home
emake || die "emake failed"
}
src_install() {
insinto /etc
doins dnsroots.global
into /usr
for i in *-conf dnscache tinydns walldns rbldns pickdns axfrdns *-get *-data *-edit dnsip dnsipq dnsname dnstxt dnsmx dnsfilter random-ip dnsqr dnsq dnstrace dnstracesort
do
dobin $i
done
dodoc CHANGES FILES README SYSDEPS TARGETS TODO VERSION
dobin ${FILESDIR}/dnscache-setup
dobin ${FILESDIR}/tinydns-setup
}
pkg_postinst() {
groupadd nofiles
id dnscache || useradd -g nofiles -d /nonexistent -s /bin/false dnscache
id dnslog || useradd -g nofiles -d /nonexistent -s /bin/false dnslog
id tinydns || useradd -g nofiles -d /nonexistent -s /bin/false tinydns
echo
einfo "Use dnscache-setup and tinydns-setup to help you configure your nameservers!"
echo
}
pkg_postrm() {
userdel dnscache
userdel dnslog
userdel tinydns
}
|