aboutsummaryrefslogtreecommitdiffstats
path: root/nsd/nsd_2.0.0.oe
blob: ba2516b6c88d7c4f56be6b8f7815e7e0a7a9e2f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
DESCRIPTION = "NSD is an authoritative only, high performance, simple andopen source name server"
SECTION = "net"
PRIORITY = "optional"
MAINTAINER = "Michael Lauer <mickey@Vanille.de>"

SRC_URI = "http://www.nlnetlabs.nl/downloads/nsd/nsd-${PV}.tar.gz"

inherit autotools

do_install() {
	oe_runmake 	configdir=${D}/${sysconfdir}/nsd              \
			pidfile=${D}/${localstatedir}/run/nsd.pid        \
			zonesfile=${D}/${sysconfdir}/nsd/nsd.zones    \
			dbfile=${D}/${sysconfdir}/nsd/nsd.db          \
			configfile=${D}/${sysconfdir}/nsd/nsdc.conf   \
			zonesdir=${D}/${sysconfdir}/nsd \
			prefix=${D}/${prefix} \
			exec_prefix=${D}/${exec_prefix} \
			sbindir=${D}/${sbindir} \
			mandir=${D}/${mandir} \
			install
}