wok view xfce4-session/receipt @ rev 10594

python-pylons, python-routes: update bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu May 26 12:34:15 2011 +0200 (2011-05-26)
parents 0874004b631d
children 73641efed1cc
line source
1 # SliTaz package receipt.
3 PACKAGE="xfce4-session"
4 VERSION="4.8.1"
5 CATEGORY="x-window"
6 SHORT_DESC="Xfce session manager"
7 MAINTAINER="erjo@slitaz.org"
8 DEPENDS="libxfce4util libxfce4ui libwnck dbus-glib libglade xorg-iceauth"
9 SUGGESTED="perl-xml-parser"
10 BUILD_DEPENDS="libxfce4util-dev libxfce4ui-dev xfconf-dev libglade-dev dbus-dev \
11 dbus-glib-dev xorg-iceauth libwnck-dev pkg-config intltool util-linux-ng-uuid-dev"
12 TARBALL="$PACKAGE-$VERSION.tar.bz2"
13 WEB_SITE="http://www.xfce.org/"
14 WGET_URL="http://archive.xfce.org/src/xfce/$PACKAGE/${VERSION%.*}/$TARBALL"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure --prefix=/usr \
21 --sysconfdir=/etc \
22 --enable-panel-plugin \
23 --disable-gnome \
24 --disable-debug \
25 --libexecdir=/usr/lib/$PACKAGE \
26 --mandir=/usr/share/man $CONFIGURE_ARGS && \
27 make && make DESTDIR=$PWD/_pkg install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr/lib \
34 $fs/usr/share/locale \
35 $fs/sbin
37 cp -a $_pkg/etc $fs/
38 cp -a $_pkg/usr/bin $fs/usr
39 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
40 cp -a $_pkg/usr/lib/xfce4 $fs/usr/lib
41 cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale
42 cp -a $_pkg/usr/share/applications $fs/usr/share
43 cp -a $_pkg/usr/share/icons $fs/usr/share
44 cp -a $_pkg/usr/share/themes $fs/usr/share
45 #cp -a $_pkg/usr/share/xfce4 $fs/usr/share
47 # xfce4-session-logout workarround
48 cp stuff/shutdown $fs/sbin
50 # strip all files
51 #strip -s $fs/usr/lib/$PACKAGE/xf*
53 # remove autostartfile
54 rm -f $fs/etc/xdg/autostart/*
56 # Remove unecessary files
57 find $fs/ -name "*.*a" -exec rm -f {} \;
59 # Remove SVG icons
60 rm -rf $fs/usr/share/icons/hicolor/scalable
61 }