wok-next annotate lxpanel/receipt @ rev 11999
openssh: Gen ecdsa key if not exist
author | Eric Joseph-Alexandre <erjo@slitaz.org> |
---|---|
date | Sun Mar 04 23:00:55 2012 +0100 (2012-03-04) |
parents | bd26076a2af9 |
children | 1134cd1d9d3c |
rev | line source |
---|---|
pankso@341 | 1 # SliTaz package receipt. |
pankso@341 | 2 |
pankso@341 | 3 PACKAGE="lxpanel" |
devl547@11274 | 4 VERSION="0.5.8" |
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 |
pascal@11297 | 22 patch -p1 -i $stuff/configure_desktop_number.patch |
pascal@11297 | 23 patch -p1 -i $stuff/fix_position.patch |
pankso@11955 | 24 patch -p0 -i $stuff/cpu-size-color.patch || exit 1 |
gokhlayeh@11573 | 25 ./configure --with-plugins=all $CONFIGURE_ARGS && |
pankso@9694 | 26 make && make install |
pankso@341 | 27 } |
pankso@341 | 28 |
pankso@341 | 29 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@341 | 30 genpkg_rules() |
pankso@341 | 31 { |
pankso@3960 | 32 mkdir -p $fs/usr/share $fs/usr/lib |
pankso@9694 | 33 |
pankso@9694 | 34 cp -a $install/usr/bin $fs/usr |
pankso@9694 | 35 cp -a $install/usr/lib/lxpanel $fs/usr/lib |
pankso@9694 | 36 cp -a $install/usr/share/lxpanel $fs/usr/share |
pankso@3808 | 37 |
rcx@3799 | 38 # Remove a few "heavy" and unuseful images (ns* goes in extra) |
rcx@3799 | 39 for i in file-manager* stock_volume* gnome-[a-m]*.png \ |
pankso@3960 | 40 gnome-netstatus-[d-t]*.png my-* ns-*.png *lock-*.png |
pankso@3093 | 41 do |
pankso@3093 | 42 rm $fs/usr/share/lxpanel/images/$i |
pankso@3093 | 43 done |
pankso@3808 | 44 |
pankso@3093 | 45 # Custom images to match SliTaz theme. |
pankso@3093 | 46 cp -a stuff/images/* $fs/usr/share/lxpanel/images |
pankso@3808 | 47 |
pankso@799 | 48 # Remove plugins --> lxpanel-extra |
pankso@799 | 49 rm $fs/usr/lib/lxpanel/plugins/kbled.so |
pankso@9494 | 50 rm -rf $fs/usr/share/lxpanel/images/xkb-flags |
pankso@3808 | 51 |
pankso@3093 | 52 # Move profile to /etc/lxpanel (/usr maybe read-only) and default config |
pankso@671 | 53 mkdir $fs/etc |
pankso@671 | 54 mv -f $fs/usr/share/lxpanel/profile $fs/etc/lxpanel |
pankso@671 | 55 ln -s /etc/lxpanel $fs/usr/share/lxpanel/profile |
pankso@671 | 56 mv $fs/etc/lxpanel/default $fs/etc/lxpanel/original |
pankso@671 | 57 cp -a stuff/default $fs/etc/lxpanel |
pankso@3808 | 58 |
pankso@3093 | 59 # lxsession-logout fake |
pankso@3093 | 60 cat > $fs/usr/bin/lxsession-logout << "EOT" |
pankso@610 | 61 #!/bin/sh |
pankso@610 | 62 # lxsession-logout fake. |
pankso@610 | 63 # |
pankso@10736 | 64 tazbox logout & |
pankso@771 | 65 exit 0 |
pankso@610 | 66 EOT |
pascal@2088 | 67 chmod +x $fs/usr/bin/lxsession-logout |
pankso@610 | 68 } |