CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
module-init-tools: updated to 3.11.1 and fixed arch maintainer's email
authorJose V Beneyto <sepen@crux.nu>
Mon, 14 Dec 2009 14:48:37 +0000 (15:48 +0100)
committerJose V Beneyto <sepen@crux.nu>
Mon, 14 Dec 2009 14:48:37 +0000 (15:48 +0100)
module-init-tools/.footprint
module-init-tools/.md5sum
module-init-tools/Pkgfile

index e522bdb10a36c561e8a5acf662095afc2877480b..b75e2ef8659f6a1e836b6614ab5fdd735083f49f 100644 (file)
@@ -1,5 +1,6 @@
 drwxr-xr-x     root/root       etc/
--rw-r--r--     root/root       etc/modprobe.conf
+drwxr-xr-x     root/root       etc/depmod.d/
+drwxr-xr-x     root/root       etc/modprobe.d/
 drwxr-xr-x     root/root       sbin/
 -rwxr-xr-x     root/root       sbin/depmod
 -rwxr-xr-x     root/root       sbin/insmod
@@ -13,6 +14,7 @@ drwxr-xr-x    root/root       usr/man/
 drwxr-xr-x     root/root       usr/man/man5/
 -rw-r--r--     root/root       usr/man/man5/depmod.conf.5.gz
 -rw-r--r--     root/root       usr/man/man5/modprobe.conf.5.gz
+-rw-r--r--     root/root       usr/man/man5/modprobe.d.5.gz
 -rw-r--r--     root/root       usr/man/man5/modules.dep.5.gz
 drwxr-xr-x     root/root       usr/man/man8/
 -rw-r--r--     root/root       usr/man/man8/depmod.8.gz
index 786a564abaada6c7c5ad1da4206631d71eb78c76..13b9d49add61b453f77c01064414afc6e57872f3 100644 (file)
@@ -1,3 +1,2 @@
 72a0ccf1ea3c7c233d16db6b2527dca9  modprobe.conf
-c628deb52bfa219a959d78313989e87e  module-init-tools-3.6.tar.bz2
-f5401f6daf8112a0bb77a9ce60ea88f0  module-init-tools-man-3.6.tar.bz2
+28dfcb9e24cdbeb12b99ac1eb8af7dea  module-init-tools-3.11.1.tar.bz2
index ae3d36f588e7aca6d42388264c3254b484cf3b06..d0b5eabb8d9e954b9b16244ec6ba03abb36ba872 100644 (file)
@@ -1,26 +1,25 @@
 # Description: Kernel module utilities
 # URL: http://www.kernel.org/pub/linux/kernel/people/rusty/modules
 # Maintainer: CRUX System Team, core-ports at crux dot nu
-# Arch Maintainer: CRUX ARM System Team
+# Arch Maintainer: CRUX ARM System Team, crux-arm at mikeux dot dyndns dot org
 # Depends on:
 
 name=module-init-tools
-version=3.6
+version=3.11.1
 release=1
-source=(http://www.kernel.org/pub/linux/kernel/people/rusty/modules/$name-$version.tar.bz2
-        http://crux.nu/~jue/files/dist/$name-man-$version.tar.bz2
+source=(http://www.kernel.org/pub/linux/kernel/people/rusty/modules/$name-$version.tar.bz2 \
         modprobe.conf)
 
 build() {
   cd $name-$version
-  cp $SRC/$name-man-$version/* .
+
   ./configure --build=$CHOST \
               --host=$CTARGET \
               --prefix=/usr \
               --bindir=/sbin \
               --sbindir=/sbin
+
   make
   make DESTDIR=$PKG mandir=/usr/man install
-  install -D -m 644 $SRC/modprobe.conf $PKG/etc/modprobe.conf
-  rm -f $PKG/sbin/generate-modprobe.conf
+  install -d $PKG/etc/{modprobe.d,depmod.d}
 }