# HG changeset patch # User Aleksej Bobylev # Date 1350868653 0 # Node ID f74d61b2ef8099e462a1e92445087b2d4af0788d # Parent 8a7436329750a230b8b6c58cee985c71b4d5a007 gnome-vfs: repaired (from unwork state); added gnome-vfs-i18n (optional lang files) diff -r 8a7436329750 -r f74d61b2ef80 gnome-vfs-i18n/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/gnome-vfs-i18n/receipt Mon Oct 22 01:17:33 2012 +0000 @@ -0,0 +1,17 @@ +# SliTaz package receipt. + +PACKAGE="gnome-vfs-i18n" +VERSION="2.24.4" +CATEGORY="development" +SHORT_DESC="Language files for the GNOME Virtual File System libraries" +MAINTAINER="al.bobylev@gmail.com" +DEPENDS="gnome-vfs" +WEB_SITE="http://www.gnome.org" +WANTED="gnome-vfs" + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/share/locale + cp -a $_pkg/usr/share/locale/* $fs/usr/share/locale +} diff -r 8a7436329750 -r f74d61b2ef80 gnome-vfs/receipt --- a/gnome-vfs/receipt Sun Oct 21 15:39:49 2012 +0200 +++ b/gnome-vfs/receipt Mon Oct 22 01:17:33 2012 +0000 @@ -5,11 +5,11 @@ CATEGORY="x-window" SHORT_DESC="The GNOME Virtual File System libraries" MAINTAINER="erjo@slitaz.org" -DEPENDS="dbus-glib GConf gnome-mime-data" +DEPENDS="dbus dbus-glib GConf glib glibc-base libffi libgio libxml2 ORBit2 zlib" BUILD_DEPENDS="gtk+-dev dbus-glib-dev GConf-dev bzip2-dev gnome-mime-data libxml2-dev zlib-dev intltool pkg-config" TARBALL="$PACKAGE-$VERSION.tar.bz2" WEB_SITE="http://www.gnome.org" -WGET_URL="http://ftp.gnome.org/pub/gnome/sources/$PACKAGE/${VERSION%.*}/$TARBALL" +WGET_URL="$GNOME_MIRROR/$PACKAGE/${VERSION%.*}/$TARBALL" # Rules to configure and make the package. compile_rules() @@ -19,6 +19,7 @@ --prefix=/usr \ --sysconfdir=/etc/gnome \ --libexecdir=/usr/lib/gnome-vfs-2.0 \ + --disable-schemas-install \ $CONFIGURE_ARGS && make && make DESTDIR=$PWD/_pkg install } @@ -28,12 +29,12 @@ { mkdir -p $fs/usr/share $fs/usr/lib cp -a $_pkg/usr/bin $fs/usr - cp -a $_pkg/usr/share/dbus* $fs/usr/share cp -a $_pkg/usr/lib/*.so* $fs/usr/lib cp -a $_pkg/usr/lib/gnome-vfs* $fs/usr/lib - + cp -a $_pkg/usr/share/dbus* $fs/usr/share + cp -a $_pkg/etc /$fs + # Clean unwated files cd $fs/usr/lib/gnome-vfs-2.0 ; find . -name "*.*a" -exec rm -f {} \; - - # Stripping all + rm -rf ./include }