wok-current annotate linux-drm/receipt @ rev 14177
linux: update bdeps (again)
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sun Mar 10 17:43:26 2013 +0100 (2013-03-10) |
parents | 6f536abe4f0b |
children | ad59999b3fce |
rev | line source |
---|---|
pascal@2990 | 1 # SliTaz package receipt. |
pascal@2990 | 2 |
pascal@2990 | 3 PACKAGE="linux-drm" |
pascal@14175 | 4 VERSION="3.2.40" |
pankso@12285 | 5 BASEVER="${VERSION:0:3}" |
pascal@2990 | 6 CATEGORY="base-system" |
pascal@2990 | 7 SHORT_DESC="The Linux kernel drm module." |
pankso@3864 | 8 MAINTAINER="devel@slitaz.org" |
slaxemulator@7347 | 9 DEPENDS="linux-agp" |
pascal@2990 | 10 WANTED="linux" |
pascal@2990 | 11 WEB_SITE="http://www.kernel.org/" |
pascal@2990 | 12 |
pascal@2990 | 13 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@2990 | 14 genpkg_rules() |
pascal@2990 | 15 { |
pascal@2990 | 16 local path |
pankso@12285 | 17 path=lib/modules/$BASEVER-slitaz/kernel |
pascal@2990 | 18 mkdir -p $fs/$path |
pascal@2990 | 19 export src |
pascal@2990 | 20 export _pkg |
slaxemulator@9700 | 21 $wanted_stuff/list_modules.sh drivers/gpu/drm | while read module; do |
pascal@2990 | 22 dir=$path/$(dirname $module) |
pascal@2990 | 23 [ -d $fs/$dir ] || mkdir -p $fs/$dir |
pascal@2990 | 24 cp -a $_pkg/$path/$module $fs/$dir |
pascal@2990 | 25 done |
slaxemulator@7239 | 26 |
pankso@12285 | 27 for i in $(cat $wanted_stuff/modules.list); do |
pankso@12285 | 28 if [ -f $fs/$path/$i ]; then |
pankso@12285 | 29 rm -f $fs/$path/$i |
slaxemulator@7239 | 30 fi |
slaxemulator@7239 | 31 done |
slaxemulator@7347 | 32 |
slaxemulator@7347 | 33 # remove drivers/char/agp kernel modules cause there in linux-agp package |
pankso@12285 | 34 if [ -d $fs/$path/drivers/char/agp ]; then |
pankso@12285 | 35 rm -rf $fs/$path/drivers/char/agp |
slaxemulator@7347 | 36 fi |
pascal@2990 | 37 } |
pascal@2990 | 38 |
pascal@2990 | 39 # Post install/remove commands for Tazpkg. |
pascal@2990 | 40 post_install() |
pascal@2990 | 41 { |
pankso@12285 | 42 chroot "$1/" depmod -a $BASEVER-slitaz |
pascal@2990 | 43 } |
pascal@2990 | 44 |
pascal@2990 | 45 post_remove() |
pascal@2990 | 46 { |
pankso@12285 | 47 chroot "$1/" depmod -a $BASEVER-slitaz |
pascal@2990 | 48 } |
pascal@2990 | 49 |