wok view lxpanel/receipt @ rev 3715

Add: libftdi
author Matthew Sheets <rcx@zoominternet.net>
date Tue Jul 21 11:47:16 2009 +0000 (2009-07-21)
parents ee420562a299
children e80aeb98eb5d
line source
1 # SliTaz package receipt.
3 PACKAGE="lxpanel"
4 VERSION="0.4.1"
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 lxmenu-data 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="gtk+-dev gettext expat-dev intltool menu-cache-dev menu-cache \
12 alsa-lib-dev wireless_tools-dev wireless_tools"
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 ./configure \
23 --prefix=/usr \
24 --sysconfdir=/etc \
25 --enable-libiw \
26 --with-plugins=all \
27 $CONFIGURE_ARGS &&
28 make &&
29 make DESTDIR=$PWD/_pkg install
30 }
32 # Rules to gen a SliTaz package suitable for Tazpkg.
33 genpkg_rules()
34 {
35 mkdir -p $fs/usr/share
36 cp -a $_pkg/usr/bin $fs/usr
37 cp -a $_pkg/usr/lib $fs/usr
38 cp -a $_pkg/usr/share/lxpanel $fs/usr/share
40 # Remove a few "heavy" and unuseful images (ns* goes in extra)
41 for i in file-manager* stock_volume* gnome-[a-m]*.png \
42 gnome-netstatus-[d-t]*.png gnome-[o-z]*.png my-* \
43 ns-*.png *lock-*.png
44 do
45 rm $fs/usr/share/lxpanel/images/$i
46 done
48 # Custom images to match SliTaz theme.
49 cp -a stuff/images/* $fs/usr/share/lxpanel/images
51 # Remove plugins --> lxpanel-extra
52 rm $fs/usr/lib/lxpanel/plugins/netstat.so
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 }