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 /netbase | |
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 'netbase')
-rw-r--r-- | netbase/netbase_4.18.oe | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/netbase/netbase_4.18.oe b/netbase/netbase_4.18.oe index e69de29bb2..860fe8b743 100644 --- a/netbase/netbase_4.18.oe +++ b/netbase/netbase_4.18.oe @@ -0,0 +1,33 @@ +SECTION = "base" +DESCRIPTION = "This package provides the necessary \ +infrastructure for basic TCP/IP based networking." + +inherit update-rc.d + +INITSCRIPT_NAME = "networking" +INITSCRIPT_PARAMS = "start 40 S . stop 40 0 6 1 ." + +SRC_URI = "${DEBIAN_MIRROR}/main/n/netbase/netbase_${PV}.tar.gz \ + file://options \ + file://init \ + file://hosts \ + file://interfaces" + +do_install () { + install -d ${D}/${sysconfdir}/init.d \ + ${D}/${sbindir} \ + ${D}/${mandir}/man8 \ + ${D}/${sysconfdir}/network/if-pre-up.d \ + ${D}/${sysconfdir}/network/if-up.d \ + ${D}/${sysconfdir}/network/if-down.d \ + ${D}/${sysconfdir}/network/if-post-down.d + install -m 0644 ${WORKDIR}/options ${D}/${sysconfdir}/network/options + install -m 0755 ${WORKDIR}/init ${D}/${sysconfdir}/init.d/networking + install -m 0644 ${WORKDIR}/hosts ${D}/${sysconfdir}/hosts + install -m 0644 etc-rpc ${D}/${sysconfdir}/rpc + install -m 0644 etc-protocols ${D}/${sysconfdir}/protocols + install -m 0644 etc-services ${D}/${sysconfdir}/services + install -m 0755 update-inetd ${D}/${sbindir}/ + install -m 0644 update-inetd.8 ${D}/${mandir}/man8/ + install -m 0644 ${WORKDIR}/interfaces ${D}/${sysconfdir}/network/interfaces +} |