blob: 304056f28c61ee38f4ce1efd6bd204e63f6357fc (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-dns/maradns/maradns-1.2.12.10.ebuild,v 1.1 2008/09/15 01:39:11 matsuu Exp $
inherit eutils toolchain-funcs
DESCRIPTION="Proxy DNS server with permanent caching"
HOMEPAGE="http://www.maradns.org/"
SRC_URI="http://www.maradns.org/download/1.2/${PV}/${P}.tar.bz2"
LICENSE="as-is"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
IUSE=""
DEPEND="dev-lang/perl"
src_unpack() {
unpack ${A}
cd "${S}"
sed -i \
-e "s:PREFIX/man:PREFIX/share/man:" \
-e "s:PREFIX/doc/maradns-\$VERSION:PREFIX/share/doc/${PF}:" \
build/install.locations || die
sed -i -e "s:-O2:${CFLAGS}:" build/Makefile.linux || die
}
src_compile() {
./configure || die
emake CC="$(tc-getCC)" || die "compile problem"
}
src_install() {
dosbin server/maradns
# use authonly && newsbin server/maradns.authonly maradns
dosbin tcp/zoneserver
dobin tcp/getzone tcp/fetchzone tools/askmara tools/duende
doman doc/en/man/*.[1-9]
dodoc maradns.gpg.key
dodoc doc/en/{QuickStart,README,*.txt}
dohtml doc/en/*.html
dohtml -r doc/en/webpage
docinto examples; dodoc doc/en/examples/example_*
insinto /etc; newins doc/en/examples/example_mararc mararc
insinto /etc/maradns; newins doc/en/examples/example_csv2 db.example.net
keepdir /etc/maradns/logger
newinitd "${FILESDIR}"/maradns.rc6 maradns
newinitd "${FILESDIR}"/zoneserver.rc6 zoneserver
}
pkg_postinst() {
enewuser maradns 99 -1 /var/empty daemon
}
|