wok view slim-pam/receipt @ rev 8425

Replace xorg depend with xorg-libXext in imagemagick.
author Christopher Rogers <slaxemulator@gmail.com>
date Sat Feb 05 19:01:07 2011 +0000 (2011-02-05)
parents a0fa6235faca
children 4a193c62c501
line source
1 # SliTaz package receipt.
3 PACKAGE="slim-pam"
4 VERSION="1.3.2"
5 CATEGORY="x-window"
6 SHORT_DESC="Desktop-independent graphical login manager for X11."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 DEPENDS="xorg jpeg libpng slitaz-configs pam"
9 BUILD_DEPENDS="xorg-dev jpeg-dev libpng-dev xorg-libXft-dev pam pam-dev \
10 zlib-dev freetype-dev fontconfig-dev"
11 SOURCE="slim"
12 TARBALL="$SOURCE-$VERSION.tar.gz"
13 WEB_SITE="http://slim.berlios.de"
14 WGET_URL="http://download.berlios.de/slim/$TARBALL"
15 CONFIG_FILES="/etc/slim.conf"
16 PROVIDE="slim:pam"
17 BUGS="Sometime needs more than 10 seconds to start (since HAL/DCOP addition)."
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 cd $src
23 make USE_PAM=1 &&
24 make DESTDIR=$src/_pkg install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/share/slim
31 cp -a ../$SOURCE/stuff/themes $fs/usr/share/slim
32 cp -a $_pkg/usr/bin $fs/usr
34 # Config file and rc script.
35 cp -a ../$SOURCE/stuff/etc $fs
36 chown -R root.root $fs
37 }
39 pre_install()
40 {
41 local root
42 root=$1
43 # Backup config file.
44 if [ -f $root/etc/slim.conf ]; then
45 cp $root/etc/slim.conf $root/etc/slim.conf.bak
46 fi
47 }
49 post_install()
50 {
51 local root
52 root=$1
53 # Restore original config.
54 if [ -f $root/etc/slim.conf.bak ]; then
55 mv -f $root/etc/slim.conf.bak $root/etc/slim.conf
56 fi
57 local USER
58 USER=$(awk -F: '/:1000:1000:/ { print $1 }' < $1/etc/passwd)
59 [ -n "$USER" ] &&
60 sed -i s/"default_user .*"/"default_user $USER"/ $1/etc/slim.conf
61 }
63 pre_remove()
64 {
65 tazpkg get-install ${PACKAGE%-pam}
66 }