wok annotate linux-input-misc/receipt @ rev 7516

Added libgnomcanvas to libgnomecanvas-dev depends.
author Christopher Rogers <slaxemulator@gmail.com>
date Sat Dec 04 19:12:57 2010 +0000 (2010-12-04)
parents 5355ffc461cf
children 03d4663c81fa
rev   line source
pascal@3316 1 # SliTaz package receipt.
pascal@3316 2
pascal@3316 3 PACKAGE="linux-input-misc"
slaxemulator@7131 4 VERSION="2.6.36"
pascal@3316 5 CATEGORY="base-system"
pascal@3316 6 SHORT_DESC="The Linux kernel misc. input drivers, including the ATI RemoteWonders."
pascal@3316 7 MAINTAINER="rcx@zoominternet.net"
pascal@3316 8 WANTED="linux"
pascal@3316 9 WEB_SITE="http://www.kernel.org/"
pascal@3316 10
pascal@3316 11 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@3316 12 genpkg_rules()
pascal@3316 13 {
pascal@3316 14 local path
pascal@3316 15 path=lib/modules/$VERSION-slitaz/kernel
pascal@3316 16 mkdir -p $fs/$path
pascal@3316 17 export src
pascal@3316 18 export _pkg
pascal@3920 19 $src/slitaz/list_modules.sh drivers/input/misc | while read module; do
pascal@3316 20 dir=$path/$(dirname $module)
pascal@3316 21 [ -d $fs/$dir ] || mkdir -p $fs/$dir
pascal@3316 22 cp -a $_pkg/$path/$module $fs/$dir
pascal@3316 23 done
pascal@3316 24
slaxemulator@7239 25 for i in $(cat $WOK/$WANTED/stuff/modules-$VERSION.list); do
slaxemulator@7239 26 if [ $fs/lib/modules/$VERSION-slitaz/kernel/$i ]; then
slaxemulator@7239 27 rm -f $fs/lib/modules/$VERSION-slitaz/kernel/$i
slaxemulator@7239 28 fi
slaxemulator@7239 29 done
pascal@3316 30 }
pascal@3316 31
pascal@3316 32 # Post install/remove commands for Tazpkg.
pascal@3316 33 post_install()
pascal@3316 34 {
pascal@3316 35 chroot "$1/" depmod -a $VERSION-slitaz
pascal@3316 36 }
pascal@3316 37
pascal@3316 38 post_remove()
pascal@3316 39 {
pascal@3316 40 depmod -a $VERSION-slitaz
pascal@3316 41 }
pascal@3316 42