wok view xfce4-session/receipt @ rev 4825

Add: distcc, distributed CC.
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Thu Jan 21 00:26:43 2010 +0100 (2010-01-21)
parents f165fed5166c
children 413b0174114a
line source
1 # SliTaz package receipt.
3 PACKAGE="xfce4-session"
4 VERSION="4.6.1"
5 CATEGORY="x-window"
6 SHORT_DESC="Xfce session manager"
7 MAINTAINER="erjo@slitaz.org"
8 DEPENDS="libxfce4util libxfcegui4 libwnck perl-xml-parser xorg-iceauth"
9 BUILD_DEPENDS="libxfce4util-dev libxfcegui4-dev libwnck-dev xorg-iceauth"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WEB_SITE="http://www.xfce.org/"
12 WGET_URL="$WEB_SITE/archive/xfce/$VERSION/src/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure --prefix=/usr \
19 --sysconfdir=/etc \
20 --enable-dbus \
21 --enable-final \
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/$PACKAGE $fs/usr/lib
39 cp -a $_pkg/usr/lib $fs/usr
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 {} \;
57 rm -rf $fs/usr/lib/pkgconfig
58 # Remove SVG icons
59 rm -rf $fs/usr/share/icons/hicolor/scalable
60 }