wok-next annotate linux-mmc/receipt @ rev 10721

postfix: Fixed uid for postdrop group and postfix user. We should use uid 75 for postfix user and uid 73 for postdrop. Postdrop group was seting itself to 1000 uid before.
author Christopher Rogers <slaxemulator@gmail.com>
date Sat May 28 18:20:04 2011 +0000 (2011-05-28)
parents 1d89aa1672da
children 6f536abe4f0b
rev   line source
pascal@2162 1 # SliTaz package receipt.
pascal@2162 2
pascal@2162 3 PACKAGE="linux-mmc"
slaxemulator@8085 4 VERSION="2.6.37"
pascal@2162 5 CATEGORY="base-system"
pascal@2162 6 SHORT_DESC="The Linux kernel mmc modules (card reader)."
pankso@3864 7 MAINTAINER="devel@slitaz.org"
pascal@2926 8 DEPENDS="linux"
pascal@2162 9 WANTED="linux"
pascal@2162 10 WEB_SITE="http://www.kernel.org/"
pascal@2162 11
pascal@2162 12 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@2162 13 genpkg_rules()
pascal@2162 14 {
pascal@2162 15 local path
pascal@2162 16 path=lib/modules/$VERSION-slitaz/kernel
pascal@2162 17 mkdir -p $fs/$path
pascal@2162 18 export src
pascal@2162 19 export _pkg
slaxemulator@9700 20 $wanted_stuff/list_modules.sh drivers/mmc drivers/misc/tifm_7xx1.ko.gz drivers/misc/iwmc3200top/iwmc3200top.ko.gz| \
pascal@2990 21 while read module; do
pascal@2162 22 dir=$path/$(dirname $module)
pascal@2162 23 [ -d $fs/$dir ] || mkdir -p $fs/$dir
pascal@2162 24 cp -a $_pkg/$path/$module $fs/$dir
pascal@2162 25 done
slaxemulator@7239 26
slaxemulator@9700 27 for i in $(cat $wanted_stuff/modules-$VERSION.list); do
slaxemulator@7239 28 if [ $fs/lib/modules/$VERSION-slitaz/kernel/$i ]; then
slaxemulator@7239 29 rm -f $fs/lib/modules/$VERSION-slitaz/kernel/$i
slaxemulator@7239 30 fi
slaxemulator@7239 31 done
pascal@2162 32 }
pascal@2162 33
pascal@2162 34 # Post install/remove commands for Tazpkg.
pascal@2162 35 post_install()
pascal@2162 36 {
pascal@2990 37 chroot "$1/" depmod -a $VERSION-slitaz
pascal@2162 38 }
pascal@2162 39
pascal@2162 40 post_remove()
pascal@2162 41 {
slaxemulator@8681 42 chroot "$1/" depmod -a $VERSION-slitaz
pascal@2162 43 }
pascal@2162 44