blob: 059055e82e7d8b629a06b74c8817e7f497dd03e6 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-dns/ndu/ndu-0.4-r2.ebuild,v 1.3 2005/09/26 04:28:14 robbat2 Exp $
inherit eutils toolchain-funcs
DESCRIPTION="DNS serial number incrementer and reverse zone builder"
URI_BASE="http://uranus.it.swin.edu.au/~jn/linux/"
SRC_URI="${URI_BASE}/${P}.tar.gz"
HOMEPAGE="${URI_BASE}/dns.htm"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ~ppc"
IUSE=""
DEPEND="sys-apps/sed
virtual/libc"
RDEPEND="virtual/libc
sys-apps/ed" # dnstouch calls ed to do the dirty work
src_unpack() {
unpack ${A}
cd ${S}/src
# use the correct compiler
sed -e 's|gcc|$(CXX)|g' -i Makefile
# set correct config pathes
sed -e 's|#define CONFIG_PATH "/etc/"|#define CONFIG_PATH "/etc/bind/"|g' -i ndu.cpp
sed -e 's|"/etc/ndu.conf"|"/etc/bind/ndu.conf"|g' -i dnstouch.cpp
# hack up something to work around bug #73858
sed -e 's|execlp("ed", "ed", filename, 0);|execlp("ed", "ed", "-s", filename, 0);|g' -i dnstouch.cpp
# use the correct editor
sed -e 's|VISUAL|EDITOR|g' -i dnsedit
cd ${S}
# match our bind config
sed -e 's|0.0.127.in-addr.arpa|127.in-addr.arpa|g' -i ndu.conf
# document the support for the chrooted BIND setup
echo '// if you use a chrooted setup, then you need to uncomment these lines:' >>ndu.conf
echo '//process "/chroot/dns/named.conf"' >>ndu.conf
echo '//chroot "/chroot/dns"' >>ndu.conf
}
src_compile() {
cd ${S}/src
emake CFLAGS="${CFLAGS}" CXX="$(tc-getCXX)"
}
src_install () {
into /usr
dosbin src/{dnsedit,ndu}
dobin src/dnstouch
into /
insinto /etc/bind
doins ndu.conf
dodoc README INSTALL
}
|