diff options
author | William Hubbs <w.d.hubbs@gmail.com> | 2013-03-18 18:29:36 -0500 |
---|---|---|
committer | William Hubbs <w.d.hubbs@gmail.com> | 2013-08-13 16:33:41 -0500 |
commit | 838c9efb36b3b058c5a5b9d0e8c6d4d4789a44b9 (patch) | |
tree | 4d30e9357d1f666ea37186b8a95dbe83c86b4dc8 /init.d/Makefile | |
parent | b2f8ac9382d5dad70181ef803a37f43896f5cb91 (diff) |
Remove gentoo's net.* scripts
It has been determined that it will be best for gentoo's net.* scripts
to be in a separate package to allow independent development.
This package will be called netifrc and maintained by Gentoo.
Diffstat (limited to 'init.d/Makefile')
-rw-r--r-- | init.d/Makefile | 17 |
1 files changed, 4 insertions, 13 deletions
diff --git a/init.d/Makefile b/init.d/Makefile index fc55b3ec..c2c3ea1f 100644 --- a/init.d/Makefile +++ b/init.d/Makefile @@ -1,23 +1,19 @@ +include ../mk/net.mk + DIR= ${INITDIR} SRCS= bootmisc.in fsck.in hostname.in local.in localmount.in loopback.in \ netmount.in root.in savecache.in swap.in swapfiles.in \ tmpfiles.setup.in swclock.in sysctl.in urandom.in ${SRCS-${OS}} BIN= ${OBJS} -# Build our old net foo or not -ifeq (${MKNET},) +# Are we installing our network scripts? +ifeq (${MKNET},yes) SRCS+= network.in staticroute.in endif -ifeq (${MKNET},oldnet) -INSTALLAFTER= _installafter_net.lo -SRCS+= net.lo.in -endif - MK= ../mk include ${MK}/os.mk -NET_LO-FreeBSD= net.lo0 # Generic BSD scripts SRCS-FreeBSD= hostid.in moused.in newsyslog.in pf.in rarpd.in rc-enabled.in \ rpcbind.in savecore.in syslogd.in @@ -25,12 +21,10 @@ SRCS-FreeBSD= hostid.in moused.in newsyslog.in pf.in rarpd.in rc-enabled.in \ SRCS-FreeBSD+= adjkerntz.in devd.in dumpon.in encswap.in ipfw.in \ mixer.in nscd.in powerd.in syscons.in -NET_LO-Linux= net.lo SRCS-Linux= devfs.in dmesg.in hwclock.in consolefont.in keymaps.in \ killprocs.in modules.in mount-ro.in mtab.in numlock.in \ procfs.in sysfs.in termencoding.in tmpfiles.dev.in -NET_LO-NetBSD= net.lo0 # Generic BSD scripts SRCS-NetBSD= hostid.in moused.in newsyslog.in pf.in rarpd.in rc-enabled.in \ rpcbind.in savecore.in syslogd.in @@ -43,6 +37,3 @@ SRCS-NetBSD+= devdb.in swap-blk.in ttys.in wscons.in include ${MK}/scripts.mk _installafter_: realinstall - -_installafter_net.lo: realinstall - ${INSTALL} -m ${BINMODE} net.lo ${DESTDIR}/${INITDIR}/${NET_LO-${OS}} |