summaryrefslogtreecommitdiffstats
path: root/udev/Pkgfile
diff options
context:
space:
mode:
authortnut <tnut at nutyx dot com>2012-01-08 12:12:28 +0100
committertnut <tnut at nutyx dot com>2012-01-08 12:12:28 +0100
commit9291e062cb24bac5d7c7059d4dc64669c1917b33 (patch)
treeae6f7e4fb2769d6c53b214c5e0b4d862f1df98dc /udev/Pkgfile
parentc9972ec7f32bf9d37388e853fe9bf633e242d05a (diff)
downloadnutyx-pakxe-9291e062cb24bac5d7c7059d4dc64669c1917b33.tar.gz
nutyx-pakxe-9291e062cb24bac5d7c7059d4dc64669c1917b33.tar.bz2
nutyx-pakxe-9291e062cb24bac5d7c7059d4dc64669c1917b33.tar.xz
nutyx-pakxe-9291e062cb24bac5d7c7059d4dc64669c1917b33.zip
aaabasicfs 2011-3 et split des dépot base et extra en 2 git séparé
Diffstat (limited to 'udev/Pkgfile')
-rw-r--r--udev/Pkgfile46
1 files changed, 46 insertions, 0 deletions
diff --git a/udev/Pkgfile b/udev/Pkgfile
new file mode 100644
index 000000000..31d74e860
--- /dev/null
+++ b/udev/Pkgfile
@@ -0,0 +1,46 @@
+# Description: Démon pour la gestion du matériel dans l'espace utilisateur
+# URL: http://www.kernel.org/pub/linux/utils/kernel/hotplug/udev.html
+# Maintainer: NuTyX core team
+# Packager: thierryn1 at hispeed dot ch
+# Depends on: libusb-compat,usbutils,gobject-introspection,gperf,acl,pciutils
+# Run on:
+
+name=udev
+version=173
+release=1
+_lfs_release=20100128
+source=( http://anduin.linuxfromscratch.org/sources/LFS/lfs-packages/conglomeration/$name/$name-$version.tar.bz2 \
+http://www.linuxfromscratch.org/lfs/downloads/development/udev-config-${_lfs_release}.tar.bz2)
+build() {
+if ( pkginfo -i|grep "^glib " > /dev/null) then
+ EXTRA="--with-pci-ids-path=/usr/share/pci.ids.gz --enable-udev_acl"
+else
+ EXTRA="--disable-extras --disable-introspection --disable-hwdb --disable-keymap"
+fi
+cd udev-$version
+
+install -dv $PKG/lib/{firmware,udev/devices/{pts,shm}}
+ln -s /proc/self/fd $PKG/lib/udev/devices/fd
+ln -s /proc/self/fd/0 $PKG/lib/udev/devices/stdin
+ln -s /proc/self/fd/1 $PKG/lib/udev/devices/stdout
+ln -s /proc/self/fd/2 $PKG/lib/udev/devices/stderr
+ln -s /proc/kcore $PKG/lib/udev/devices/core
+
+
+./configure --prefix=/usr \
+ --sysconfdir=/etc --sbindir=/sbin \
+ --with-rootlibdir=/lib --libexecdir=/lib/udev \
+ --docdir=/usr/share/doc/udev-$version \
+ $EXTRA
+
+make
+
+make install DESTDIR=$PKG mandir="/usr/share/man"
+install -m644 -v rules/misc/30-kernel-compat.rules \
+ $PKG/lib/udev/rules.d/
+cd ../udev-config-${_lfs_release}
+make DESTDIR=$PKG install
+make DESTDIR=$PKG install-doc
+rm -r $PKG/usr/share/gtk-doc
+rm -r $PKG/usr/share/doc/udev-$version
+}