PR = "r1" DESCRIPTION = "This package provides the necessary \ infrastructure for basic TCP/IP based networking." SRC_URI = "${DEBIAN_MIRROR}/main/n/netbase/netbase_${PV}.tar.gz" do_install () { install -d ${D}/etc/init.d ${D}/${sbindir} ${D}/${mandir}/man8 install -m 0644 ${FILESDIR}/init ${D}/etc/init.d/networking install -m 0644 etc-rpc ${D}/etc/rpc install -m 0644 etc-protocols ${D}/etc/protocols install -m 0644 etc-services ${D}/etc/services install -m 0755 update-inetd ${D}/${sbindir}/ install -m 0644 update-inetd.8 ${D}/${mandir}/man8/ } pkg_postinst () { if test -n "$D"; then D="-r $D" fi update-rc.d $D networking start 40 S . stop 40 0 6 1 . } pkg_prerm () { if test -n "$D"; then D="-r $D" fi update-rc.d $D networking remove }