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