From: Leo Famulari <leo@famulari.name>
To: "Ludovic Courtès" <ludo@gnu.org>
Cc: guix-devel@gnu.org
Subject: Re: [WIP 0/8] GNOME Maps
Date: Tue, 14 Jun 2016 16:21:33 -0400 [thread overview]
Message-ID: <20160614202133.GA31914@jasmine> (raw)
In-Reply-To: <87lh28ezgv.fsf@gnu.org>
[-- Attachment #1: Type: text/plain, Size: 752 bytes --]
On Tue, Jun 14, 2016 at 02:17:52PM +0200, Ludovic Courtès wrote:
> Leo Famulari <leo@famulari.name> skribis:
> > It works for version 3.18.2! Attached.
>
> Cool, let’s commit this one as a starting point!
I found it only works from within GNOME. In i3, it fails like this:
http://paste.lisp.org/display/318375
It never exits. It just hangs open after printing those warnings and
errors.
I don't know if that's acceptable or not.
> Did we eventually figure out where/how this thing looks for typelib
> file/gobject-introspection data? It seems to be a “simple matter” of
> telling it where to look for whatever it’s looking for. :-)
Working on it...
> Make sure to add a license header, but otherwise LGTM, thanks!
Revision attached!
[-- Attachment #2: 0001-gnu-Add-gnome-maps.patch --]
[-- Type: text/x-diff, Size: 4342 bytes --]
From 87f3c4b12c75287fde5ff96167c71501676c02f7 Mon Sep 17 00:00:00 2001
From: Leo Famulari <leo@famulari.name>
Date: Sat, 5 Mar 2016 02:33:09 -0500
Subject: [PATCH] gnu: Add gnome-maps.
* gnu/packages/maps.scm: New file.
* gnu-system.am (GNU_SYSTEM_MODULES): Add it.
---
gnu/packages/maps.scm | 91 +++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 91 insertions(+)
create mode 100644 gnu/packages/maps.scm
diff --git a/gnu/packages/maps.scm b/gnu/packages/maps.scm
new file mode 100644
index 0000000..89962ce
--- /dev/null
+++ b/gnu/packages/maps.scm
@@ -0,0 +1,91 @@
+;;; GNU Guix --- Functional package management for GNU
+;;; Copyright © 2016 Leo Famulari <leo@famulari.name>
+;;;
+;;; This file is part of GNU Guix.
+;;;
+;;; GNU Guix is free software; you can redistribute it and/or modify it
+;;; under the terms of the GNU General Public License as published by
+;;; the Free Software Foundation; either version 3 of the License, or (at
+;;; your option) any later version.
+;;;
+;;; GNU Guix is distributed in the hope that it will be useful, but
+;;; WITHOUT ANY WARRANTY; without even the implied warranty of
+;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+;;; GNU General Public License for more details.
+;;;
+;;; You should have received a copy of the GNU General Public License
+;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
+
+(define-module (gnu packages maps)
+ #:use-module (guix build-system glib-or-gtk)
+ #:use-module (guix download)
+ #:use-module (guix licenses)
+ #:use-module (guix packages)
+ #:use-module (guix utils)
+ #:use-module (gnu packages glib) ; intltool
+ #:use-module (gnu packages gnome)
+ #:use-module (gnu packages gtk)
+ #:use-module (gnu packages pkg-config)
+ #:use-module (gnu packages webkit)
+ #:use-module (gnu packages xml))
+
+(define-public gnome-maps
+ (package
+ (name "gnome-maps")
+ (version "3.18.2")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append "mirror://gnome/sources/" name "/"
+ (version-major+minor version) "/"
+ name "-" version ".tar.xz"))
+ (sha256
+ (base32
+ "0y4jmh5hwskh2mnladh9hxp9k8as7crm8wwwiifvxsjjj9az2gv9"))))
+ (build-system glib-or-gtk-build-system)
+ (arguments
+ `(#:configure-flags ; Ensure that geoclue is referred to by output.
+ (list (string-append "LDFLAGS=-L"
+ (assoc-ref %build-inputs "geoclue") "/lib")
+ (string-append "CFLAGS=-I"
+ (assoc-ref %build-inputs "geoclue") "/include"))
+ #:phases
+ (modify-phases %standard-phases
+ (add-after
+ 'install 'wrap
+ (lambda* (#:key inputs outputs #:allow-other-keys)
+ (let ((out (assoc-ref outputs "out"))
+ (gi-typelib-path (getenv "GI_TYPELIB_PATH"))
+ (goa-path (string-append
+ (assoc-ref inputs "gnome-online-accounts")
+ "/lib")))
+ (wrap-program (string-append out "/bin/gnome-maps")
+ `("GI_TYPELIB_PATH" ":" prefix (,gi-typelib-path))
+
+ ;; There seems to be no way to embed the path of libgoa-1.0.so.0.
+ `("LD_LIBRARY_PATH" ":" prefix (,goa-path)))
+ #t))))))
+ (native-inputs
+ `(("gobject-introspection" ,gobject-introspection)
+ ("intltool" ,intltool)
+ ("pkg-config" ,pkg-config)))
+ (inputs
+ `(("folks" ,folks)
+ ("libchamplain" ,libchamplain)
+ ("libgee" ,libgee)
+ ("libxml2" ,libxml2)
+ ("geoclue" ,geoclue)
+ ("geocode-glib" ,geocode-glib)
+ ("gfbgraph" ,gfbgraph)
+ ("gjs" ,gjs)
+ ("glib" ,glib)
+ ("gnome-online-accounts" ,gnome-online-accounts)
+ ("rest" ,rest)
+ ("webkitgtk" ,webkitgtk)))
+ (propagated-inputs
+ `(("gtk+3" ,gtk+)))
+ (synopsis "Graphical map viewer and wayfinding program")
+ (description "GNOME Maps is a graphical map viewer. It uses map data from
+the OpenStreetMap project. It can provide directions for walking, bicycling, and
+driving.")
+ (home-page "https://wiki.gnome.org/Apps/Maps")
+ (license gpl2+)))
--
2.8.4
next prev parent reply other threads:[~2016-06-14 20:21 UTC|newest]
Thread overview: 28+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-04-16 3:02 [WIP 0/8] GNOME Maps Leo Famulari
2016-04-16 3:02 ` [WIP 1/8] gnu: telepathy-glib: Enable vala bindings Leo Famulari
2016-05-02 8:30 ` Ludovic Courtès
2016-04-16 3:02 ` [WIP 2/8] gnu: evolution-data-server: Build Vala bindings Leo Famulari
2016-05-02 8:29 ` Ludovic Courtès
2016-04-16 3:02 ` [WIP 3/8] gnu: Add folks Leo Famulari
2016-05-02 8:26 ` Ludovic Courtès
2016-04-16 3:02 ` [WIP 4/8] gnu: vala: Build Vala API (.vapi) generator Leo Famulari
2016-05-02 8:27 ` Ludovic Courtès
2016-04-16 3:02 ` [WIP 5/8] gnu: libchamplain: Update to 0.12.13 Leo Famulari
2016-05-02 8:28 ` Ludovic Courtès
2016-04-16 3:02 ` [WIP 6/8] gnu: libchamplain: Build Vala bindings Leo Famulari
2016-05-02 8:29 ` Ludovic Courtès
2016-04-16 3:02 ` [WIP 7/8] gnu: Add gfbgraph Leo Famulari
2016-04-16 9:32 ` Alex Kost
2016-04-16 9:37 ` Alex Kost
2016-04-16 16:08 ` Leo Famulari
2016-04-16 3:02 ` [WIP 8/8] gnu: Add gnome-maps Leo Famulari
2016-05-02 8:37 ` [WIP 0/8] GNOME Maps Ludovic Courtès
2016-05-02 19:02 ` Leo Famulari
2016-05-03 11:39 ` Ludovic Courtès
2016-06-14 7:22 ` Leo Famulari
2016-06-14 12:17 ` Ludovic Courtès
2016-06-14 14:21 ` Leo Famulari
2016-06-14 20:21 ` Leo Famulari [this message]
2016-06-15 12:25 ` Ludovic Courtès
2016-06-15 17:20 ` Leo Famulari
2016-06-16 10:07 ` Andy Wingo
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://guix.gnu.org/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20160614202133.GA31914@jasmine \
--to=leo@famulari.name \
--cc=guix-devel@gnu.org \
--cc=ludo@gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).