wok diff linux-netfilter/receipt @ rev 13432
Up ranger (1.5.5)
author | Paul Issott <paul@slitaz.org> |
---|---|
date | Sat Oct 06 20:22:18 2012 +0100 (2012-10-06) |
parents | 02b9db771c0a |
children | 416fab3c90c0 |
line diff
1.1 --- a/linux-netfilter/receipt Tue Jun 14 11:41:17 2011 +0000 1.2 +++ b/linux-netfilter/receipt Sat Oct 06 20:22:18 2012 +0100 1.3 @@ -1,7 +1,8 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="linux-netfilter" 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 netfilter 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 @@ -27,9 +28,9 @@ 1.23 done 1.24 rm -r $fs/$path/net/ipv6 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 @@ -37,11 +38,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