unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
* GNOME evolution, a start.
@ 2017-01-30 22:59 contact.ng0
  2017-01-30 22:59 ` [PATCH] gnu: Add evolution contact.ng0
  2017-01-31 13:13 ` GNOME evolution, a start ng0
  0 siblings, 2 replies; 3+ messages in thread
From: contact.ng0 @ 2017-01-30 22:59 UTC (permalink / raw)
  To: guix-devel

checking whether to build gtk-doc documentation... no
checking for GTKDOC_DEPS... yes
checking for Win32... no
checking for nl_langinfo... yes
checking for nl_langinfo (_NL_MEASUREMENT_MEASUREMENT)... yes
checking for GNOME_PLATFORM... yes
checking for GNOME_DESKTOP... yes
checking for EVOLUTION_DATA_SERVER... no
configure: error: Package requirements (camel-1.2 >= 3.22.4
         libebook-1.2 >= 3.22.4
         libecal-1.2 >= 3.22.4
         libedataserver-1.2 >= 3.22.4
         libedataserverui-1.2 >= 3.22.4
         libebackend-1.2 >= 3.22.4) were not met:

Requested 'camel-1.2 >= 3.22.4' but version of camel is 3.22.3
Requested 'libebook-1.2 >= 3.22.4' but version of libebook is 3.22.3
Requested 'libecal-1.2 >= 3.22.4' but version of libecal is 3.22.3
Requested 'libedataserver-1.2 >= 3.22.4' but version of libedataserver is 3.22.3
Requested 'libedataserverui-1.2 >= 3.22.4' but version of libedataserverui is 3.22.3
Requested 'libebackend-1.2 >= 3.22.4' but version of libebackend is 3.22.3

Consider adjusting the PKG_CONFIG_PATH environment variable if you
installed software in a non-standard prefix.

Alternatively, you may set the environment variables EVOLUTION_DATA_SERVER_CFLAGS
and EVOLUTION_DATA_SERVER_LIBS to avoid the need to call pkg-config.
See the pkg-config man page for more details.
phase `configure' failed after 3.6 seconds
builder for `/gnu/store/c5cpzyyj936b1fsrpl391psjdw83zh4j-evolution-3.22.4.drv' failed with exit code 1
@ build-failed /gnu/store/c5cpzyyj936b1fsrpl391psjdw83zh4j-evolution-3.22.4.drv
- 1 builder for `/gnu/store/c5cpzyyj936b1fsrpl391psjdw83zh4j-evolution-3.22.4.drv' failed with exit code 1
guix build: error: build failed: build of `/gnu/store/c5cpzyyj936b1fsrpl391psjdw83zh4j-evolution-3.22.4.drv' failed

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [PATCH] gnu: Add evolution.
  2017-01-30 22:59 GNOME evolution, a start contact.ng0
@ 2017-01-30 22:59 ` contact.ng0
  2017-01-31 13:13 ` GNOME evolution, a start ng0
  1 sibling, 0 replies; 3+ messages in thread
From: contact.ng0 @ 2017-01-30 22:59 UTC (permalink / raw)
  To: guix-devel; +Cc: ng0

From: ng0 <ng0@libertad.pw>

* 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 <roel@gnu.org>
 ;;; Copyright © 2016 Leo Famulari <leo@famulari.name>
 ;;; Copyright © 2016 Alex Griffin <a@ajgrf.com>
-;;; Copyright © 2016 ng0 <ng0@we.make.ritual.n0.is>
+;;; Copyright © 2016, 2017 ng0 <contact.ng0@cryptolab.net>
 ;;; Copyright © 2016 David Craven <david@craven.ch>
 ;;; Copyright © 2016 Tobias Geerinckx-Rice <me@tobias.gr>
 ;;;
@@ -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

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: GNOME evolution, a start.
  2017-01-30 22:59 GNOME evolution, a start contact.ng0
  2017-01-30 22:59 ` [PATCH] gnu: Add evolution contact.ng0
@ 2017-01-31 13:13 ` ng0
  1 sibling, 0 replies; 3+ messages in thread
From: ng0 @ 2017-01-31 13:13 UTC (permalink / raw)
  To: guix-devel

The text was forgotten that I will not continue to work on
this. Feel free to pick up or let it bitrot.

contact.ng0@cryptolab.net writes:

> checking whether to build gtk-doc documentation... no
> checking for GTKDOC_DEPS... yes
> checking for Win32... no
> checking for nl_langinfo... yes
> checking for nl_langinfo (_NL_MEASUREMENT_MEASUREMENT)... yes
> checking for GNOME_PLATFORM... yes
> checking for GNOME_DESKTOP... yes
> checking for EVOLUTION_DATA_SERVER... no
> configure: error: Package requirements (camel-1.2 >= 3.22.4
>          libebook-1.2 >= 3.22.4
>          libecal-1.2 >= 3.22.4
>          libedataserver-1.2 >= 3.22.4
>          libedataserverui-1.2 >= 3.22.4
>          libebackend-1.2 >= 3.22.4) were not met:
>
> Requested 'camel-1.2 >= 3.22.4' but version of camel is 3.22.3
> Requested 'libebook-1.2 >= 3.22.4' but version of libebook is 3.22.3
> Requested 'libecal-1.2 >= 3.22.4' but version of libecal is 3.22.3
> Requested 'libedataserver-1.2 >= 3.22.4' but version of libedataserver is 3.22.3
> Requested 'libedataserverui-1.2 >= 3.22.4' but version of libedataserverui is 3.22.3
> Requested 'libebackend-1.2 >= 3.22.4' but version of libebackend is 3.22.3
>
> Consider adjusting the PKG_CONFIG_PATH environment variable if you
> installed software in a non-standard prefix.
>
> Alternatively, you may set the environment variables EVOLUTION_DATA_SERVER_CFLAGS
> and EVOLUTION_DATA_SERVER_LIBS to avoid the need to call pkg-config.
> See the pkg-config man page for more details.
> phase `configure' failed after 3.6 seconds
> builder for `/gnu/store/c5cpzyyj936b1fsrpl391psjdw83zh4j-evolution-3.22.4.drv' failed with exit code 1
> @ build-failed /gnu/store/c5cpzyyj936b1fsrpl391psjdw83zh4j-evolution-3.22.4.drv
> - 1 builder for `/gnu/store/c5cpzyyj936b1fsrpl391psjdw83zh4j-evolution-3.22.4.drv' failed with exit code 1
> guix build: error: build failed: build of `/gnu/store/c5cpzyyj936b1fsrpl391psjdw83zh4j-evolution-3.22.4.drv' failed
>

-- 
ng0 -- https://www.inventati.org/patternsinthechaos/

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2017-01-31 13:12 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-01-30 22:59 GNOME evolution, a start contact.ng0
2017-01-30 22:59 ` [PATCH] gnu: Add evolution contact.ng0
2017-01-31 13:13 ` GNOME evolution, a start ng0

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).