wok view lxpanel/receipt @ rev 669

Up: xorg-base-fonts (1.1) - rm unused (100 Ko) + add arabic fonts (asiatic to be discuss)
author Christophe Lincoln <pankso@slitaz.org>
date Wed Apr 23 21:37:27 2008 +0200 (2008-04-23)
parents 4b565515822c
children c2f0c4bc32ae
line source
1 # SliTaz package receipt.
3 PACKAGE="lxpanel"
4 VERSION="0.3.5.2"
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/gnome-applications.png
39 rm $fs/usr/share/lxpanel/images/gnome-devel.png
40 rm $fs/usr/share/lxpanel/images/gnome-joystick.png
41 rm $fs/usr/share/lxpanel/images/gnome-multimedia.png
42 rm $fs/usr/share/lxpanel/images/gnome-g*.png
43 rm $fs/usr/share/lxpanel/images/redhat*.png
45 # Move profile to /etc/lxpanel (/usr maybe read-only)
46 mkdir $fs/etc
47 mv -f $fs/usr/share/lxpanel/profile $fs/etc/lxpanel
48 ln -s /etc/lxpanel $fs/usr/share/lxpanel/profile
50 # Default config
51 mv $fs/etc/lxpanel/default $fs/etc/lxpanel/original
52 cp -a stuff/default $fs/etc/lxpanel
53 }
55 # lxpanel logout calls lxsession-logout, not installed by default so
56 # fake.
57 post_install()
58 {
59 locale root
60 root=$1
61 if [ ! -f $root/usr/bin/lxsession-logout ]; then
62 cat > $root/usr/bin/lxsession-logout << "EOT"
63 #!/bin/sh
64 # lxsession-logout fake.
65 #
66 WM=`cat /etc/X11/wm.default`
68 if [ "$WM" = "jwm" ]; then
69 jwm -exit
70 else
71 openbox --exit
72 fi
74 EOT
75 chmod +x $root/usr/bin/lxsession-logout
76 fi
77 }