void-packages/srcpkgs/udev/template
Juan RP 85cc462e1d Major infrastructure changes, part 2.
* Moved helpers, common and triggers dirs into xbps-src, where
  they belong.
* Renamed the templates dir to srcpkgs, it was so redundant before.
* Make it possible to add subpkgs with no restriction in names, for
  example udev now has a subpkgs called "libgudev". Previously
  subpkgs were named "${sourcepkg}-${pkgname}".
* xbps-src: changed to look for template files in current directory.
  That means that most arguments from the targets have been removed.
* xbps-src: added a reinstall target, to remove + install.
* xbps-src: do not overwrite binpkgs by default, skip them.

And more that I forgot because it's a mega-commit that I've been
working for some days already...

--HG--
extra : convert_revision : 0f466878584d1e6895d2a234f07ea1b2d1e61b3e
2009-11-22 08:31:44 +01:00

61 lines
2.1 KiB
Text

# Template file for 'udev'
pkgname=udev
version=147
distfiles="${KERNEL_SITE}/utils/kernel/hotplug/udev-${version}.tar.bz2"
build_style=gnu_configure
configure_args="--exec-prefix= --without-selinux --libexecdir=/lib/udev
--with-rootlibdir=/lib"
short_desc="A userspace implementation of devfs"
maintainer="Juan RP <xtraeme@gmail.com>"
checksum=6517acde28bf319fc52c2b65fef7ef9f35a62bd669bbda6ad65de354d74d8d6b
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."
openrc_services="udev sysinit"
conf_files="/etc/udev/udev.conf"
subpackages="udev-devel libgudev libgudev-devel"
Add_dependency full glibc
Add_dependency full procps
Add_dependency full libblkid
Add_dependency full acl
Add_dependency full usbutils ">=0.82"
Add_dependency full pciutils
Add_dependency build glib
Add_dependency build gperf
Add_dependency build gobject-introspection
Add_dependency build libtool
post_install()
{
# 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
# Install the OpenRC service
install -D -m755 ${FILESDIR}/udev.rc ${DESTDIR}/etc/init.d/udev
# Install the initramfs-tools hook/scripts.
install -d $DESTDIR/usr/share/initramfs-tools/hooks
install -d $DESTDIR/usr/share/initramfs-tools/scripts/init-premount
install -d $DESTDIR/usr/share/initramfs-tools/scripts/init-bottom
install -m 755 ${FILESDIR}/udev.initramfs-hook \
$DESTDIR/usr/share/initramfs-tools/hooks/udev
install -m 755 ${FILESDIR}/udev.initramfs-premount \
$DESTDIR/usr/share/initramfs-tools/scripts/init-premount/udev
install -m 755 ${FILESDIR}/udev.initramfs-bottom \
$DESTDIR/usr/share/initramfs-tools/scripts/init-bottom/udev
# 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
}