wok-current annotate lxpanel/receipt @ rev 6266
Fix pixman. Added glib-dev for build depends even though i can build without it. Not building with -j 4.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Tue Sep 14 17:50:39 2010 +0000 (2010-09-14) |
parents | 73ef290455ef |
children | 32cde9ab5311 |
rev | line source |
---|---|
pankso@341 | 1 # SliTaz package receipt. |
pankso@341 | 2 |
pankso@341 | 3 PACKAGE="lxpanel" |
jozee@4979 | 4 VERSION="0.5.5" |
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" |
rcx@3799 | 11 BUILD_DEPENDS="gtk+-dev gettext expat-dev intltool menu-cache-dev menu-cache \ |
rcx@3799 | 12 alsa-lib-dev wireless_tools-dev wireless_tools" |
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 |
pankso@341 | 22 ./configure \ |
pankso@341 | 23 --prefix=/usr \ |
rcx@3799 | 24 --sysconfdir=/etc \ |
pankso@610 | 25 --with-plugins=all \ |
pascal@1469 | 26 $CONFIGURE_ARGS && |
pascal@1469 | 27 make && |
pankso@341 | 28 make DESTDIR=$PWD/_pkg 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@671 | 35 cp -a $_pkg/usr/bin $fs/usr |
pankso@3960 | 36 cp -a $_pkg/usr/lib/lxpanel $fs/usr/lib |
pankso@671 | 37 cp -a $_pkg/usr/share/lxpanel $fs/usr/share |
pankso@3808 | 38 |
rcx@3799 | 39 # Remove a few "heavy" and unuseful images (ns* goes in extra) |
rcx@3799 | 40 for i in file-manager* stock_volume* gnome-[a-m]*.png \ |
pankso@3960 | 41 gnome-netstatus-[d-t]*.png my-* ns-*.png *lock-*.png |
pankso@3093 | 42 do |
pankso@3093 | 43 rm $fs/usr/share/lxpanel/images/$i |
pankso@3093 | 44 done |
pankso@3808 | 45 |
pankso@3093 | 46 # Custom images to match SliTaz theme. |
pankso@3093 | 47 cp -a stuff/images/* $fs/usr/share/lxpanel/images |
pankso@3808 | 48 |
pankso@799 | 49 # Remove plugins --> lxpanel-extra |
pankso@799 | 50 rm $fs/usr/lib/lxpanel/plugins/kbled.so |
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@771 | 64 desktopbox logout & |
pankso@771 | 65 exit 0 |
pankso@610 | 66 EOT |
pascal@2088 | 67 chmod +x $fs/usr/bin/lxsession-logout |
pankso@610 | 68 } |