From mboxrd@z Thu Jan 1 00:00:00 1970 From: contact.ng0@cryptolab.net Subject: [PATCH] gnu: Add evolution. Date: Mon, 30 Jan 2017 22:59:48 +0000 Message-ID: <20170130225948.29641-2-contact.ng0@cryptolab.net> References: <20170130225948.29641-1-contact.ng0@cryptolab.net> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:54850) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cYKuY-0001x0-8S for guix-devel@gnu.org; Mon, 30 Jan 2017 17:59:00 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cYKuU-0000cz-Cm for guix-devel@gnu.org; Mon, 30 Jan 2017 17:58:58 -0500 Received: from aibo.runbox.com ([91.220.196.211]:37388) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1cYKuU-0000co-4a for guix-devel@gnu.org; Mon, 30 Jan 2017 17:58:54 -0500 Received: from [10.9.9.211] (helo=mailfront11.runbox.com) by mailtransmit03.runbox with esmtp (Exim 4.86_2) (envelope-from ) id 1cYKuS-0007Ad-O1 for guix-devel@gnu.org; Mon, 30 Jan 2017 23:58:52 +0100 In-Reply-To: <20170130225948.29641-1-contact.ng0@cryptolab.net> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org Cc: ng0 From: ng0 * gnu/packages/gnome.scm (evolution): New variable. --- gnu/packages/gnome.scm | 92 +++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 91 insertions(+), 1 deletion(-) diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index f6f7aae69..3cc6cbd7a 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -19,7 +19,7 @@ ;;; Copyright © 2016 Roel Janssen ;;; Copyright © 2016 Leo Famulari ;;; Copyright © 2016 Alex Griffin -;;; Copyright © 2016 ng0 +;;; Copyright © 2016, 2017 ng0 ;;; Copyright © 2016 David Craven ;;; Copyright © 2016 Tobias Geerinckx-Rice ;;; @@ -94,6 +94,7 @@ #:use-module (gnu packages perl) #:use-module (gnu packages photo) #:use-module (gnu packages pkg-config) + #:use-module (gnu packages pretty-print) #:use-module (gnu packages pulseaudio) #:use-module (gnu packages python) #:use-module (gnu packages scanner) @@ -5907,3 +5908,92 @@ for process dependencies, icons for processes, the ability to hide processes, graphical time histories of CPU/memory/swap usage and the ability to kill/reinice processes.") (license license:gpl2+))) + +(define-public evolution + (package + (name "evolution") + (version "3.22.4") + (source + (origin + (method url-fetch) + (uri (string-append "mirror://gnome/sources/" name "/" + (version-major+minor version) "/" + name "-" version ".tar.xz")) + (sha256 + (base32 + "02k9bi4d34yns9csxmkdl3gxwmf6lr5zx4yk3w1wjs544bq0j8jj")))) + (build-system glib-or-gtk-build-system) + (arguments + `(#:configure-flags (list "--without-glade-catalog" + "--disable-autoar" + "--disable-code-coverage" + "--disable-installed-tests" + "--disable-pst-import" + "--enable-canberra" + "--enable-openldap" + "--without-spamassasin" + "--with-bogofilter" + "--enable-smime" + "--enable-nss" + "--enable-gtkspell" + "--enable-contact-maps" + "--enable-text-highlight" + ;; "--enable-libcryptui" + "--without-nspr-libs" + "--without-nspr-includes" + "--without-nss-libs" + "--without-nss-includes" + "--enable-nss=yes" + "--enable-weather") + #:tests? #f)) + (inputs + `(("bogofilter" ,bogofilter) + ("highlight" ,highlight) + ;; TODO: ("spamassasin" ,spamassasin) + ("libgweather" ,libgweather) + ("nspr" ,nspr) + ("nss" ,nss) + ("gtkspell3" ,gtkspell3) + ("openldap" ,openldap) + ("libchamplain" ,libchamplain) + ("clutter" ,clutter) + ("clutter-gtk" ,clutter-gtk) + ("geocode-glib" ,geocode-glib) + ;; ("gnupg" ,gnupg) + ;; ("pinentry-gnome3" ,pinentry-gnome3) + ;; TODO: ("libcryptui" ,libcryptui) + ("libice" ,libice) + ("libsm" ,libsm) + ("libical" ,libical) + ("dconf" ,dconf) + ("atk" ,atk) + ("iso-codes" ,iso-codes) + ("shared-mime-info" ,shared-mime-info) + ("libnotify" ,libnotify) + ("gtk+" ,gtk+) + ("gdk-pixbuf" ,gdk-pixbuf) + ("cairo" ,cairo) + ("webkitgtk" ,webkitgtk) + ("libsoup" ,libsoup) + ("libcanberra" ,libcanberra) + ("evolution-data-server" ,evolution-data-server) + ("gsettings-desktop-schemas" ,gsettings-desktop-schemas) + ("gnome-desktop" ,gnome-desktop) + ("libxml2" ,libxml2) + ("glib" ,glib) + ("enchant" ,enchant) + ("gcr" ,gcr))) + (native-inputs + `(("docbook-xml" ,docbook-xml) + ("yelp-tools" ,yelp-tools) + ("gtk-doc" ,gtk-doc) + ("intltool" ,intltool) + ("gnome-common" ,gnome-common) + ("pkg-config" ,pkg-config))) + (home-page "https://wiki.gnome.org/Apps/Evolution") + (synopsis "Integrated email, addressbook and calendaring functionality") + (description + "Evolution is a personal information management application that +provides integrated mail, calendaring and address book functionality.") + (license (list license:lgpl3 license:cc-by-sa3.0 + license:fdl1.3+ license:openldap2.8)))) -- 2.11.0