wok view udev/receipt @ rev 4504

linux: add floppy boot support
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Nov 22 12:46:40 2009 +0100 (2009-11-22)
parents 8ab3c7c0c8d5
children e5746ed8d8cb
line source
1 # SliTaz package receipt.
3 PACKAGE="udev"
4 VERSION="146"
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 DEPENDS="glibc-base util-linux-ng-blkid"
9 BUILD_DEPENDS="$DEPENDS util-linux-ng-blkid-dev gperf pkg-config pciutils"
10 MAINTAINER="pankso@slitaz.org"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WEB_SITE="http://www.kernel.org/pub/linux/utils/kernel/hotplug/udev.html"
13 WGET_URL="http://www.us.kernel.org/pub/linux/utils/kernel/hotplug/$TARBALL"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 gzip -d /usr/share/misc/pci.ids.gz
19 cd $src
20 ./configure \
21 --prefix=/usr \
22 --exec-prefix="" \
23 --sysconfdir=/etc \
24 --libexecdir=/lib/udev \
25 --with-rootlibdir=/lib \
26 --enable-static \
27 --disable-extras \
28 $CONFIGURE_ARGS &&
29 make &&
30 make DESTDIR=$PWD/_pkg install &&
31 gzip /usr/share/misc/pci.ids
32 }
34 # Rules to gen a SliTaz package suitable for Tazpkg.
35 genpkg_rules()
36 {
37 mkdir -p $fs/lib/firmware $fs/etc/udev $fs/usr \
38 $fs/dev/.udev
39 for dir in sbin etc lib
40 do
41 cp -a $_pkg/$dir $fs
42 done
43 #cp -a $_pkg/usr/lib $fs/usr
44 #ln -s /lib/libudev.so.0.3.0 $fs/lib/libudev.so
46 # Remove -dev files
47 rm -rf $fs/lib/*.*a
48 rm -rf $fs/lib/pkgconfig
50 # Copy rules files to udev conf dir
51 mv -f $fs/lib/udev/rules.d $fs/etc/udev
52 cp stuff/udev.conf $fs/etc/udev
53 cp stuff/90-permissions.rules $fs/etc/udev/rules.d
54 cp stuff/92-hal.rules $fs/etc/udev/rules.d
55 cp $src/rules/packages/40-alsa.rules $fs/etc/udev/rules.d
56 cp $src/rules/packages/40-zaptel.rules $fs/etc/udev/rules.d
57 # Fix permissions
58 chmod +x $fs/lib/udev/*
59 chown -R root.root $fs
60 }
62 pre_install()
63 {
64 # Remove old rules and libs
65 rm -rf $1/lib/udev/rules.d
66 rm -rf $1/lib/udev/vol_id
67 rm -f $1/lib/libvolume_id*
68 rm -f $1/lib/libudev.so.1.0
69 rm -f $1/lib/libudev.so.2.0
70 }
72 list_udev_group()
73 {
74 object=$1
75 [ -n "$object" ] || object=GROUP
76 grep $object /etc/udev/rules.d/* | \
77 sed "s/.*GROUP=\"\\([a-zA-Z0-9]*\\)\".*/\1/" | sort | uniq
78 }
80 post_install()
81 {
82 # Sanity check for udev+ldap boot
83 list_udev_group GROUP | while read x ; do
84 grep -q ^$x: $1/etc/group || chroot $1/ addgroup $x
85 done
86 list_udev_group OWNER | while read x ; do
87 grep -q ^$x: $1/etc/passwd || chroot $1/ adduser -S -D -H $x
88 done
89 }