wok view lxpanel/receipt @ rev 671

Removed icons in: epdfview, hardinfo, lxpanel, pcmanfm
author Christophe Lincoln <pankso@slitaz.org>
date Wed Apr 23 23:50:25 2008 +0200 (2008-04-23)
parents 924a05471475
children 0018cee25153
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/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
58 }
60 # lxpanel logout calls lxsession-logout, not installed by default so
61 # fake.
62 post_install()
63 {
64 locale root
65 root=$1
66 if [ ! -f $root/usr/bin/lxsession-logout ]; then
67 cat > $root/usr/bin/lxsession-logout << "EOT"
68 #!/bin/sh
69 # lxsession-logout fake.
70 #
71 WM=`cat /etc/X11/wm.default`
73 if [ "$WM" = "jwm" ]; then
74 jwm -exit
75 else
76 openbox --exit
77 fi
79 EOT
80 chmod +x $root/usr/bin/lxsession-logout
81 fi
82 }