This piece of code renames files in my /etc/init.d/.svn/... which breaks my /etc/ backup method. The ebuild should either look on the places, where this is really needed, or ignore dirs like .svn. # force net init.d scripts into symlinks for f in $(find "${ROOT}"/etc/init.d/ -name 'net.*') ; do [[ ${f} == *.openrc.bak ]] && continue if [[ ! -L ${f} ]] ; then elog "Moved net service '${f##*/}' to '${f##*/}.openrc.bak' to force a symlink." elog "You should delete '${f##*/}.openrc.bak' if you don't need it." mv "${f}" "${f}.openrc.bak" ln -snf net.lo "${f}" fi done
ive switched it back to the glob we had originally http://sources.gentoo.org/sys-apps/openrc/openrc-0.2.2.ebuild?r1=1.5&r2=1.6 http://sources.gentoo.org/sys-apps/openrc/openrc-0.2.3.ebuild?r1=1.1&r2=1.2 http://sources.gentoo.org/sys-apps/openrc/openrc-9999.ebuild?r1=1.32&r2=1.33