wok view slim/receipt @ rev 12481

Rename linux-util-ng to util-linux in all packages
author Christophe Lincoln <pankso@slitaz.org>
date Mon Apr 23 16:30:27 2012 +0200 (2012-04-23)
parents ed2198370ffb
children 77143f213b9b
line source
1 # SliTaz package receipt.
3 PACKAGE="slim"
4 VERSION="1.3.2"
5 CATEGORY="x-window"
6 SHORT_DESC="Desktop-independent graphical login manager for X11."
7 MAINTAINER="pankso@slitaz.org"
8 SUGGESTED="slim-theme-default slitaz-configs"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://slim.berlios.de"
11 WGET_URL="http://download.berlios.de/slim/$TARBALL"
12 CONFIG_FILES="/etc/slim.conf"
14 DEPENDS="glibc-base gcc-lib-base expat fontconfig freetype util-linux-uuid \
15 zlib jpeg libpng xorg-libICE xorg-libSM xorg-libX11 xorg-libXau xorg-libXdmcp \
16 xorg-libXext xorg-libXft xorg-libXmu xorg-libXrender xorg-libXt"
17 BUILD_DEPENDS="xorg-dev jpeg-dev libpng-dev"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 cd $src
23 patch -p1 < $stuff/NoPwdForCmd.patch || return 1
24 make && make DESTDIR=$WOK/$PACKAGE/install 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 $stuff/themes $fs/usr/share/slim
32 cp -a $_pkg/usr/bin $fs/usr
34 # Config file and rc script.
35 cp -a $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 }