# HG changeset patch # User Hans-G?nter Theisgen # Date 1682432180 -3600 # Node ID 74177c622f68a541d970ad6d4bc7de94e868bbdb # Parent a1831cb3e8736d6d5bf840e986a9a1401f647baf updated xfce4-ristretto 0.6.3 -> 0.8.5 diff -r a1831cb3e873 -r 74177c622f68 xfce4-ristretto-lang/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/xfce4-ristretto-lang/receipt Tue Apr 25 15:16:20 2023 +0100 @@ -0,0 +1,17 @@ +# SliTaz package receipt. + +PACKAGE="xfce4-ristretto-lang" +VERSION="0.8.5" +CATEGORY="localization" +SHORT_DESC="Picture-viewer for Xfce - localised messages." +MAINTAINER="maintainer@slitaz.org" +LICENSE="GPL2" +WEB_SITE="https://docs.xfce.org/apps/ristretto/start" + +WANTED="xfce4-ristretto" + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + cook_copy_folders locale +} diff -r a1831cb3e873 -r 74177c622f68 xfce4-ristretto/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/xfce4-ristretto/description.txt Tue Apr 25 15:16:20 2023 +0100 @@ -0,0 +1,16 @@ +The Ristretto Image Viewer is an application +that can be used to view, and scroll through images. +It can be used to run a slideshow of images, +open images with other applications like an image-editor +or configure an image as the desktop wallpaper. + +The image types supported by Ristretto are those +supported by the gdk-pixbuf library. +This library itself supports a number of basic image types +(JPEG, PNG, TIFF, etc.), but then relies on optional +libraries to extend the range of supported image types. +This means that you will have to install these libraries +yourself to extend the range of image types supported by +Ristretto. +Examples: libwmf, libopenraw, libavif, libheif, libjxl, +librsvg, webp-pixbuf-loader. diff -r a1831cb3e873 -r 74177c622f68 xfce4-ristretto/receipt --- a/xfce4-ristretto/receipt Mon Apr 24 09:03:56 2023 +0000 +++ b/xfce4-ristretto/receipt Tue Apr 25 15:16:20 2023 +0100 @@ -1,19 +1,22 @@ # SliTaz package receipt. PACKAGE="xfce4-ristretto" -VERSION="0.6.3" +VERSION="0.8.5" CATEGORY="x-window" -SHORT_DESC="Picture-viewer for Xfce" +TAGS="image viewer" +SHORT_DESC="Picture-viewer for Xfce." MAINTAINER="erjo@slitaz.org" LICENSE="GPL2" +WEB_SITE="https://docs.xfce.org/apps/ristretto/start" + SOURCE="ristretto" TARBALL="$SOURCE-$VERSION.tar.bz2" -WEB_SITE="https://goodies.xfce.org/projects/applications/ristretto" WGET_URL="https://archive.xfce.org/src/apps/$SOURCE/${VERSION%.*}/$TARBALL" -DEPENDS="libxfce4util libxfce4ui libexif dbus-glib thunar gamin xfconf" -BUILD_DEPENDS="xfce4-dev-tools intltool libexif-dev dbus-glib-dev libxfce4util-dev \ - libxfce4ui-dev xfconf-dev" +SUGGESTED="tumbler" # to show previews in thumbnail bar +DEPENDS="dbus-glib libexif libxfce4ui libxfce4util xfconf" +BUILD_DEPENDS="dbus-glib-dev intltool libexif-dev libxfce4ui-dev + libxfce4util-dev xfconf-dev" # What is the latest version available today? current_version() @@ -26,27 +29,27 @@ # Rules to configure and make the package. compile_rules() { - cd $src - ./configure && make && make install + ./configure && + make && + make install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr \ - $fs/usr/share/icons/hicolor \ - $fs/usr/share/pixmaps - - cp -a $install/usr/bin $fs/usr - cp -a $install/usr/share/icons/hicolor/16* $fs/usr/share/icons/hicolor - cp -a $install/usr/share/icons/hicolor/48* $fs/usr/share/icons/hicolor - ln -s /usr/share/icons/hicolor/48x48/apps/$SOURCE.png $fs/usr/share/pixmaps/$SOURCE.png + mkdir -p $fs/usr/share/icons/hicolor + mkdir -p $fs/usr/share/pixmaps + + cp -a $install/usr/bin $fs/usr + cp -a $install/usr/share/icons/hicolor/16* $fs/usr/share/icons/hicolor + cp -a $install/usr/share/icons/hicolor/48* $fs/usr/share/icons/hicolor + ln -s /usr/share/icons/hicolor/48x48/apps/$SOURCE.png \ + $fs/usr/share/pixmaps/$SOURCE.png } post_install() { echo - echo "Execute post-install command" + echo "Executing post-install command" gtk-update-icon-cache -f -t -q "$1/usr/share/icons/hicolor" } -