wok view udev/receipt @ rev 12957

gejengel: typo
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu May 31 18:38:09 2012 +0200 (2012-05-31)
parents 8e30e2cf0cdf
children dac216ce48c5
line source
1 # SliTaz package receipt.
3 PACKAGE="udev"
4 VERSION="182"
5 BUILD_WARNING="Install new udev package and rebuild hal"
6 CATEGORY="base-system"
7 SHORT_DESC="Udev creat automaticly right devices in /dev."
8 MAINTAINER="pankso@slitaz.org"
9 TARBALL="$PACKAGE-$VERSION.tar.xz"
10 WEB_SITE="http://www.freedesktop.org/software/systemd/man/udev.html"
11 WGET_URL="http://www.kernel.org/pub/linux/utils/kernel/hotplug/$TARBALL"
13 DEPENDS="util-linux-blkid pciids usbids acl kmod"
14 BUILD_DEPENDS="util-linux-blkid-dev gperf pkg-config pciutils acl-dev \
15 libgio-dev usbutils-dev libusb-dev glib-dev pciids usbids kmod-dev \
16 libgudev-dev pcre-dev liblzma-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 cd $src
22 ./configure \
23 --exec-prefix="" \
24 --with-rootprefix="" \
25 --bindir=/sbin \
26 --sysconfdir=/etc \
27 --libexecdir=/lib \
28 --disable-manpages \
29 --disable-introspection \
30 --disable-keymap \
31 --enable-floppy \
32 --enable-rule_generator \
33 --with-pci-ids-path=/usr/share/misc/pci.ids.gz \
34 --with-usb-ids-path=/usr/share/misc/usb.ids.gz \
35 --with-systemdsystemunitdir=no \
36 $CONFIGURE_ARGS &&
37 make && make install
38 }
40 # Rules to gen a SliTaz package suitable for Tazpkg.
41 genpkg_rules()
42 {
43 mkdir -p $fs/lib/firmware $fs/run/udev
45 cp -a $install/sbin $fs
46 cp -a $install/etc $fs
47 cp -a $install/lib/libudev*so* $fs/lib
48 cp -a $install/lib/udev $fs/lib
50 # Have udevd in PATH
51 mv $fs/lib/udev/udevd $fs/sbin
53 # Copy rules files to udev conf dir
54 mv -f $fs/lib/udev/rules.d $fs/etc/udev
55 cp $stuff/udev.conf $fs/etc/udev
56 cp $stuff/*.rules $fs/etc/udev/rules.d
58 # Create some devices and directories that Udev cannot handle
59 # due to them being required very early in the boot process
60 mkdir -p $fs/lib/udev/devices/pts
61 mknod -m 0666 $fs/lib/udev/devices/null c 1 3
63 # Fix permissions
64 chmod +x $fs/lib/udev/*
65 chown -R root.root $fs
66 }
68 list_udev_group()
69 {
70 object=$2
71 [ -n "$object" ] || object=GROUP
72 grep $object $1/etc/udev/rules.d/* | \
73 sed 's/.*GROUP="\([a-zA-Z0-9]*\)".*/\1/' | sort | uniq
74 }
76 post_install()
77 {
78 # Sanity check for udev+ldap boot
79 list_udev_group "$1" GROUP | while read x ; do
80 grep -q ^$x: $1/etc/group || chroot $1/ addgroup -S $x
81 done
82 list_udev_group "$1" OWNER | while read x ; do
83 grep -q ^$x: $1/etc/passwd || chroot $1/ adduser -S -D -H $x
84 done
85 }