wok annotate udev/receipt @ rev 1988

Fix: udev rules missing in /etc/ude/rules.d
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Tue Jan 06 13:01:01 2009 +0100 (2009-01-06)
parents d0baa10a73d6
children b35fd0ef7f31
rev   line source
pankso@5 1 # SliTaz package receipt.
pankso@5 2
pankso@5 3 PACKAGE="udev"
pascal@1878 4 VERSION="135"
pascal@1890 5 BUILD_WARNING="Install new udev package and rebuild hal"
pankso@210 6 CATEGORY="base-system"
pankso@5 7 SHORT_DESC="Udev creat automaticly right devices in /dev."
pankso@5 8 MAINTAINER="pankso@slitaz.org"
pankso@5 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pankso@5 10 WEB_SITE="http://www.kernel.org/pub/linux/utils/kernel/hotplug/udev.html"
pankso@5 11 WGET_URL="http://www.us.kernel.org/pub/linux/utils/kernel/hotplug/$TARBALL"
pankso@5 12
pankso@5 13 # Rules to configure and make the package.
pankso@5 14 compile_rules()
pankso@5 15 {
pankso@5 16 cd $src
pankso@1261 17 ./configure \
pankso@1261 18 --prefix=/usr \
pankso@1270 19 --exec-prefix="" \
pankso@1261 20 --sysconfdir=/etc \
pascal@1535 21 --enable-static \
pascal@1535 22 $CONFIGURE_ARGS &&
pankso@789 23 make EXTRAS="extras/firmware extras/scsi_id extras/volume_id \
pascal@1535 24 extras/ata_id extras/usb_id extras/cdrom_id" &&
pankso@1270 25 make DESTDIR=$PWD/_pkg install
pankso@5 26 }
pankso@5 27
pankso@5 28 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@5 29 genpkg_rules()
pankso@5 30 {
pankso@1261 31 mkdir -p $fs/lib/firmware $fs/etc/udev/rules.d
pankso@789 32
pankso@1261 33 cp -a $_pkg/sbin $fs
pankso@1261 34 cp -a $_pkg/etc $fs
pankso@1261 35 cp -a $_pkg/lib $fs
pascal@1878 36 for i in libudev.so libvolume_id.so; do
pascal@1878 37 [ -f $fs/lib/$i ] || ( cd $fs/lib ; ln -s $i.*.* $i)
pascal@1878 38 done
pankso@789 39
erjo@1988 40 # Copy rules files to udev conf dir
erjo@1988 41 cp -a $src/rules/rules.d/* $fs/etc/udev/rules.d
erjo@1988 42
pankso@1270 43 # Default config files in /lib/udev/rules.d and custom on in
pankso@1270 44 # /etc/udev/rules.d.
pankso@5 45 cp stuff/udev.conf $fs/etc/udev
pankso@5 46 cp stuff/90-permissions.rules $fs/etc/udev/rules.d
pankso@1261 47 cp -a $src/rules/packages/40-alsa.rules $fs/etc/udev/rules.d
pankso@5 48 }