wok-next annotate linux-usbip/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@2990 1 # SliTaz package receipt.
pascal@2990 2
pascal@2990 3 PACKAGE="linux-usbip"
slaxemulator@8085 4 VERSION="2.6.37"
pascal@2990 5 CATEGORY="base-system"
pascal@3053 6 SHORT_DESC="The Linux kernel usbip module."
pankso@3864 7 MAINTAINER="devel@slitaz.org"
pascal@2990 8 DEPENDS="linux"
pascal@2990 9 WANTED="linux"
pascal@2990 10 WEB_SITE="http://www.kernel.org/"
pascal@2990 11 PROVIDE="usbip-module"
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
pascal@2990 17 path=lib/modules/$VERSION-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/staging/usbip | 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
pascal@2990 26 }
pascal@2990 27
pascal@2990 28 # Post install/remove commands for Tazpkg.
pascal@2990 29 post_install()
pascal@2990 30 {
pascal@2990 31 grep -qs ^${PACKAGE#*-}$ $1/etc/filesystems || \
pascal@2990 32 echo "${PACKAGE#*-}" >> $1/etc/filesystems
pascal@2990 33 chroot "$1/" depmod -a $VERSION-slitaz
pascal@2990 34 }
pascal@2990 35
pascal@2990 36 post_remove()
pascal@2990 37 {
pascal@2990 38 sed -i "/^${PACKAGE#*-}\$/d" $1/etc/filesystems
slaxemulator@8681 39 chroot "$1/" depmod -a $VERSION-slitaz
pascal@2990 40 }
pascal@2990 41