From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:54007) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jGgsl-0003AU-Ly for guix-patches@gnu.org; Tue, 24 Mar 2020 06:34:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jGgsk-0004zz-Gi for guix-patches@gnu.org; Tue, 24 Mar 2020 06:34:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:47964) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1jGgsk-0004zv-Cu for guix-patches@gnu.org; Tue, 24 Mar 2020 06:34:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1jGgsk-0003Hu-A7 for guix-patches@gnu.org; Tue, 24 Mar 2020 06:34:02 -0400 Subject: [bug#40209] [PATCH] gnu: qiv: Add new pkg qiv an image viewer for X References: <20200324093627.GB3208@tulip> In-Reply-To: <20200324093627.GB3208@tulip> Resent-Message-ID: Date: Tue, 24 Mar 2020 16:03:16 +0530 From: R Veera Kumar Message-ID: <20200324103316.GA3324@tulip> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 40209@debbugs.gnu.org Add qiv an image viewer for X. Signed-off-by: R Veera Kumar --- gnu/packages/qiv.scm | 53 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 gnu/packages/qiv.scm diff --git a/gnu/packages/qiv.scm b/gnu/packages/qiv.scm new file mode 100644 index 0000000000..76b3c5702c --- /dev/null +++ b/gnu/packages/qiv.scm @@ -0,0 +1,53 @@ +(define-module (gnu packages qiv) + #:use-module ((guix licenses) #:prefix license:) + #:use-module (guix packages) + #:use-module (guix download) + #:use-module (guix build-system gnu) + #:use-module (gnu packages) + #:use-module (gnu packages image) + #:use-module (gnu packages glib) + #:use-module (gnu packages gtk) + #:use-module (gnu packages photo) + #:use-module (gnu packages pkg-config)) + + +(define-public qiv + (package + (name "qiv") + (version "2.3.1") + (source + (origin + (method url-fetch) + (uri (string-append "http://spiegl.de/qiv/download/qiv-" + version ".tgz")) + (sha256 + (base32 "1rlf5h67vhj7n1y7jqkm9k115nfnzpwngj3kzqsi2lg676srclv7")))) + (build-system gnu-build-system) + (native-inputs + `(("pkg-config" ,pkg-config))) + (inputs + `(("imlib2" ,imlib2) + ("glib" ,glib) + ("gtk+" ,gtk+-2) + ("libtiff" ,libtiff) + ("libexif" ,libexif) + ("libpng" ,libpng))) + (arguments + `(#:phases + (modify-phases %standard-phases + (delete `configure)) + #:tests? #f + #:make-flags + (list + "CC=gcc" + "LCMS=" + (string-append "PREFIX=" (assoc-ref %outputs "out"))))) + (home-page "http://spiegl.de/qiv/") + (synopsis "Graphical image viewer for X") + (description + "Quick Image Viewer is a very small and fast GDK/Imlib image viewer. +Features include zoom, maxpect, scale down, fullscreen, brightness/contrast/ +gamma correction, slideshow, pan with keyboard and mouse, rotate left/right, +flip, delete, jump/forward/backward images, filename filter and use it to +set X desktop background.") + (license license:gpl2))) -- 2.25.1