wok-next annotate xfce4-session/receipt @ rev 4690
Up: awstats (6.95)
author | Eric Joseph-Alexandre <erjo@slitaz.org> |
---|---|
date | Thu Dec 31 00:04:35 2009 +0100 (2009-12-31) |
parents | f165fed5166c |
children | 413b0174114a |
rev | line source |
---|---|
erjo@2073 | 1 # SliTaz package receipt. |
erjo@2073 | 2 |
erjo@2073 | 3 PACKAGE="xfce4-session" |
erjo@4130 | 4 VERSION="4.6.1" |
erjo@2073 | 5 CATEGORY="x-window" |
erjo@2073 | 6 SHORT_DESC="Xfce session manager" |
erjo@2073 | 7 MAINTAINER="erjo@slitaz.org" |
erjo@4130 | 8 DEPENDS="libxfce4util libxfcegui4 libwnck perl-xml-parser xorg-iceauth" |
pascal@4232 | 9 BUILD_DEPENDS="libxfce4util-dev libxfcegui4-dev libwnck-dev xorg-iceauth" |
erjo@2073 | 10 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
erjo@2073 | 11 WEB_SITE="http://www.xfce.org/" |
pascal@4214 | 12 WGET_URL="$WEB_SITE/archive/xfce/$VERSION/src/$TARBALL" |
erjo@2073 | 13 |
erjo@2073 | 14 # Rules to configure and make the package. |
erjo@2073 | 15 compile_rules() |
erjo@2073 | 16 { |
erjo@2073 | 17 cd $src |
erjo@2073 | 18 ./configure --prefix=/usr \ |
erjo@2073 | 19 --sysconfdir=/etc \ |
erjo@2073 | 20 --enable-dbus \ |
erjo@2073 | 21 --enable-final \ |
erjo@2073 | 22 --disable-gnome \ |
erjo@4130 | 23 --disable-debug \ |
pascal@4232 | 24 --libexecdir=/usr/lib/$PACKAGE \ |
erjo@2073 | 25 --mandir=/usr/share/man $CONFIGURE_ARGS && \ |
erjo@2073 | 26 make && make DESTDIR=$PWD/_pkg install |
erjo@2073 | 27 } |
erjo@2073 | 28 |
erjo@2073 | 29 # Rules to gen a SliTaz package suitable for Tazpkg. |
erjo@2073 | 30 genpkg_rules() |
erjo@2073 | 31 { |
pascal@4232 | 32 mkdir -p $fs/usr/lib \ |
erjo@2073 | 33 $fs/usr/share/locale \ |
erjo@4183 | 34 $fs/sbin |
erjo@4183 | 35 |
erjo@2073 | 36 cp -a $_pkg/etc $fs/ |
erjo@2073 | 37 cp -a $_pkg/usr/bin $fs/usr |
pascal@4232 | 38 cp -a $_pkg/usr/lib/$PACKAGE $fs/usr/lib |
erjo@2073 | 39 cp -a $_pkg/usr/lib $fs/usr |
erjo@2073 | 40 cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale |
erjo@2073 | 41 cp -a $_pkg/usr/share/applications $fs/usr/share |
erjo@2073 | 42 cp -a $_pkg/usr/share/icons $fs/usr/share |
erjo@2073 | 43 cp -a $_pkg/usr/share/themes $fs/usr/share |
erjo@4183 | 44 #cp -a $_pkg/usr/share/xfce4 $fs/usr/share |
erjo@4183 | 45 |
erjo@4183 | 46 # xfce4-session-logout workarround |
erjo@4183 | 47 cp stuff/shutdown $fs/sbin |
erjo@4130 | 48 |
erjo@4130 | 49 # strip all files |
pascal@4232 | 50 strip -s $fs/usr/lib/$PACKAGE/xf* |
erjo@4130 | 51 |
erjo@4130 | 52 # remove autostartfile |
erjo@4130 | 53 rm -f $fs/etc/xdg/autostart/* |
erjo@2073 | 54 |
erjo@2073 | 55 # Remove unecessary files |
erjo@2073 | 56 find $fs/ -name "*.*a" -exec rm -f {} \; |
erjo@2073 | 57 rm -rf $fs/usr/lib/pkgconfig |
erjo@2073 | 58 # Remove SVG icons |
erjo@2073 | 59 rm -rf $fs/usr/share/icons/hicolor/scalable |
erjo@2073 | 60 } |
erjo@2073 | 61 |