wok annotate linux-drm/receipt @ rev 11388

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