wok view lxpanel/receipt @ rev 715

Up: slitaz-configs (2.0) - Include now Openbox default files and slim theme
author Christophe Lincoln <pankso@slitaz.org>
date Fri May 02 20:41:41 2008 +0200 (2008-05-02)
parents 97d810b6db98
children 2cb458b74bb3
line source
1 # SliTaz package receipt.
3 PACKAGE="lxpanel"
4 VERSION="0.3.5.4"
5 CATEGORY="x-window"
6 SHORT_DESC="Standard compliant desktop panel."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="gtk+ slitaz-menus"
9 BUILD_DEPENDS="gtk+-dev gettext"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://lxde.sourceforge.net/"
12 WGET_URL="$SF_MIRROR/lxde/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 # Patch the menu
19 patch -p0 < ../stuff/ptk-app-menu.patch || exit 1
20 patch -p0 < ../stuff/fr.patch || exit 1
21 ./configure \
22 --prefix=/usr \
23 --with-plugins=all \
24 $CONFIGURE_ARGS
25 make
26 make DESTDIR=$PWD/_pkg install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/share
33 cp -a $_pkg/usr/bin $fs/usr
34 cp -a $_pkg/usr/lib $fs/usr
35 cp -a $_pkg/usr/share/lxpanel $fs/usr/share
37 # Remove a few "heavy" an unseful images
38 rm $fs/usr/share/lxpanel/images/file-manager.png
39 rm $fs/usr/share/lxpanel/images/gnome-applications.png
40 rm $fs/usr/share/lxpanel/images/gnome-devel.png
41 rm $fs/usr/share/lxpanel/images/gnome-fs*.png
42 rm $fs/usr/share/lxpanel/images/gnome-joystick.png
43 rm $fs/usr/share/lxpanel/images/gnome-multimedia.png
44 rm $fs/usr/share/lxpanel/images/gnome-s*
45 rm $fs/usr/share/lxpanel/images/gnome-g*.png
46 rm $fs/usr/share/lxpanel/images/gnome-u*.png
47 rm $fs/usr/share/lxpanel/images/my-*
48 rm $fs/usr/share/lxpanel/images/redhat*.png
50 # Move profile to /etc/lxpanel (/usr maybe read-only)
51 mkdir $fs/etc
52 mv -f $fs/usr/share/lxpanel/profile $fs/etc/lxpanel
53 ln -s /etc/lxpanel $fs/usr/share/lxpanel/profile
55 # Default config
56 mv $fs/etc/lxpanel/default $fs/etc/lxpanel/original
57 cp -a stuff/default $fs/etc/lxpanel
59 # Declare lxsession-logout in files.list
60 touch $fs/usr/bin/lxsession-logout
61 }
63 # lxpanel logout calls lxsession-logout, not installed by default so
64 # fake.
65 post_install()
66 {
67 locale root
68 root=$1
69 if [ ! -s $root/usr/bin/lxsession-logout ]; then
70 cat > $root/usr/bin/lxsession-logout << "EOT"
71 #!/bin/sh
72 # lxsession-logout fake.
73 #
74 WM=`cat /etc/X11/wm.default`
76 if [ "$WM" = "jwm" ]; then
77 jwm -exit
78 else
79 openbox --exit
80 fi
82 EOT
83 chmod +x $root/usr/bin/lxsession-logout
84 fi
85 }