wok view udev/receipt @ rev 2451

nss_ldap: enable-schema-mapping
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Mar 13 15:51:27 2009 +0000 (2009-03-13)
parents 5cd5eb008923
children 671a76927143
line source
1 # SliTaz package receipt.
3 PACKAGE="udev"
4 VERSION="139"
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.gz"
10 WEB_SITE="http://www.kernel.org/pub/linux/utils/kernel/hotplug/udev.html"
11 WGET_URL="http://www.us.kernel.org/pub/linux/utils/kernel/hotplug/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 ./configure \
18 --prefix=/usr \
19 --exec-prefix="" \
20 --sysconfdir=/etc \
21 --enable-static \
22 $CONFIGURE_ARGS &&
23 make EXTRAS="extras/firmware extras/scsi_id extras/volume_id \
24 extras/ata_id extras/usb_id extras/cdrom_id" &&
25 make DESTDIR=$PWD/_pkg install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/lib/firmware $fs/etc/udev
33 cp -a $_pkg/sbin $fs
34 cp -a $_pkg/etc $fs
35 cp -a $_pkg/lib $fs
36 for i in libudev.so libvolume_id.so; do
37 [ -f $fs/lib/$i ] || ( cd $fs/lib ; ln -s $i.*.* $i)
38 done
40 # Copy rules files to udev conf dir
41 mv $fs/lib/udev/rules.d $fs/etc/udev
42 cp stuff/udev.conf $fs/etc/udev
43 cp stuff/90-permissions.rules $fs/etc/udev/rules.d
44 cp -a $src/rules/packages/40-alsa.rules $fs/etc/udev/rules.d
46 # Fix permissions
47 chmod +x $fs/lib/udev/write*
48 }
50 post_install()
51 {
52 local root
53 root=$1
54 # Remove old rules
55 rm -rf $1/lib/udev/rules.d 2>/dev/null
56 }