wok-next annotate linmodem-intel-536ep/receipt @ rev 8311
Fixed linmodem-intel-536ep and linmodem-intel-537 genpkg_rules. This now works with tazwok-experimental (i think).
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Tue Feb 01 02:40:02 2011 +0000 (2011-02-01) |
parents | bfcae602a498 |
children | 9f4d002c2b7f |
rev | line source |
---|---|
jozee@4588 | 1 # SliTaz package receipt. |
jozee@4588 | 2 |
jozee@4588 | 3 PACKAGE="linmodem-intel-536ep" |
jozee@4588 | 4 VERSION="2.56.76.0" |
jozee@4588 | 5 CATEGORY="network" |
jozee@4588 | 6 MAINTAINER="jozee@slitaz.org" |
jozee@4588 | 7 SHORT_DESC="Intel Modem Drivers for 536EP chipset" |
slaxemulator@7164 | 8 BUILD_DEPENDS="linux linux-module-headers lzma" |
jozee@4588 | 9 WEB_SITE="http://linmodems.technion.ac.il/packages/Intel/" |
jozee@4588 | 10 TARBALL="intel-536EP-537EP_2009_07_04.tar.bz2" |
jozee@4588 | 11 WGET_URL="$WEB_SITE/Philippe.Vouters/$TARBALL" |
jozee@4588 | 12 TAGS="" |
jozee@4588 | 13 |
jozee@4588 | 14 # Rules to configure and make the package. |
jozee@4588 | 15 |
jozee@4588 | 16 compile_rules() { |
jozee@4588 | 17 |
jozee@4588 | 18 KERNEL_VERSION=`grep ^VERSION= $WOK/linux/receipt | cut -d "=" -f2 | sed -e 's/"//g'` |
slaxemulator@8311 | 19 cd $src |
jozee@4588 | 20 |
jozee@4588 | 21 while read file; do |
jozee@4588 | 22 [ -f done.$file ] && continue |
jozee@4588 | 23 echo "Apply $file..." |
jozee@4588 | 24 patch -p1 < ../stuff/$PACKAGE-$file || return 1 |
jozee@4588 | 25 touch done.$file |
jozee@4588 | 26 done <<EOT |
jozee@4588 | 27 kernel-2.6.30.patch |
slaxemulator@8285 | 28 kernel-2.6.33.patch |
slaxemulator@8285 | 29 kernel-2.6.37.patch |
jozee@4588 | 30 EOT |
pascal@4619 | 31 grep -rl 'uname -r' * | xargs sed -i "s/uname -r/echo $KERNEL_VERSION/" |
jozee@4588 | 32 # Bypass linux source package check |
jozee@4588 | 33 sed -i 's/@bash config_check/#@bash config_check/' makefile |
pascal@5449 | 34 grep -rl 'linux/autoconf.h' * | xargs sed -i 's|linux/autoconf.h|generated/autoconf.h|' |
slaxemulator@7164 | 35 make KERNEL_SOURCE_PATH=/usr/src/linux KDIR=/usr/src/linux MODEM_TYPE=536 536 |
jozee@4588 | 36 } |
jozee@4588 | 37 |
jozee@4588 | 38 # Rules to gen a SliTaz package suitable for Tazpkg. |
jozee@4588 | 39 genpkg_rules() |
jozee@4588 | 40 { |
jozee@4588 | 41 KERNEL_VERSION=`grep ^VERSION= $WOK/linux/receipt | cut -d "=" -f2 | sed -e 's/"//g'` |
jozee@4588 | 42 EXTRAVERSION=_$KERNEL_VERSION |
jozee@4588 | 43 |
jozee@4588 | 44 mkdir -p $fs/lib/modules/$KERNEL_VERSION-slitaz/kernel/drivers/net |
jozee@4588 | 45 |
jozee@4588 | 46 # Compress and install module |
slaxemulator@8311 | 47 lzma e $src/Intel536.ko $fs/lib/modules/$KERNEL_VERSION-slitaz/kernel/drivers/net/intel536.ko.gz |
jozee@4588 | 48 chown root $fs/lib/modules/$KERNEL_VERSION-slitaz/kernel/drivers/net/intel536.ko.gz |
jozee@4588 | 49 chmod 0644 $fs/lib/modules/$KERNEL_VERSION-slitaz/kernel/drivers/net/intel536.ko.gz |
jozee@4588 | 50 } |
jozee@4588 | 51 |
jozee@4588 | 52 post_install() |
jozee@4588 | 53 { |
jozee@4588 | 54 echo "Processing post-install commands..." |
jozee@4588 | 55 chroot "$1/" depmod -a ${EXTRAVERSION#_}-slitaz |
jozee@4588 | 56 } |
jozee@4588 | 57 |
jozee@4588 | 58 post_remove() |
jozee@4588 | 59 { |
jozee@4588 | 60 echo "Processing post-remove commands..." |
slaxemulator@8307 | 61 chroot "$1/" depmod -a ${EXTRAVERSION#_}-slitaz |
jozee@4588 | 62 } |
jozee@4588 | 63 |