# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: inherit eutils flag-o-matic 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="sys-apps/hotplug-base" RDEPEND="${DEPEND} >=sys-apps/baselayout-1.11.14" # We need the lib/rcscripts/addon support PROVIDE="virtual/dev-manager" src_unpack() { unpack ${A} cd "${S}" # patches go here... #epatch ${FILESDIR}/${P}-udev_volume_id.patch # don't warn about deprecated %e epatch ${FILESDIR}/${P}-nowarn-findfree.patch # No need to clutter the logs ... sed -ie '/^DEBUG/ c\DEBUG = false' Makefile # Do not use optimization flags from the package sed -ie 's|$(OPTIMIZATION)||g' Makefile # Make sure there is no sudden changes to udev.rules.gentoo # (more for my own needs than anything else ...) MD5=`md5sum < "${S}/etc/udev/gentoo/udev.rules"` MD5=${MD5/ -/} if [ "${MD5}" != "590d3e6346938e3b608237973f4f1805" ] then echo eerror "gentoo/udev.rules has been updated, please validate!" die "gentoo/udev.rules has been updated, please validate!" fi } src_compile() { filter-flags -fprefetch-loop-arrays local myconf= local extras="extras/scsi_id extras/volume_id extras/ata_id extras/run_directory extras/usb_id extras/floppy extras/cdrom_id extras/firmware" use selinux && myconf="${myconf} USE_SELINUX=true" # Not everyone has full $CHOST-{ld,ar,etc...} yet local mycross="" type -p ${CHOST}-ar && mycross=${CHOST}- # Do not work with emake make \ EXTRAS="${extras}" \ udevdir="/dev/" \ CROSS=${mycross} \ ${myconf} || die } src_install() { # we install everything by "hand" and don't rely on the udev Makefile to do # it for us (why? it's easier that way...) dobin udevinfo dobin udevtest dobin udevmonitor into / dosbin udev dosbin udevd dosbin udevsend dosbin udevstart dosbin udevcontrol dosbin extras/run_directory/udev_run_devd dosbin extras/run_directory/udev_run_hotplugd dosbin extras/ata_id/ata_id dosbin extras/volume_id/vol_id dosbin extras/scsi_id/scsi_id dosbin extras/usb_id/usb_id dosbin extras/cdrom_id/cdrom_id dosbin extras/path_id dosbin extras/floppy/create_floppy_devices dosbin extras/firmware/firmware_helper #exeinto /etc/udev/scripts exeinto /lib/udev #doexe extras/ide-devfs.sh #doexe extras/scsi-devfs.sh doexe extras/raid-devfs.sh # Our udev config file insinto /etc/udev newins ${FILESDIR}/udev.conf.post_081 udev.conf # Our rules files insinto /etc/udev/rules.d/ newins etc/udev/gentoo/udev.rules 50-udev.rules #newins ${FILESDIR}/udev.rules-084 50-udev.rules newins ${FILESDIR}/05-udev-early.rules-079 05-udev-early.rules # scsi_id configuration insinto /etc doins extras/scsi_id/scsi_id.config # set up symlinks in /etc/hotplug.d/default dodir /etc/hotplug.d/default dosym ../../../sbin/udevsend /etc/hotplug.d/default/10-udev.hotplug # set up the /etc/dev.d directory tree dodir /etc/dev.d/default dodir /etc/dev.d/net exeinto /etc/dev.d/net doexe extras/run_directory/dev.d/net/hotplug.dev # all of the man pages doman *.7 doman *.8 doman extras/ata_id/ata_id.8 doman extras/edd_id/edd_id.8 doman extras/scsi_id/scsi_id.8 doman extras/volume_id/vol_id.8 doman extras/dasd_id/dasd_id.8 doman extras/cdrom_id/cdrom_id.8 # our udev hooks into the rc system insinto /lib/rcscripts/addons newins "${FILESDIR}"/udev-start-079.sh udev-start.sh doins "${FILESDIR}"/udev-stop.sh dodoc ChangeLog FAQ README TODO RELEASE-NOTES dodoc docs/{overview,udev_vs_devfs} dodoc docs/writing_udev_rules/* newdoc extras/volume_id/README README_volume_id # Create some nodes that we know we need. # set the time/date so we can see in /dev which ones we copied over # in the udev-start.sh script mkdir ${D}/lib/udev/devices mknod ${D}/lib/udev/devices/null c 1 3 chmod 666 ${D}/lib/udev/devices/null touch -t 200010220101 ${D}/lib/udev/devices/null mknod ${D}/lib/udev/devices/zero c 1 5 chmod 666 ${D}/lib/udev/devices/zero touch -t 200010220101 ${D}/lib/udev/devices/zero mknod ${D}/lib/udev/devices/console c 5 1 chmod 600 ${D}/lib/udev/devices/console chown root:tty ${D}/lib/udev/devices/console touch -t 200010220101 ${D}/lib/udev/devices/console } pkg_preinst() { if [ -f "${ROOT}/etc/udev/udev.config" -a \ ! -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 } pkg_postinst() { if [ "${ROOT}" = "/" -a -n "`pidof udevd`" ] then killall -15 udevd &>/dev/null sleep 1 killall -9 udevd &>/dev/null fi /sbin/udevd --daemon # people want reminders, I'll give them reminders. Odds are they will # just ignore them anyway... if has_version '