# Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/sys-fs/udev/udev-119.ebuild,v 1.10 2009/05/06 23:52:24 vapier Exp $ inherit eutils flag-o-matic multilib toolchain-funcs versionator DESCRIPTION="Linux dynamic and persistent device naming support (aka userspace devfs)" HOMEPAGE="http://www.kernel.org/pub/linux/utils/kernel/hotplug/udev.html" SRC_URI="mirror://kernel/linux/utils/kernel/hotplug/${P}.tar.bz2" LICENSE="GPL-2" SLOT="0" KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86" IUSE="selinux" DEPEND="selinux? ( sys-libs/libselinux )" RDEPEND="!sys-apps/coldplug !/dev/null dolib extras/volume_id/lib/*.so* || die "Failed installing libvolume_id.so" into /usr dolib extras/volume_id/lib/*.a || die "Failed installing libvolume_id.a" # handle static linking bug #4411 rm -f "${D}/usr/$(get_libdir)/libvolume_id.so" gen_usr_ldscript libvolume_id.so # Add gentoo stuff to udev.conf echo "# If you need to change mount-options, do it in /etc/fstab" \ >> "${D}"/etc/udev/udev.conf # Now installing rules cd etc/udev insinto /etc/udev/rules.d/ # Our rules files doins gentoo/??-*.rules doins packages/40-alsa.rules # Adding arch specific rules if [[ -f packages/40-${ARCH}.rules ]] then doins "packages/40-${ARCH}.rules" fi cd "${S}" # our udev hooks into the rc system insinto /$(get_libdir)/rcscripts/addons newins "${FILESDIR}"/udev-start-118-r2.sh udev-start.sh newins "${FILESDIR}"/udev-stop-118-r2.sh udev-stop.sh # The udev-post init-script newinitd "${FILESDIR}"/udev-postmount-initd-111-r2 udev-postmount insinto /etc/modprobe.d newins "${FILESDIR}"/blacklist-110 blacklist.conf newins "${FILESDIR}"/pnp-aliases pnp-aliases.conf # convert /lib/udev to real used dir sed_helper_dir \ "${D}/$(get_libdir)"/rcscripts/addons/*.sh \ "${D}"/etc/init.d/udev* \ "${D}"/etc/modprobe.d/* # documentation dodoc ChangeLog FAQ README TODO RELEASE-NOTES dodoc docs/{overview,udev_vs_devfs} cd docs/writing_udev_rules mv index.html writing_udev_rules.html dohtml *.html cd "${S}" newdoc extras/volume_id/README README_volume_id echo "CONFIG_PROTECT_MASK=\"/etc/udev/rules.d\"" > 20udev doenvd 20udev } pkg_preinst() { if [[ -d ${ROOT}/lib/udev-state ]] then mv -f "${ROOT}"/lib/udev-state/* "${D}"/lib/udev/state/ rm -r "${ROOT}"/lib/udev-state fi if [[ -f ${ROOT}/etc/udev/udev.config && ! -f ${ROOT}/etc/udev/udev.rules ]] then mv -f "${ROOT}"/etc/udev/udev.config "${ROOT}"/etc/udev/udev.rules fi # delete the old udev.hotplug symlink if it is present if [[ -h ${ROOT}/etc/hotplug.d/default/udev.hotplug ]] then rm -f "${ROOT}"/etc/hotplug.d/default/udev.hotplug fi # delete the old wait_for_sysfs.hotplug symlink if it is present if [[ -h ${ROOT}/etc/hotplug.d/default/05-wait_for_sysfs.hotplug ]] then rm -f "${ROOT}"/etc/hotplug.d/default/05-wait_for_sysfs.hotplug fi # delete the old wait_for_sysfs.hotplug symlink if it is present if [[ -h ${ROOT}/etc/hotplug.d/default/10-udev.hotplug ]] then rm -f "${ROOT}"/etc/hotplug.d/default/10-udev.hotplug fi # is there a stale coldplug initscript? (CONFIG_PROTECT leaves it behind) coldplug_stale="" if [[ -f ${ROOT}/etc/init.d/coldplug ]] then coldplug_stale="1" fi has_version "=${CATEGORY}/${PN}-103-r3" previous_equal_to_103_r3=$? has_version "<${CATEGORY}/${PN}-104-r5" previous_less_than_104_r5=$? has_version "<${CATEGORY}/${PN}-106-r5" previous_less_than_106_r5=$? has_version "<${CATEGORY}/${PN}-113" previous_less_than_113=$? } pkg_postinst() { # people want reminders, I'll give them reminders. Odds are they will # just ignore them anyway... if [[ ${coldplug_stale} == 1 ]] then ewarn "A stale coldplug init script found. You should run:" ewarn ewarn " rc-update del coldplug" ewarn " rm -f /etc/init.d/coldplug" ewarn ewarn "udev now provides its own coldplug functionality." fi # delete 40-scsi-hotplug.rules - all integrated in 50-udev.rules if [[ $previous_equal_to_103_r3 = 0 ]] && [[ -e ${ROOT}/etc/udev/rules.d/40-scsi-hotplug.rules ]] then ewarn "Deleting stray 40-scsi-hotplug.rules" ewarn "installed by sys-fs/udev-103-r3" rm -f "${ROOT}"/etc/udev/rules.d/40-scsi-hotplug.rules fi # Removing some device-nodes we thought we need some time ago if [[ -d ${ROOT}/lib/udev/devices ]] then rm -f "${ROOT}"/lib/udev/devices/{null,zero,console,urandom} fi # Removing some old file if [[ $previous_less_than_104_r5 = 0 ]] then rm -f "${ROOT}"/etc/dev.d/net/hotplug.dev rmdir --ignore-fail-on-non-empty "${ROOT}"/etc/dev.d/net 2>/dev/null fi if [[ $previous_less_than_106_r5 = 0 ]] && [[ -e ${ROOT}/etc/udev/rules.d/95-net.rules ]] then rm -f "${ROOT}"/etc/udev/rules.d/95-net.rules fi # Try to remove /etc/dev.d as that is obsolete if [[ -d ${ROOT}/etc/dev.d ]] then rmdir --ignore-fail-on-non-empty "${ROOT}"/etc/dev.d/default "${ROOT}"/etc/dev.d 2>/dev/null if [[ -d ${ROOT}/etc/dev.d ]] then ewarn "You still have the directory /etc/dev.d on your system." ewarn "This is no longer used by udev and can be removed." fi fi # 64-device-mapper.rules now gets installed by sys-fs/device-mapper # remove it if user don't has sys-fs/device-mapper installed if [[ $previous_less_than_113 = 0 ]] && [[ -f ${ROOT}/etc/udev/rules.d/64-device-mapper.rules ]] && ! has_version sys-fs/device-mapper then rm -f "${ROOT}"/etc/udev/rules.d/64-device-mapper.rules einfo "Removed unneeded file 64-device-mapper.rules" fi if [[ ${ROOT} == / ]] then # check if root of init-process is identical to ours if [[ -r /proc/1/root && /proc/1/root/ -ef /proc/self/root/ ]] then einfo "restarting udevd now." if [[ -n $(pidof udevd) ]] then killall -15 udevd &>/dev/null sleep 1 killall -9 udevd &>/dev/null fi /sbin/udevd --daemon fi fi ewarn "If you build an initramfs including udev, then please" ewarn "make sure that the /sbin/udevadm binary gets included," ewarn "as the helper apps udevinfo, udevtrigger, ... are now" ewarn "only symlinks to udevadm." ewarn ewarn "mount options for directory /dev are no longer" ewarn "set in /etc/udev/udev.conf, but in /etc/fstab" ewarn "as for other directories." elog elog "For more information on udev on Gentoo, writing udev rules, and" elog " fixing known issues visit:" elog " http://www.gentoo.org/doc/en/udev-guide.xml" }