wok view xfce4-session/receipt @ rev 8029

Add all xorg changes from wok-experimental.
author Christopher Rogers <slaxemulator@gmail.com>
date Wed Jan 19 19:41:12 2011 +0000 (2011-01-19)
parents 3d8b6b59159f
children 0874004b631d
line source
1 # SliTaz package receipt.
3 PACKAGE="xfce4-session"
4 VERSION="4.8.0"
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 dbus-glib-dev xorg-iceauth libwnck-dev pkg-config intltool util-linux-ng-uuid-dev"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WEB_SITE="http://www.xfce.org/"
13 WGET_URL="http://archive.xfce.org/xfce/${VERSION%.*}/src/$TARBALL"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure --prefix=/usr \
20 --sysconfdir=/etc \
21 --enable-panel-plugin \
22 --disable-gnome \
23 --disable-debug \
24 --libexecdir=/usr/lib/$PACKAGE \
25 --mandir=/usr/share/man $CONFIGURE_ARGS && \
26 make && make DESTDIR=$PWD/_pkg install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/lib \
33 $fs/usr/share/locale \
34 $fs/sbin
36 cp -a $_pkg/etc $fs/
37 cp -a $_pkg/usr/bin $fs/usr
38 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
39 cp -a $_pkg/usr/lib/xfce4 $fs/usr/lib
40 cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale
41 cp -a $_pkg/usr/share/applications $fs/usr/share
42 cp -a $_pkg/usr/share/icons $fs/usr/share
43 cp -a $_pkg/usr/share/themes $fs/usr/share
44 #cp -a $_pkg/usr/share/xfce4 $fs/usr/share
46 # xfce4-session-logout workarround
47 cp stuff/shutdown $fs/sbin
49 # strip all files
50 #strip -s $fs/usr/lib/$PACKAGE/xf*
52 # remove autostartfile
53 rm -f $fs/etc/xdg/autostart/*
55 # Remove unecessary files
56 find $fs/ -name "*.*a" -exec rm -f {} \;
58 # Remove SVG icons
59 rm -rf $fs/usr/share/icons/hicolor/scalable
60 }