wok diff linux-appletalk/receipt @ rev 12580

nfs-utils: update bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Apr 28 21:06:31 2012 +0200 (2012-04-28)
parents d1768332cee0
children 829b8ae84e70
line diff
     1.1 --- a/linux-appletalk/receipt	Sun May 08 09:01:58 2011 +0000
     1.2 +++ b/linux-appletalk/receipt	Sat Apr 28 21:06:31 2012 +0200
     1.3 @@ -1,7 +1,8 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="linux-appletalk"
     1.7 -VERSION="2.6.37"
     1.8 +VERSION="3.2.14"
     1.9 +BASEVER="${VERSION:0:3}"
    1.10  CATEGORY="base-system"
    1.11  SHORT_DESC="The Linux kernel appletalk modules."
    1.12  MAINTAINER="devel@slitaz.org"
    1.13 @@ -13,7 +14,7 @@
    1.14  genpkg_rules()
    1.15  {
    1.16      local path
    1.17 -    path=lib/modules/$VERSION-slitaz/kernel
    1.18 +    path=lib/modules/$BASEVER-slitaz/kernel
    1.19      mkdir -p $fs/$path
    1.20      
    1.21      export src
    1.22 @@ -26,9 +27,9 @@
    1.23          cp -a $_pkg/$path/$module $fs/$dir
    1.24      done
    1.25  
    1.26 -    for i in $(cat $wanted_stuff/modules-$VERSION.list); do
    1.27 -        if [ $fs/lib/modules/$VERSION-slitaz/kernel/$i ]; then
    1.28 -	    rm -f $fs/lib/modules/$VERSION-slitaz/kernel/$i
    1.29 +    for i in $(cat $wanted_stuff/modules.list); do
    1.30 +        if [ -f $fs/$path/$i ]; then
    1.31 +	    rm -f $fs/$path/$i
    1.32  	fi
    1.33      done
    1.34  }
    1.35 @@ -36,11 +37,11 @@
    1.36  # Post install/remove commands for Tazpkg.
    1.37  post_install()
    1.38  {
    1.39 -	chroot "$1/" depmod -a $VERSION-slitaz
    1.40 +	chroot "$1/" depmod -a $BASEVER-slitaz
    1.41  }
    1.42  
    1.43  post_remove()
    1.44  {
    1.45 -	chroot "$1/" depmod -a $VERSION-slitaz
    1.46 +	chroot "$1/" depmod -a $BASEVER-slitaz
    1.47  }
    1.48