wok-stable annotate 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 |
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@3960 | 8 DEPENDS="glibc-base glib libgio expat zlib menu-cache slitaz-icon \ |
rcx@3799 | 9 gtk+ atk cairo fontconfig freetype pango pixman libpng alsa-lib \ |
rcx@3799 | 10 xorg-libX11 xorg-libXau xorg-libXdmcp xorg-libXext xorg-libXrender" |
slaxemulator@6419 | 11 BUILD_DEPENDS="$DEPENDS gtk+-dev gettext expat-dev intltool menu-cache-dev menu-cache \ |
slaxemulator@6419 | 12 alsa-lib-dev wireless_tools-dev wireless_tools zlib-dev" |
pankso@341 | 13 TARBALL="$PACKAGE-$VERSION.tar.gz" |
rcx@3799 | 14 WEB_SITE="http://www.lxde.org/" |
pankso@341 | 15 WGET_URL="$SF_MIRROR/lxde/$TARBALL" |
pascal@2563 | 16 CONFIG_FILES="/etc/lxpanel/default" |
pankso@341 | 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@6419 | 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). |
gokhlayeh@6423 | 24 patch -p1 -i ../stuff/battery-plugin.patch |
pankso@341 | 25 ./configure \ |
pankso@341 | 26 --prefix=/usr \ |
rcx@3799 | 27 --sysconfdir=/etc \ |
gokhlayeh@6423 | 28 --with-plugins=all \ |
pascal@1469 | 29 $CONFIGURE_ARGS && |
pascal@1469 | 30 make && |
pankso@341 | 31 make DESTDIR=$PWD/_pkg install |
pankso@341 | 32 } |
pankso@341 | 33 |
pankso@341 | 34 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@341 | 35 genpkg_rules() |
pankso@341 | 36 { |
pankso@3960 | 37 mkdir -p $fs/usr/share $fs/usr/lib |
pankso@671 | 38 cp -a $_pkg/usr/bin $fs/usr |
pankso@3960 | 39 cp -a $_pkg/usr/lib/lxpanel $fs/usr/lib |
pankso@671 | 40 cp -a $_pkg/usr/share/lxpanel $fs/usr/share |
pankso@3808 | 41 |
rcx@3799 | 42 # Remove a few "heavy" and unuseful images (ns* goes in extra) |
rcx@3799 | 43 for i in file-manager* stock_volume* gnome-[a-m]*.png \ |
pankso@3960 | 44 gnome-netstatus-[d-t]*.png my-* ns-*.png *lock-*.png |
pankso@3093 | 45 do |
pankso@3093 | 46 rm $fs/usr/share/lxpanel/images/$i |
pankso@3093 | 47 done |
pankso@3808 | 48 |
pankso@3093 | 49 # Custom images to match SliTaz theme. |
pankso@3093 | 50 cp -a stuff/images/* $fs/usr/share/lxpanel/images |
pankso@3808 | 51 |
pankso@799 | 52 # Remove plugins --> lxpanel-extra |
pankso@799 | 53 rm $fs/usr/lib/lxpanel/plugins/kbled.so |
pankso@3808 | 54 |
pankso@3093 | 55 # Move profile to /etc/lxpanel (/usr maybe read-only) and default config |
pankso@671 | 56 mkdir $fs/etc |
pankso@671 | 57 mv -f $fs/usr/share/lxpanel/profile $fs/etc/lxpanel |
pankso@671 | 58 ln -s /etc/lxpanel $fs/usr/share/lxpanel/profile |
pankso@671 | 59 mv $fs/etc/lxpanel/default $fs/etc/lxpanel/original |
pankso@671 | 60 cp -a stuff/default $fs/etc/lxpanel |
pankso@3808 | 61 |
pankso@3093 | 62 # lxsession-logout fake |
pankso@3093 | 63 cat > $fs/usr/bin/lxsession-logout << "EOT" |
pankso@610 | 64 #!/bin/sh |
pankso@610 | 65 # lxsession-logout fake. |
pankso@610 | 66 # |
pankso@771 | 67 desktopbox logout & |
pankso@771 | 68 exit 0 |
pankso@610 | 69 EOT |
pascal@2088 | 70 chmod +x $fs/usr/bin/lxsession-logout |
pankso@610 | 71 } |