wok diff libxfce4ui/receipt @ rev 14130

move xfconf to libxfconf (xfce itself use this name), recook libxfce4ui (depend on libxfconf)
author Aleksej Bobylev <al.bobylev@gmail.com>
date Thu Feb 28 10:46:10 2013 +0000 (2013-02-28)
parents 73641efed1cc
children 6eff489aa802
line diff
     1.1 --- a/libxfce4ui/receipt	Mon Apr 23 16:30:27 2012 +0200
     1.2 +++ b/libxfce4ui/receipt	Thu Feb 28 10:46:10 2013 +0000
     1.3 @@ -9,30 +9,27 @@
     1.4  WEB_SITE="http://www.xfce.org"
     1.5  WGET_URL="http://archive.xfce.org/xfce/${VERSION%.*}/src/$TARBALL"
     1.6  
     1.7 -DEPENDS="gtk+ libxfce4util xfconf startup-notification dbus-glib libglade \
     1.8 +DEPENDS="gtk+ libxfce4util libxfconf startup-notification dbus-glib libglade \
     1.9  util-linux-uuid"
    1.10 -BUILD_DEPENDS="gtk+-dev libxfce4util-dev xfconf-dev startup-notification-dev 
    1.11 -libglade-dev xcb-util-dev util-linux-uuid-dev intltool"
    1.12 +BUILD_DEPENDS="gtk+-dev libxfce4util-dev libxfconf-dev \
    1.13 +startup-notification-dev libglade-dev xcb-util-dev util-linux-uuid-dev intltool"
    1.14  
    1.15  # Rules to configure and make the package.
    1.16  compile_rules()
    1.17  {
    1.18 -	cd $src
    1.19 -	./configure --prefix=/usr \
    1.20 +	./configure \
    1.21  		--sysconfdir=/etc \
    1.22 -		--disable-debug $CONFIGURE_ARGS &&
    1.23 +		--disable-debug \
    1.24 +		$CONFIGURE_ARGS &&
    1.25  	make &&
    1.26 -	make DESTDIR=$DESTDIR install
    1.27 +	make DESTDIR=$install install
    1.28  }
    1.29  
    1.30  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.31  genpkg_rules()
    1.32  {
    1.33 -	mkdir -p $fs/usr/lib \
    1.34 -		$fs/usr/share/locale 
    1.35 -		
    1.36 -	cp -a $_pkg/etc $fs/
    1.37 -	cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
    1.38 -	cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale
    1.39 +	mkdir -p $fs/usr/lib
    1.40 +	cp -a $install/etc $fs/
    1.41 +	cp -a $install/usr/lib/*.so* $fs/usr/lib
    1.42  }
    1.43