# HG changeset patch # User Pascal Bellard # Date 1350984487 -7200 # Node ID e36a9f8bbcfcd1a1bea89a592c7e68bb642f8bcc # Parent 550ed61929fc79a8fc18d3856466af2a9f3ee5ec gnome-vfs: repaired (from unwork state); added gnome-vfs-i18n (optional lang files) diff -r 550ed61929fc -r e36a9f8bbcfc gnome-vfs-i18n/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/gnome-vfs-i18n/receipt Tue Oct 23 11:28:07 2012 +0200 @@ -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 $install/usr/share/locale/* $fs/usr/share/locale +} diff -r 550ed61929fc -r e36a9f8bbcfc gnome-vfs/receipt --- a/gnome-vfs/receipt Tue Oct 23 11:16:24 2012 +0200 +++ b/gnome-vfs/receipt Tue Oct 23 11:28:07 2012 +0200 @@ -5,11 +5,14 @@ CATEGORY="x-window" SHORT_DESC="The GNOME Virtual File System libraries" MAINTAINER="erjo@slitaz.org" -DEPENDS="dbus-glib GConf gnome-mime-data" -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" + +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" # Rules to configure and make the package. compile_rules() @@ -19,21 +22,22 @@ --prefix=/usr \ --sysconfdir=/etc/gnome \ --libexecdir=/usr/lib/gnome-vfs-2.0 \ + --disable-schemas-install \ $CONFIGURE_ARGS && - make && make DESTDIR=$PWD/_pkg install + make && make DESTDIR=$DESTDIR install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { 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 $install/usr/bin $fs/usr + cp -a $install/usr/lib/*.so* $fs/usr/lib + cp -a $install/usr/lib/gnome-vfs* $fs/usr/lib + cp -a $install/usr/share/dbus* $fs/usr/share + cp -a $install/etc /$fs + # Clean unwated files cd $fs/usr/lib/gnome-vfs-2.0 ; find . -name "*.*a" -exec rm -f {} \; - - # Stripping all + rm -rf ./include }