Package Details: geeqie-git 2.1.r260.gf1c1ccb9-1

Git Clone URL: https://aur.archlinux.org/geeqie-git.git (read-only, click to copy)
Package Base: geeqie-git
Description: Lightweight image viewer
Upstream URL: https://github.com/BestImageViewer/geeqie
Licenses: GPL-2.0-or-later
Conflicts: geeqie
Provides: geeqie
Submitter: Zuf
Maintainer: xiota
Last Packager: xiota
Votes: 43
Popularity: 0.000000
First Submitted: 2012-01-06 16:19 (UTC)
Last Updated: 2024-01-20 08:08 (UTC)

Pinned Comments

xiota commented on 2024-01-21 00:40 (UTC) (edited on 2024-01-21 00:42 (UTC) by xiota)

webp is currently broken. To view webp, or any other unsupported format, enable: Preferences / Advanced / Use external preview extraction.

Create and add the following scripts:

geeqie-identify.sh

#!/usr/bin/env bash

filename=$(basename -- "$1")
extension="${filename##*.}"

case "$extension" in
  webp)
    exit 0
    ;;

  *)
    exit 1
    ;;
esac

geeqie-decode.sh

#!/usr/bin/env bash

filename=$(basename -- "$1")
extension="${filename##*.}"

output=$(mktemp --tmpdir geeqie_djxl_XXXXXX.jpg)

case "$extension" in
  webp)
    convert "$1" "$output"
    mv "$output" "$2"
    ;;
esac

Latest Comments

« First ‹ Previous 1 2 3 4 5 Next › Last »

stevenhoneyman commented on 2015-07-13 16:50 (UTC)

Updated source URL, thanks. Those namcap 'errors' aren't errors. There's no reason to assume someone has/needs 'desktop-file-utils' and wants their mime types messing with.

Alad commented on 2015-07-13 07:20 (UTC)

Also, namcap output: geeqie-git E: Mime type handler found. Add "update-desktop-database -q" to the install file geeqie-git E: Dependency desktop-file-utils detected and not included (needed for update-desktop-database) geeqie-git W: Dependency lcms2 included but already satisfied

Alad commented on 2015-07-13 07:15 (UTC)

New URL: http://www.geeqie.org/git/geeqie.git/

Alad commented on 2015-07-13 07:14 (UTC)

==> Retrieving sources... -> Cloning geeqie git repo... Cloning into bare repository '/home/think/makepkg/sources/geeqie'... fatal: unable to connect to gitorious.org: gitorious.org[0: 109.107.38.78]: errno=No route to host gitorious.org[1: 2a02:c0:1014::1]: errno=Network is unreachable

Alister.Hood commented on 2014-12-15 22:47 (UTC)

Users can still build a GTK2 version by passing --disable-gtk3 to configure.

stevenhoneyman commented on 2014-06-28 18:49 (UTC)

Adopted + Updated. Please let me know in the comments if the documentation bug still occurs (that was from 2 years ago so I hope it's fixed!)

stevenhoneyman commented on 2014-06-18 18:36 (UTC)

Please can you update this PKGBUILD to use the inbuilt VCS sources system? https://wiki.archlinux.org/index.php/VCS_PKGBUILD_Guidelines#VCS_sources If you don't want to/don't use this software anymore - I'm willing to maintain this package, just let me know :) Thanks, Steven

pezcurrel commented on 2012-08-14 16:44 (UTC)

Now the fix for... /usr/bin/install: cannot create regular file ‘/tmp/yaourt-tmp-myuser/aur-geeqie-git/pkg/usr/share/doc/geeqie-1.0/html/AdvancedFeatures.html’: No such file or directory ...is to add... install -d -m755 "$pkgdir"/usr/share/doc/geeqie-1.1/html ...just befere the "make install" line ("1.1" instead of "1.0"). Also, I think it would be good to enable lirc support by adding "--enable-lirc" at the end of "./autogen.sh" and "./configure" lines, and changing the "optdepends" line to something like... optdepends=('librsvg: SVG rendering' 'lirc-utils: install lirc-utils and reinstall geeqie-git to enable linux infrared remote control support') This way if it finds lirc installed it enables it, otherwise it silently ignores it.

stativ commented on 2012-06-28 16:47 (UTC)

The fix is pretty simple – add the following line into the package() function just before the "make install": install -d -m755 "$pkgdir"/usr/share/doc/geeqie-1.0/html

Zuf commented on 2012-06-26 07:23 (UTC)

I know about this issue. The geeqie binary was built successfully. But error with doc installations.