wok annotate lxpanel/receipt @ rev 11040

Up: amsn to 0.98.4.
author Christopher Rogers <slaxemulator@gmail.com>
date Sun Oct 16 07:42:24 2011 +0000 (2011-10-16)
parents 086636bf9f9d
children abfc6db7f416
rev   line source
pankso@341 1 # SliTaz package receipt.
pankso@341 2
pankso@341 3 PACKAGE="lxpanel"
slaxemulator@6419 4 VERSION="0.5.6"
pankso@341 5 CATEGORY="x-window"
pankso@341 6 SHORT_DESC="Standard compliant desktop panel."
pankso@341 7 MAINTAINER="pankso@slitaz.org"
pankso@341 8 TARBALL="$PACKAGE-$VERSION.tar.gz"
rcx@3799 9 WEB_SITE="http://www.lxde.org/"
pankso@341 10 WGET_URL="$SF_MIRROR/lxde/$TARBALL"
pascal@2563 11 CONFIG_FILES="/etc/lxpanel/default"
pankso@341 12
pankso@9694 13 DEPENDS="glibc-base glib libgio expat zlib menu-cache slitaz-icon \
pankso@10736 14 gtk+ alsa-lib wireless_tools"
pankso@10736 15 BUILD_DEPENDS="gtk+-dev gettext expat-dev intltool menu-cache-dev \
pankso@10736 16 lxmenu-data alsa-lib-dev wireless_tools-dev"
pankso@9694 17
pankso@341 18 # Rules to configure and make the package.
pankso@341 19 compile_rules()
pankso@341 20 {
pankso@341 21 cd $src
slaxemulator@9700 22 #patch -p1 -i $stuff/Fix-failure-to-react-to-keyboard-map-changes-initiat.patch
gokhlayeh@6423 23 # Devnote : this patch shouldn't be necessary in next release of lxpanel (current : 0.5.6).
pankso@9694 24 patch -p1 -i $stuff/battery-plugin.patch
slaxemulator@6590 25 # patch to fix 100% battery bug with battery plugin
pankso@9694 26 patch -p1 -i $stuff/battery.patch
pankso@9694 27 ./configure --with-plugins=all &&
pankso@9694 28 make && make install
pankso@341 29 }
pankso@341 30
pankso@341 31 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@341 32 genpkg_rules()
pankso@341 33 {
pankso@3960 34 mkdir -p $fs/usr/share $fs/usr/lib
pankso@9694 35
pankso@9694 36 cp -a $install/usr/bin $fs/usr
pankso@9694 37 cp -a $install/usr/lib/lxpanel $fs/usr/lib
pankso@9694 38 cp -a $install/usr/share/lxpanel $fs/usr/share
pankso@3808 39
rcx@3799 40 # Remove a few "heavy" and unuseful images (ns* goes in extra)
rcx@3799 41 for i in file-manager* stock_volume* gnome-[a-m]*.png \
pankso@3960 42 gnome-netstatus-[d-t]*.png my-* ns-*.png *lock-*.png
pankso@3093 43 do
pankso@3093 44 rm $fs/usr/share/lxpanel/images/$i
pankso@3093 45 done
pankso@3808 46
pankso@3093 47 # Custom images to match SliTaz theme.
pankso@3093 48 cp -a stuff/images/* $fs/usr/share/lxpanel/images
pankso@3808 49
pankso@799 50 # Remove plugins --> lxpanel-extra
pankso@799 51 rm $fs/usr/lib/lxpanel/plugins/kbled.so
pankso@9494 52 rm -rf $fs/usr/share/lxpanel/images/xkb-flags
pankso@3808 53
pankso@3093 54 # Move profile to /etc/lxpanel (/usr maybe read-only) and default config
pankso@671 55 mkdir $fs/etc
pankso@671 56 mv -f $fs/usr/share/lxpanel/profile $fs/etc/lxpanel
pankso@671 57 ln -s /etc/lxpanel $fs/usr/share/lxpanel/profile
pankso@671 58 mv $fs/etc/lxpanel/default $fs/etc/lxpanel/original
pankso@671 59 cp -a stuff/default $fs/etc/lxpanel
pankso@3808 60
pankso@3093 61 # lxsession-logout fake
pankso@3093 62 cat > $fs/usr/bin/lxsession-logout << "EOT"
pankso@610 63 #!/bin/sh
pankso@610 64 # lxsession-logout fake.
pankso@610 65 #
pankso@10736 66 tazbox logout &
pankso@771 67 exit 0
pankso@610 68 EOT
pascal@2088 69 chmod +x $fs/usr/bin/lxsession-logout
pankso@610 70 }