aboutsummaryrefslogtreecommitdiffstats
path: root/nsd
diff options
context:
space:
mode:
authorChris Larson <clarson@kergoth.com>2004-06-29 06:43:03 +0000
committerChris Larson <clarson@kergoth.com>2004-06-29 06:43:03 +0000
commit3da6ef451f8ba0363745ef80caacb8eef02ef38c (patch)
tree315d37769ecf5f8dcdd1f9f0a2b4204f0a837255 /nsd
parent3d5afd170991a85db5c51594b949e06132232f1c (diff)
downloadopenembedded-3da6ef451f8ba0363745ef80caacb8eef02ef38c.tar.gz
Fix nsd 2.0.0 installation.
BKrev: 40e10f772iyD4Ttj6xC3fB2C2ffBzA
Diffstat (limited to 'nsd')
-rw-r--r--nsd/nsd_2.0.0.oe19
1 files changed, 12 insertions, 7 deletions
diff --git a/nsd/nsd_2.0.0.oe b/nsd/nsd_2.0.0.oe
index 8dbdaf20a2..ba2516b6c8 100644
--- a/nsd/nsd_2.0.0.oe
+++ b/nsd/nsd_2.0.0.oe
@@ -5,14 +5,19 @@ MAINTAINER = "Michael Lauer <mickey@Vanille.de>"
SRC_URI = "http://www.nlnetlabs.nl/downloads/nsd/nsd-${PV}.tar.gz"
-inherit autotools
+inherit autotools
do_install() {
- oe_runconf configdir=${D}/etc/nsd \
- pidfile=${D}/var/run/nsd.pid \
- zonesfile=${D}/etc/nsd/nsd.zones \
- dbfile=${D}/etc/nsd/nsd.db \
- configfile=${D}/etc/nsd/nsdc.conf \
- zonesdir=${D}/etc/nsd
+ 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
}