wok view lxpanel/receipt @ rev 6423

lxpanel : patch battery plugin
author Antoine Bodin <gokhlayeh@mailoo.org>
date Mon Sep 27 02:41:42 2010 +0200 (2010-09-27)
parents 5e7bfce7a7ed
children 97d26f546a4a
line source
1 # SliTaz package receipt.
3 PACKAGE="lxpanel"
4 VERSION="0.5.6"
5 CATEGORY="x-window"
6 SHORT_DESC="Standard compliant desktop panel."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="glibc-base glib libgio expat zlib menu-cache slitaz-icon \
9 gtk+ atk cairo fontconfig freetype pango pixman libpng alsa-lib \
10 xorg-libX11 xorg-libXau xorg-libXdmcp xorg-libXext xorg-libXrender"
11 BUILD_DEPENDS="$DEPENDS gtk+-dev gettext expat-dev intltool menu-cache-dev menu-cache \
12 alsa-lib-dev wireless_tools-dev wireless_tools zlib-dev"
13 TARBALL="$PACKAGE-$VERSION.tar.gz"
14 WEB_SITE="http://www.lxde.org/"
15 WGET_URL="$SF_MIRROR/lxde/$TARBALL"
16 CONFIG_FILES="/etc/lxpanel/default"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 cd $src
22 #patch -p1 -i ../stuff/Fix-failure-to-react-to-keyboard-map-changes-initiat.patch
23 # Devnote : this patch shouldn't be necessary in next release of lxpanel (current : 0.5.6).
24 patch -p1 -i ../stuff/battery-plugin.patch
25 ./configure \
26 --prefix=/usr \
27 --sysconfdir=/etc \
28 --with-plugins=all \
29 $CONFIGURE_ARGS &&
30 make &&
31 make DESTDIR=$PWD/_pkg install
32 }
34 # Rules to gen a SliTaz package suitable for Tazpkg.
35 genpkg_rules()
36 {
37 mkdir -p $fs/usr/share $fs/usr/lib
38 cp -a $_pkg/usr/bin $fs/usr
39 cp -a $_pkg/usr/lib/lxpanel $fs/usr/lib
40 cp -a $_pkg/usr/share/lxpanel $fs/usr/share
42 # Remove a few "heavy" and unuseful images (ns* goes in extra)
43 for i in file-manager* stock_volume* gnome-[a-m]*.png \
44 gnome-netstatus-[d-t]*.png my-* ns-*.png *lock-*.png
45 do
46 rm $fs/usr/share/lxpanel/images/$i
47 done
49 # Custom images to match SliTaz theme.
50 cp -a stuff/images/* $fs/usr/share/lxpanel/images
52 # Remove plugins --> lxpanel-extra
53 rm $fs/usr/lib/lxpanel/plugins/kbled.so
55 # Move profile to /etc/lxpanel (/usr maybe read-only) and default config
56 mkdir $fs/etc
57 mv -f $fs/usr/share/lxpanel/profile $fs/etc/lxpanel
58 ln -s /etc/lxpanel $fs/usr/share/lxpanel/profile
59 mv $fs/etc/lxpanel/default $fs/etc/lxpanel/original
60 cp -a stuff/default $fs/etc/lxpanel
62 # lxsession-logout fake
63 cat > $fs/usr/bin/lxsession-logout << "EOT"
64 #!/bin/sh
65 # lxsession-logout fake.
66 #
67 desktopbox logout &
68 exit 0
69 EOT
70 chmod +x $fs/usr/bin/lxsession-logout
71 }