2014-10-29 14:57:50 +01:00
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
gnu: Move 'which' to (gnu packages base).
* gnu/packages/which.scm: Remove.
* gnu-system.am (GNU_SYSTEM_MODULES): Remove it.
* gnu/packages/base.scm (which): New variable.
* gnu/packages/aspell.scm, gnu/packages/audio.scm,
gnu/packages/autogen.scm, gnu/packages/cdrom.scm,
gnu/packages/compression.scm, gnu/packages/datamash.scm,
gnu/packages/games.scm, gnu/packages/glib.scm,
gnu/packages/gnu-pw-mgr.scm, gnu/packages/gnutls.scm,
gnu/packages/gps.scm, gnu/packages/guile.scm,
gnu/packages/java.scm, gnu/packages/libevent.scm,
gnu/packages/linux.scm, gnu/packages/lisp.scm,
gnu/packages/node.scm, gnu/packages/ntp.scm,
gnu/packages/orpheus.scm, gnu/packages/pciutils.scm,
gnu/packages/python.scm, gnu/packages/qt.scm,
gnu/packages/rsync.scm, gnu/packages/sawfish.scm,
gnu/packages/scheme.scm, gnu/packages/ssh.scm,
gnu/packages/statistics.scm, gnu/packages/texlive.scm,
gnu/packages/wdiff.scm: Adjust accordingly.
2015-03-04 17:21:21 +01:00
|
|
|
;;; Copyright © 2014, 2015 Ludovic Courtès <ludo@gnu.org>
|
2014-10-29 14:57:50 +01:00
|
|
|
;;;
|
|
|
|
;;; 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 gps)
|
|
|
|
#:use-module (guix packages)
|
|
|
|
#:use-module (guix download)
|
2014-10-29 17:58:42 +01:00
|
|
|
#:use-module (guix git-download)
|
2014-10-29 14:57:50 +01:00
|
|
|
#:use-module (guix build-system gnu)
|
|
|
|
#:use-module ((guix licenses) #:prefix license:)
|
gnu: Move 'which' to (gnu packages base).
* gnu/packages/which.scm: Remove.
* gnu-system.am (GNU_SYSTEM_MODULES): Remove it.
* gnu/packages/base.scm (which): New variable.
* gnu/packages/aspell.scm, gnu/packages/audio.scm,
gnu/packages/autogen.scm, gnu/packages/cdrom.scm,
gnu/packages/compression.scm, gnu/packages/datamash.scm,
gnu/packages/games.scm, gnu/packages/glib.scm,
gnu/packages/gnu-pw-mgr.scm, gnu/packages/gnutls.scm,
gnu/packages/gps.scm, gnu/packages/guile.scm,
gnu/packages/java.scm, gnu/packages/libevent.scm,
gnu/packages/linux.scm, gnu/packages/lisp.scm,
gnu/packages/node.scm, gnu/packages/ntp.scm,
gnu/packages/orpheus.scm, gnu/packages/pciutils.scm,
gnu/packages/python.scm, gnu/packages/qt.scm,
gnu/packages/rsync.scm, gnu/packages/sawfish.scm,
gnu/packages/scheme.scm, gnu/packages/ssh.scm,
gnu/packages/statistics.scm, gnu/packages/texlive.scm,
gnu/packages/wdiff.scm: Adjust accordingly.
2015-03-04 17:21:21 +01:00
|
|
|
#:use-module (gnu packages base)
|
2014-10-29 17:58:42 +01:00
|
|
|
#:use-module (gnu packages pkg-config)
|
2014-10-29 14:57:50 +01:00
|
|
|
#:use-module (gnu packages compression)
|
2014-10-29 17:58:42 +01:00
|
|
|
#:use-module (gnu packages docbook)
|
|
|
|
#:use-module (gnu packages geeqie) ;exiv2
|
2014-10-29 14:57:50 +01:00
|
|
|
#:use-module (gnu packages xml)
|
2014-10-29 17:58:42 +01:00
|
|
|
#:use-module (gnu packages gtk)
|
2014-10-29 14:57:50 +01:00
|
|
|
#:use-module (gnu packages qt))
|
|
|
|
|
|
|
|
(define-public gpsbabel
|
|
|
|
(package
|
|
|
|
(name "gpsbabel")
|
|
|
|
(version "1.5.0")
|
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
;; XXX: Downloads from gpsbabel.org are hidden behind a POST, so
|
|
|
|
;; get it from elsewhere.
|
|
|
|
(uri (string-append
|
|
|
|
"mirror://debian/pool/main/g/gpsbabel/gpsbabel_"
|
|
|
|
version ".orig.tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"1pd01kra9l5ihy1by87qia0mpbpcif7g5yg7r9z2bnw7711jm3yb"))))
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
(arguments
|
2014-10-29 18:51:43 +01:00
|
|
|
`(#:configure-flags '("--with-zlib=system")
|
2014-10-29 14:57:50 +01:00
|
|
|
#:phases (alist-cons-before
|
|
|
|
'configure 'pre-configure
|
|
|
|
(lambda _
|
|
|
|
(chdir "gpsbabel"))
|
|
|
|
;; TODO: "make doc" requires Docbook & co.
|
2014-10-29 18:51:43 +01:00
|
|
|
%standard-phases)
|
|
|
|
|
|
|
|
;; On i686, 'raymarine.test' fails because of a rounding error:
|
|
|
|
;; <http://hydra.gnu.org/build/133040>. As a workaround, disable tests
|
|
|
|
;; on these platforms.
|
2014-10-31 00:10:44 +01:00
|
|
|
#:tests? ,(not (string-prefix? "i686" (%current-system)))))
|
2014-10-29 14:57:50 +01:00
|
|
|
(inputs
|
|
|
|
`(("expat" ,expat)
|
|
|
|
("zlib" ,zlib)
|
|
|
|
("qt4" ,qt-4)))
|
|
|
|
(native-inputs
|
|
|
|
`(("which" ,which)
|
|
|
|
("libxml2" ,libxml2))) ;'xmllint' needed for the KML tests
|
|
|
|
(home-page "http://www.gpsbabel.org/")
|
|
|
|
(synopsis "Convert and exchange data with GPS and map programs")
|
|
|
|
(description
|
|
|
|
"GPSBabel converts waypoints, tracks, and routes between hundreds of
|
|
|
|
popular GPS receivers and mapping programs. It contains extensive data
|
|
|
|
manipulation abilities making it a convenient for server-side processing or as
|
|
|
|
the back-end for other tools. It does not convert, transfer, send, or
|
|
|
|
manipulate maps.")
|
|
|
|
(license license:gpl2+)))
|
2014-10-29 17:58:42 +01:00
|
|
|
|
|
|
|
(define-public gpscorrelate
|
|
|
|
;; This program is "lightly maintained", so to speak, so we end up taking it
|
|
|
|
;; directly from its Git repo.
|
|
|
|
(let ((commit "365f6e1b3f"))
|
|
|
|
(package
|
|
|
|
(name "gpscorrelate")
|
|
|
|
(version (string-append "1.6.1." commit))
|
|
|
|
(source (origin
|
|
|
|
(method git-fetch)
|
|
|
|
(uri (git-reference
|
|
|
|
(url "https://github.com/freefoote/gpscorrelate")
|
|
|
|
(commit commit)))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"006a6l8p38a4h7y2959sqrmjjn29d8pd50zj9nypcp5ph18nybjb"))))
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
(arguments
|
|
|
|
`(#:phases (alist-replace
|
|
|
|
'configure
|
|
|
|
(lambda* (#:key inputs outputs #:allow-other-keys)
|
|
|
|
;; This is a rudimentary build system.
|
|
|
|
(substitute* "Makefile"
|
|
|
|
(("prefix[[:blank:]]*=.*$")
|
|
|
|
(string-append "prefix = " (assoc-ref outputs "out")
|
2014-12-27 23:54:23 +01:00
|
|
|
"\n"))))
|
2014-10-29 17:58:42 +01:00
|
|
|
%standard-phases)
|
|
|
|
#:tests? #f))
|
|
|
|
(inputs
|
|
|
|
`(("gtk+" ,gtk+-2)
|
|
|
|
("libxml2" ,libxml2)
|
|
|
|
("exiv2" ,exiv2)))
|
|
|
|
(native-inputs
|
|
|
|
`(("pkg-config" ,pkg-config)
|
|
|
|
("docbook-xml" ,docbook-xml)
|
|
|
|
("docbook-xsl" ,docbook-xsl)
|
|
|
|
("libxslt" ,libxslt)))
|
|
|
|
(home-page "http://freefoote.dview.net/linux/gpscorrelate")
|
|
|
|
(synopsis "GPS photo correlation tool to geo-localize images")
|
|
|
|
(description
|
|
|
|
"GPS Correlate is a program to match a recorded GPS track with the EXIF
|
|
|
|
tags in digital camera photos, and update the EXIF tags with the location that
|
|
|
|
the photo was taken. It does this by using the timestamp in the photo and
|
|
|
|
finding a data point in the GPS track that matches, or interpolating a point
|
|
|
|
between two other data points.")
|
|
|
|
(license license:gpl2+))))
|