wok-current view xfce4-settings/receipt @ rev 8031

Fix: patch xine-lib to make it compilable with last tools
author Antoine Bodin <gokhlayeh@slitaz.org>
date Thu Jan 20 02:21:06 2011 +0100 (2011-01-20)
parents 93655ce0280d
children c5b3cfecea6f
line source
1 # SliTaz package receipt.
3 PACKAGE="xfce4-settings"
4 VERSION="4.8.0"
5 CATEGORY="x-window"
6 SHORT_DESC="Xfce Settings Manager"
7 MAINTAINER="erjo@slitaz.org"
8 DEPENDS="libxfce4util libxfce4ui libexo xfconf libglade dbus-glib xorg-libXi \
9 xorg-libXrandr libnotify libwnck"
10 BUILD_DEPENDS="libxfce4util-dev libxfce4ui-dev libexo-dev xfconf-dev libglade-dev
11 dbus-glib-dev xorg-libXi-dev xorg-libXrandr-dev xorg-inputproto libnotify-dev"
12 TARBALL="$PACKAGE-$VERSION.tar.bz2"
13 WEB_SITE="http://www.xfce.org/"
14 WGET_URL="http://archive.xfce.org/xfce/${VERSION%.*}/src/$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-xcursor \
23 --enable-libnotify \
24 --enable-xrandr \
25 --enable-libxklavier \
26 --enable-sound-settings \
27 --enable-debug=no \
28 --mandir=/usr/share/man $CONFIGURE_ARGS && \
29 make && 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 \
36 $fs/usr/share/locale
38 cp -a $_pkg/etc $fs/
39 cp -a $_pkg/usr/bin $fs/usr
40 cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale
41 cp -a $_pkg/usr/share/applications $fs/usr/share
43 if [ -f $fs/etc/xdg/xfce4/xfconf/xfce-perchannel-xml/xsettings.xml ]; then
44 sed -i 's/Xfce/Clearlooks/' $fs/etc/xdg/xfce4/xfconf/xfce-perchannel-xml/xsettings.xml
45 sed -i 's/Rodent/Tango/' $fs/etc/xdg/xfce4/xfconf/xfce-perchannel-xml/xsettings.xml
46 fi
48 }