blob: 1208a1000e93eccb715456ffe8fc882613d7842b (
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-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-dns/rbldnsd/rbldnsd-0.996.ebuild,v 1.2 2006/08/27 22:43:35 weeve Exp $
inherit eutils
DESCRIPTION="a DNS daemon which is designed to serve DNSBL zones"
HOMEPAGE="http://www.corpit.ru/mjt/rbldnsd.html"
SRC_URI="http://www.corpit.ru/mjt/rbldnsd/${PN}_${PV}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~sparc ~x86"
IUSE=""
DEPEND=""
RDEPEND=""
src_compile() {
./configure || die "Configuration failed"
emake || die "Configuration failed"
}
src_install() {
dosbin rbldnsd
doman rbldnsd.8
keepdir /var/db/rbldnsd
dodoc CHANGES* TODO NEWS README* ${FILESDIR}/example
newinitd ${FILESDIR}/initd rbldnsd
newconfd ${FILESDIR}/confd rbldnsd
}
pkg_postinst() {
enewgroup rbldns
enewuser rbldns -1 -1 /var/db/rbldnsd rbldns
chown rbldns:rbldns /var/db/rbldnsd
einfo "for testing purpose, example zone file has been installed"
einfo "see /usr/share/doc/${PF}/example.gz"
}
|