2008-10-25 23:43:11 +00:00
|
|
|
# Template file for 'udev'
|
|
|
|
pkgname=udev
|
2009-04-09 19:16:54 +00:00
|
|
|
version=141
|
2009-05-04 19:44:24 +00:00
|
|
|
revision=1
|
2009-04-02 02:38:45 +00:00
|
|
|
patch_files="arch-udev-rules.diff"
|
2009-04-18 22:31:39 +00:00
|
|
|
distfiles="${KERNEL_SITE}/utils/kernel/hotplug/udev-${version}.tar.bz2"
|
2008-10-25 23:43:11 +00:00
|
|
|
build_style=gnu_configure
|
2009-03-13 22:55:25 +00:00
|
|
|
configure_args="--exec-prefix= --without-selinux"
|
2008-10-25 23:43:11 +00:00
|
|
|
short_desc="A userspace implementation of devfs"
|
|
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
2009-04-09 19:16:54 +00:00
|
|
|
checksum=51e0128c3fc29971d978050839fd59f103fddae4a47c8fd2b36f2836cfb59d35
|
2008-10-25 23:43:11 +00:00
|
|
|
long_desc="
|
|
|
|
udev is a implementation of devfs in userspace using sysfs and
|
|
|
|
/sbin/hotplug. It requires a 2.5/2.6 kernel to run properly."
|
|
|
|
|
2009-05-04 21:19:48 +00:00
|
|
|
openrc_services="udev sysinit"
|
2009-02-25 05:15:20 +00:00
|
|
|
Add_dependency full glibc
|
|
|
|
Add_dependency full procps
|
2009-02-19 15:10:13 +00:00
|
|
|
|
|
|
|
post_install()
|
|
|
|
{
|
2009-04-02 02:06:40 +00:00
|
|
|
# Install some additional rules.
|
|
|
|
install -m644 ${FILESDIR}/81-xbps.rules ${DESTDIR}/lib/udev/rules.d
|
|
|
|
install -m644 ${wrksrc}/rules/packages/* ${DESTDIR}/lib/udev/rules.d
|
|
|
|
# Remove unneeded rules.
|
|
|
|
for f in ia64 ppc s390; do
|
|
|
|
rm ${DESTDIR}/lib/udev/rules.d/40-${f}.rules
|
|
|
|
done
|
2009-04-02 02:38:45 +00:00
|
|
|
install -m755 ${FILESDIR}/ignore-remove.sh ${DESTDIR}/lib/udev
|
2009-04-02 02:06:40 +00:00
|
|
|
|
|
|
|
# Create some devices that are needed by the initramfs.
|
2009-03-11 05:31:56 +00:00
|
|
|
install -d $DESTDIR/lib/firmware
|
|
|
|
install -d $DESTDIR/lib/udev/devices/pts
|
|
|
|
install -d $DESTDIR/lib/udev/devices/shm
|
|
|
|
mknod -m0666 $DESTDIR/lib/udev/devices/null c 1 3
|
|
|
|
mknod -m0600 $DESTDIR/lib/udev/devices/kmsg c 1 11
|
|
|
|
ln -s /proc/self/fd $DESTDIR/lib/udev/devices/fd
|
|
|
|
ln -s /proc/self/fd/0 $DESTDIR/lib/udev/devices/stdin
|
|
|
|
ln -s /proc/self/fd/1 $DESTDIR/lib/udev/devices/stdout
|
|
|
|
ln -s /proc/self/fd/2 $DESTDIR/lib/udev/devices/stderr
|
|
|
|
ln -s /proc/kcore $DESTDIR/lib/udev/devices/core
|
2009-05-04 19:44:24 +00:00
|
|
|
|
|
|
|
# Install the OpenRC service
|
|
|
|
install -D -m755 ${FILESDIR}/udev.rc ${DESTDIR}/etc/init.d/udev
|
2009-02-19 15:10:13 +00:00
|
|
|
}
|