module-init-tools: update to 3.4

This commit is contained in:
Juergen Daubert 2008-07-22 10:15:50 +02:00
parent cf87f58cfd
commit c0e10732db
3 changed files with 11 additions and 8 deletions

View File

@ -11,6 +11,7 @@ drwxr-xr-x root/root sbin/
drwxr-xr-x root/root usr/
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/modules.dep.5.gz
drwxr-xr-x root/root usr/man/man8/

View File

@ -1,2 +1,3 @@
72a0ccf1ea3c7c233d16db6b2527dca9 modprobe.conf
a1ad0a09d3231673f70d631f3f5040e9 module-init-tools-3.2.2.tar.bz2
db6ac059e80e8dd4389dbe81ee61f3c6 module-init-tools-3.4.tar.bz2
553c04425bc7a2cef5a2f78067c4ff5d module-init-tools-man-3.4.tar.bz2

View File

@ -3,19 +3,20 @@
# Maintainer: CRUX System Team, core-ports at crux dot nu
name=module-init-tools
version=3.2.2
version=3.4
release=1
source=(http://www.kernel.org/pub/linux/kernel/people/rusty/modules/$name-$version.tar.bz2 \
modprobe.conf)
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
modprobe.conf)
build() {
cd $name-$version
cp $SRC/$name-man-$version/* .
./configure --prefix=/usr \
--bindir=/sbin \
--sbindir=/sbin
touch *.5 *.8
--bindir=/sbin \
--sbindir=/sbin
make
make DESTDIR=$PKG mandir=/usr/man install
install -D -m 644 ../modprobe.conf $PKG/etc/modprobe.conf
install -D -m 644 $SRC/modprobe.conf $PKG/etc/modprobe.conf
rm -f $PKG/sbin/generate-modprobe.conf
}