From 5fe8a80ba9979d75f02426d1153932c77087f7c3 Mon Sep 17 00:00:00 2001 From: David Hashe Date: Wed, 15 Jul 2015 01:06:53 -0500 Subject: [PATCH] gnu: Add eog. * gnu/packages/gnome.scm (eog): New variable. --- gnu/packages/gnome.scm | 51 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 879c27e..be342e3 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -61,6 +61,7 @@ #:use-module (gnu packages lua) #:use-module (gnu packages image) #:use-module (gnu packages perl) + #:use-module (gnu packages photo) #:use-module (gnu packages pkg-config) #:use-module (gnu packages pulseaudio) #:use-module (gnu packages python) @@ -3001,3 +3002,53 @@ which can read a large number of file formats.") (description "Rhythmbox is a music playing application for GNOME. It supports playlists, song ratings, and any codecs installed through gstreamer.") (license license:gpl2+))) + +(define-public eog + (package + (name "eog") + (version "3.16.2") + (source (origin + (method url-fetch) + (uri (string-append "mirror://gnome/sources/" name "/" + (version-major+minor version) "/" + name "-" version ".tar.xz")) + (sha256 + (base32 + "0frw1b5jix9pffznav5s7ajjx91a8rv5lf4sjvjv3fw65mbnhbw0")))) + (build-system glib-or-gtk-build-system) + (arguments + `(#:phases + (modify-phases %standard-phases + (add-after + 'install 'wrap-eog + (lambda* (#:key inputs outputs #:allow-other-keys) + (let ((out (assoc-ref outputs "out")) + (gi-typelib-path (getenv "GI_TYPELIB_PATH"))) + (wrap-program (string-append out "/bin/eog") + `("GI_TYPELIB_PATH" ":" prefix (,gi-typelib-path)))) + #t))))) + (propagated-inputs + `(("dconf" ,dconf))) + (native-inputs + `(("intltool" ,intltool) + ("glib" ,glib "bin") + ("gobject-introspection" ,gobject-introspection) + ("pkg-config" ,pkg-config))) + (inputs + `(("gnome-desktop" ,gnome-desktop) + ("shared-mime-info" ,shared-mime-info) + ("itstool" ,itstool) + ("adwaita-icon-theme" ,adwaita-icon-theme) + ("exempi" ,exempi) + ("lcms" ,lcms) + ("libexif" ,libexif) + ("libpeas" ,libpeas) + ("libjpeg" ,libjpeg) + ("librsvg" ,librsvg) + ("gsettings-desktop-schemas" ,gsettings-desktop-schemas) + ("gtk+" ,gtk+))) + (home-page "https://wiki.gnome.org/Apps/EyeOfGnome") + (synopsis "Eye of GNOME is the GNOME image viewer") + (description "Eye of GNOME is the GNOME image viewer. It +supports image conversion, rotation, and slideshows.") + (license license:gpl2+))) -- 1.9.1