diff options
author | Matthias Hentges <oe@hentges.net> | 2004-10-11 16:36:01 +0000 |
---|---|---|
committer | Matthias Hentges <oe@hentges.net> | 2004-10-11 16:36:01 +0000 |
commit | bd068236207dee9373f5d559c88325de3446d53b (patch) | |
tree | bea490798b7aec80d96272f621898b8cb8c82efe /maradns | |
parent | 96379cf2ff7c66a2ab2f1e57e17c88b9860e5c75 (diff) |
Merge bk://openembedded@openembedded.bkbits.net/packages
into mhcln01.hentges.local:/home/mhentges/OpenEmbedded/packages
2004/10/11 18:35:17+02:00 local!CoreDump
The mother of all section fixes! Gives a SECTION entry to (almost) all packages which were missing it (and thus were having a section of *base*). I have placed all packages unknown to me into the *unknown* section (and yes, i *am* to lazy to look them up), please fix.
BKrev: 416ab6716BWMm_ae6D2MValq-LDFzw
Diffstat (limited to 'maradns')
-rw-r--r-- | maradns/maradns_1.0.23.oe | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/maradns/maradns_1.0.23.oe b/maradns/maradns_1.0.23.oe index e69de29bb2..abdcade218 100644 --- a/maradns/maradns_1.0.23.oe +++ b/maradns/maradns_1.0.23.oe @@ -0,0 +1,38 @@ +SECTION = "console/network" +DESCRIPTION = "A security-aware DNS server" +SRC_URI = "http://www.maradns.org/download/maradns-${PV}.tar.bz2 \ + file://init \ + file://rng-makefile-build-cc.patch;patch=1;pnum=0" + +do_install() { + install -d ${D}/${bindir} + install -d ${D}/${sbindir} + install -d ${D}/${sysconfdir} + install -d ${D}/${sysconfdir}/mararc + install -d ${D}/${sysconfdir}/init.d + install -d ${D}/${mandir}/man1 + install -d ${D}/${mandir}/man5 + install -d ${D}/${mandir}/man8 + + sed -i -e "s:PREFIX/man:PREFIX/share/man:" \ + -e "s:PREFIX/doc/maradns-\$VERSION:PREFIX/share/doc/${PF}:" \ + build/install.locations + + oe_runmake \ + TOPLEVEL=${S} \ + BUILDDIR=${S}/build \ + RPM_BUILD_ROOT=${D} \ + PREFIX=${D}/usr \ + MAN1=${D}/usr/share/man/man1 \ + MAN5=${D}/usr/share/man/man5 \ + MAN8=${D}/usr/share/man/man8 \ + install + + mv ${D}/${sysconfdir}/mararc/example_mararc ${D}/${sysconfdir}/maradns + rm -r ${D}/${sysconfdir}/mararc/ + install -m 755 ${WORKDIR}/init ${D}/${sysconfdir}/init.d/maradns +} + +PACKAGES = "maradns-zone maradns-ask maradns maradns-doc" +FILES_maradns-zone = "${sbindir}/zoneserver ${bindir}/getzone" +FILES_maradns-ask = "${bindir}/askmara" |