udev: update to 174.

This commit is contained in:
Juan RP 2011-10-23 17:03:47 +02:00
parent a791c63590
commit 6d5840ccfe
3 changed files with 9 additions and 10 deletions

View file

@ -44,9 +44,6 @@ mkdir -p ${DESTDIR}/lib/udev
copy_exec /lib/udev/ata_id /lib/udev copy_exec /lib/udev/ata_id /lib/udev
copy_exec /lib/udev/cdrom_id /lib/udev copy_exec /lib/udev/cdrom_id /lib/udev
copy_exec /lib/udev/edd_id /lib/udev copy_exec /lib/udev/edd_id /lib/udev
copy_exec /lib/udev/input_id /lib/udev
copy_exec /lib/udev/path_id /lib/udev
copy_exec /lib/udev/scsi_id /lib/udev copy_exec /lib/udev/scsi_id /lib/udev
copy_exec /lib/udev/usb_id /lib/udev
cp -f /lib/udev/firmware ${DESTDIR}/lib/udev cp -f /lib/udev/firmware ${DESTDIR}/lib/udev

View file

@ -6,8 +6,6 @@ long_desc="${long_desc}
This package contains the files needed for developing applications This package contains the files needed for developing applications
that use libudev." that use libudev."
revision=1
Add_dependency run glibc-devel Add_dependency run glibc-devel
Add_dependency run libudev Add_dependency run libudev

View file

@ -1,18 +1,18 @@
# Template file for 'udev' # Template file for 'udev'
pkgname=udev pkgname=udev
version=173 version=174
revision=2 #distfiles="${KERNEL_SITE}/utils/kernel/hotplug/udev-${version}.tar.bz2"
distfiles="${KERNEL_SITE}/utils/kernel/hotplug/udev-${version}.tar.bz2" distfiles="http://people.freedesktop.org/~kay/udev-${version}.tar.bz2"
build_style=gnu_configure build_style=gnu_configure
configure_args="--sbindir=/sbin --without-selinux --libexecdir=/lib/udev configure_args="--sbindir=/sbin --without-selinux --libexecdir=/lib/udev
--with-rootlibdir=/lib --disable-introspection --enable-edd --enable-floppy --with-rootlibdir=/lib --disable-introspection --enable-edd --enable-floppy
--with-systemdsystemunitdir=/lib/systemd/system --disable-gudev --with-systemdsystemunitdir=/lib/systemd/system --disable-gudev
--enable-udev_acl --disable-static" --enable-udev_acl --disable-static --disable-rule-generator"
short_desc="/dev/ and hotplug management daemon" short_desc="/dev/ and hotplug management daemon"
maintainer="Juan RP <xtraeme@gmail.com>" maintainer="Juan RP <xtraeme@gmail.com>"
homepage="http://www.kernel.org/pub/linux/utils/kernel/hotplug/udev.html" homepage="http://www.kernel.org/pub/linux/utils/kernel/hotplug/udev.html"
license="GPL-2" license="GPL-2"
checksum=70a18315a12f8fc1131f7da5b4dae3606988b69d5c08f96f443b84b8486caaaf checksum=832662179a5ff9782769b0feadd51aaaea6e603f91f6ef0ec8bb6aab0fb3ad1a
long_desc=" long_desc="
udev is a daemon which dynamically creates and removes device nodes from udev is a daemon which dynamically creates and removes device nodes from
/dev/, handles hotplug events and loads drivers at boot time." /dev/, handles hotplug events and loads drivers at boot time."
@ -45,4 +45,8 @@ post_install()
usr/share/initramfs-tools/scripts/init-top udev usr/share/initramfs-tools/scripts/init-top udev
vinstall ${FILESDIR}/udev.initramfs-bottom 755 \ vinstall ${FILESDIR}/udev.initramfs-bottom 755 \
usr/share/initramfs-tools/scripts/init-bottom udev usr/share/initramfs-tools/scripts/init-bottom udev
# udevd has been moved to /lib/udev, make a symlink.
vmkdir sbin
cd ${DESTDIR}/sbin && ln -sf ../lib/udev/udevd .
} }