2008-10-26 01:43:11 +02:00
|
|
|
# Template file for 'udev'
|
|
|
|
pkgname=udev
|
2011-04-28 17:31:37 +02:00
|
|
|
version=168
|
2011-05-04 16:00:43 +02:00
|
|
|
revision=2
|
2009-04-19 00:31:39 +02:00
|
|
|
distfiles="${KERNEL_SITE}/utils/kernel/hotplug/udev-${version}.tar.bz2"
|
2008-10-26 01:43:11 +02:00
|
|
|
build_style=gnu_configure
|
2009-06-20 18:19:50 +02:00
|
|
|
configure_args="--exec-prefix= --without-selinux --libexecdir=/lib/udev
|
2010-04-23 11:58:14 +02:00
|
|
|
--with-rootlibdir=/lib --enable-introspection"
|
2008-10-26 01:43:11 +02:00
|
|
|
short_desc="A userspace implementation of devfs"
|
|
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
2011-04-28 17:31:37 +02:00
|
|
|
checksum=9ddc43173cf7b397c8cc01d26d644932ff2c2259b3a5eea7be90db96a28080e2
|
2008-10-26 01:43:11 +02: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-11-27 03:39:12 +01:00
|
|
|
keep_empty_dirs=yes
|
2010-04-16 22:09:33 +02:00
|
|
|
openrc_services="udev sysinit true"
|
2009-06-20 18:19:50 +02:00
|
|
|
conf_files="/etc/udev/udev.conf"
|
2011-03-02 20:36:07 +01:00
|
|
|
subpackages="libudev libudev-devel libgudev libgudev-devel"
|
2010-04-23 11:58:14 +02:00
|
|
|
triggers="initramfs-tools"
|
2009-06-20 18:19:50 +02:00
|
|
|
|
2010-01-07 22:18:52 +01:00
|
|
|
Add_dependency run glibc
|
|
|
|
Add_dependency run glib
|
2010-10-26 01:38:24 +02:00
|
|
|
Add_dependency run acl
|
2010-01-07 22:18:52 +01:00
|
|
|
Add_dependency run libusb-compat
|
2009-11-07 05:01:00 +01:00
|
|
|
Add_dependency full usbutils ">=0.82"
|
2009-06-20 18:19:50 +02:00
|
|
|
Add_dependency full pciutils
|
2010-01-14 16:58:23 +01:00
|
|
|
Add_dependency build pkg-config
|
2009-11-22 08:31:44 +01:00
|
|
|
Add_dependency build libtool
|
2010-01-14 16:58:23 +01:00
|
|
|
Add_dependency build gperf
|
|
|
|
Add_dependency build glib-devel
|
2010-01-07 22:18:52 +01:00
|
|
|
Add_dependency build acl-devel
|
|
|
|
Add_dependency build glib-devel
|
|
|
|
Add_dependency build libusb-compat-devel
|
2010-04-23 11:59:51 +02:00
|
|
|
Add_dependency build gobject-introspection
|
2009-02-19 16:10:13 +01:00
|
|
|
|
|
|
|
post_install()
|
|
|
|
{
|
2009-04-02 04:06:40 +02:00
|
|
|
# Install some additional rules.
|
2010-06-02 15:46:10 +02:00
|
|
|
install -m644 ${wrksrc}/rules/misc/* ${DESTDIR}/lib/udev/rules.d
|
2009-04-02 04:06:40 +02:00
|
|
|
|
2009-05-04 21:44:24 +02:00
|
|
|
# Install the OpenRC service
|
|
|
|
install -D -m755 ${FILESDIR}/udev.rc ${DESTDIR}/etc/init.d/udev
|
2009-06-20 18:50:06 +02:00
|
|
|
|
|
|
|
# Install the initramfs-tools hook/scripts.
|
|
|
|
install -d $DESTDIR/usr/share/initramfs-tools/hooks
|
2010-04-23 11:58:14 +02:00
|
|
|
install -d $DESTDIR/usr/share/initramfs-tools/scripts/init-top
|
2009-06-20 18:50:06 +02:00
|
|
|
install -d $DESTDIR/usr/share/initramfs-tools/scripts/init-bottom
|
|
|
|
install -m 755 ${FILESDIR}/udev.initramfs-hook \
|
|
|
|
$DESTDIR/usr/share/initramfs-tools/hooks/udev
|
2010-04-23 11:58:14 +02:00
|
|
|
install -m 755 ${FILESDIR}/udev.initramfs-inittop \
|
|
|
|
$DESTDIR/usr/share/initramfs-tools/scripts/init-top/udev
|
2009-06-20 18:50:06 +02:00
|
|
|
install -m 755 ${FILESDIR}/udev.initramfs-bottom \
|
|
|
|
$DESTDIR/usr/share/initramfs-tools/scripts/init-bottom/udev
|
2009-11-17 17:29:37 +01:00
|
|
|
|
|
|
|
# Move gobject introspection stuff to correct path
|
|
|
|
mv $DESTDIR//lib/girepository* $DESTDIR/usr/lib
|
|
|
|
|
|
|
|
# Move pkgconfig files to correct path
|
|
|
|
install -d $DESTDIR/usr/lib/pkgconfig
|
|
|
|
mv $DESTDIR/lib/pkgconfig/* $DESTDIR/usr/lib/pkgconfig
|
|
|
|
mv $DESTDIR/usr/share/pkgconfig/* $DESTDIR/usr/lib/pkgconfig
|
|
|
|
rmdir $DESTDIR/usr/share/pkgconfig
|
2010-01-14 16:58:23 +01:00
|
|
|
rmdir $DESTDIR/lib/pkgconfig
|
2009-02-19 16:10:13 +01:00
|
|
|
}
|