# HG changeset patch # User Eric Joseph-Alexandre # Date 1295486263 -3600 # Node ID 44c18298eb0f7d6b0eaeadb4c863acc4be891f0d # Parent de72b34f5fa078c9183da5cbd778435222aa564d up: xfconf* (4.8.0) diff -r de72b34f5fa0 -r 44c18298eb0f xfconf-dev/receipt --- a/xfconf-dev/receipt Thu Jan 20 02:17:18 2011 +0100 +++ b/xfconf-dev/receipt Thu Jan 20 02:17:43 2011 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="xfconf-dev" -VERSION="4.6.2" +VERSION="4.8.0" CATEGORY="development" SHORT_DESC="Xfce Copnfiguration Utility dev files" MAINTAINER="erjo@slitaz.org" diff -r de72b34f5fa0 -r 44c18298eb0f xfconf/receipt --- a/xfconf/receipt Thu Jan 20 02:17:18 2011 +0100 +++ b/xfconf/receipt Thu Jan 20 02:17:43 2011 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="xfconf" -VERSION="4.6.2" +VERSION="4.8.0" CATEGORY="x-window" SHORT_DESC="Xfce Copnfiguration Utility" MAINTAINER="erjo@slitaz.org" @@ -9,20 +9,21 @@ BUILD_DEPENDS="gtk+-dev libxfce4util-dev dbus-dev dbus-glib-dev" TARBALL="$PACKAGE-$VERSION.tar.bz2" WEB_SITE="http://www.xfce.org" -WGET_URL="http://www.p0llux.be/xfce/xfce-$VERSION/src/$TARBALL - http://www.tx-us.xfce.org/archive/xfce-$VERSION/src/$TARBALL" +WGET_URL="http://archive.xfce.org/xfce/${VERSION%.*}/src/$TARBALL" # Rules to configure and make the package. compile_rules() { cd $src ./configure --prefix=/usr \ + --libexecdir=/usr/lib/$PACKAGE \ --infodir=/usr/share/info \ - --libexecdir=/usr/lib/$PACKAGE \ + --disable-debug \ --mandir=/usr/share/man $CONFIGURE_ARGS && \ make && make DESTDIR=$PWD/_pkg install } + # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { @@ -33,9 +34,9 @@ cp -a $_pkg/usr/bin $fs/usr cp -a $_pkg/usr/lib/*.so* $fs/usr/lib - cp -a $_pkg/usr/lib/$PACKAGE $fs/usr/lib + cp -a $_pkg/usr/lib/xfce4 $fs/usr/lib cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale cp -a $_pkg/usr/share/dbus-1 $fs/usr/share - strip -s $fs/usr/lib/$PACKAGE/* + strip -s $fs/usr/lib/xfce4/$PACKAGE/* }