2008-10-25 23:43:11 +00:00
|
|
|
# Template file for 'udev'
|
|
|
|
pkgname=udev
|
2010-05-14 15:22:27 +00:00
|
|
|
version=154
|
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-06-20 16:19:50 +00:00
|
|
|
configure_args="--exec-prefix= --without-selinux --libexecdir=/lib/udev
|
2010-04-23 09:58:14 +00:00
|
|
|
--with-rootlibdir=/lib --enable-introspection"
|
2008-10-25 23:43:11 +00:00
|
|
|
short_desc="A userspace implementation of devfs"
|
|
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
2010-05-14 15:22:27 +00:00
|
|
|
checksum=0c5466dd3fecb03aae7dc7fd61fc18f01a8a8c533b3a6ba09c5bab6792dd85ab
|
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-11-27 02:39:12 +00:00
|
|
|
keep_empty_dirs=yes
|
2010-04-16 20:09:33 +00:00
|
|
|
openrc_services="udev sysinit true"
|
2009-06-20 16:19:50 +00:00
|
|
|
conf_files="/etc/udev/udev.conf"
|
2010-04-23 09:58:14 +00:00
|
|
|
subpackages="gir-gudev libudev libudev-devel libgudev libgudev-devel"
|
|
|
|
triggers="initramfs-tools"
|
2009-06-20 16:19:50 +00:00
|
|
|
|
2010-01-07 21:18:52 +00:00
|
|
|
Add_dependency run glibc
|
|
|
|
Add_dependency run acl
|
|
|
|
Add_dependency run glib
|
|
|
|
Add_dependency run libusb-compat
|
2010-01-14 15:58:23 +00:00
|
|
|
Add_dependency run libudev
|
2009-11-07 04:01:00 +00:00
|
|
|
Add_dependency full usbutils ">=0.82"
|
2009-06-20 16:19:50 +00:00
|
|
|
Add_dependency full pciutils
|
2010-01-14 15:58:23 +00:00
|
|
|
Add_dependency build pkg-config
|
2009-11-22 07:31:44 +00:00
|
|
|
Add_dependency build libtool
|
2010-01-14 15:58:23 +00:00
|
|
|
Add_dependency build gperf
|
|
|
|
Add_dependency build glib-devel
|
2010-01-07 21:18:52 +00:00
|
|
|
Add_dependency build acl-devel
|
|
|
|
Add_dependency build glib-devel
|
|
|
|
Add_dependency build libusb-compat-devel
|
2010-04-23 09:59:51 +00:00
|
|
|
Add_dependency build gobject-introspection
|
2009-02-19 15:10:13 +00:00
|
|
|
|
|
|
|
post_install()
|
|
|
|
{
|
2009-04-02 02:06:40 +00:00
|
|
|
# Install some additional rules.
|
|
|
|
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-05-04 19:44:24 +00:00
|
|
|
# Install the OpenRC service
|
|
|
|
install -D -m755 ${FILESDIR}/udev.rc ${DESTDIR}/etc/init.d/udev
|
2009-06-20 16:50:06 +00:00
|
|
|
|
|
|
|
# Install the initramfs-tools hook/scripts.
|
|
|
|
install -d $DESTDIR/usr/share/initramfs-tools/hooks
|
2010-04-23 09:58:14 +00:00
|
|
|
install -d $DESTDIR/usr/share/initramfs-tools/scripts/init-top
|
2009-06-20 16:50:06 +00: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 09:58:14 +00:00
|
|
|
install -m 755 ${FILESDIR}/udev.initramfs-inittop \
|
|
|
|
$DESTDIR/usr/share/initramfs-tools/scripts/init-top/udev
|
2009-06-20 16:50:06 +00:00
|
|
|
install -m 755 ${FILESDIR}/udev.initramfs-bottom \
|
|
|
|
$DESTDIR/usr/share/initramfs-tools/scripts/init-bottom/udev
|
2009-11-17 16:29:37 +00: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 15:58:23 +00:00
|
|
|
rmdir $DESTDIR/lib/pkgconfig
|
2009-02-19 15:10:13 +00:00
|
|
|
}
|