From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:37746) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eWmMi-0005q7-Lo for guix-patches@gnu.org; Wed, 03 Jan 2018 11:58:09 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eWmMc-0006tr-UL for guix-patches@gnu.org; Wed, 03 Jan 2018 11:58:08 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:54110) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1eWmMc-0006tm-QM for guix-patches@gnu.org; Wed, 03 Jan 2018 11:58:02 -0500 Subject: [bug#27774] [PATCH 1/1] gnu: Add libgeotiff. Resent-Message-ID: From: Arun Isaac Date: Wed, 3 Jan 2018 22:26:00 +0530 Message-Id: <20180103165600.662-2-arunisaac@systemreboot.net> In-Reply-To: <20180103165600.662-1-arunisaac@systemreboot.net> References: <20180103165600.662-1-arunisaac@systemreboot.net> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 27774@debbugs.gnu.org From: Björn Höfling * gnu/packages/geo.scm (libgeotiff): New variable. Signed-off-by: Arun Isaac --- gnu/packages/geo.scm | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) diff --git a/gnu/packages/geo.scm b/gnu/packages/geo.scm index 7bf1562ba..c3a62c641 100644 --- a/gnu/packages/geo.scm +++ b/gnu/packages/geo.scm @@ -25,9 +25,11 @@ #:use-module ((guix licenses) #:prefix license:) #:use-module (guix packages) #:use-module (guix utils) + #:use-module (gnu packages compression) #:use-module (gnu packages glib) #:use-module (gnu packages gnome) #:use-module (gnu packages gtk) + #:use-module (gnu packages image) #:use-module (gnu packages pkg-config) #:use-module (gnu packages webkit) #:use-module (gnu packages xml)) @@ -137,6 +139,55 @@ and driving.") (home-page "https://wiki.gnome.org/Apps/Maps") (license license:gpl2+))) +(define-public libgeotiff + (package + (name "libgeotiff") + (version "1.4.2") + (source + (origin + (method url-fetch) + (uri (string-append "http://download.osgeo.org/geotiff/libgeotiff/libgeotiff-" + version ".tar.gz")) + (sha256 + (base32 + "0vjy3bwfhljjx66p9w999i4mdhsf7vjshx29yc3pn5livf5091xd")) + (modules '((guix build utils))) + (snippet + '(begin + ;; Remove .csv files, distributed from EPSG under a restricted + ;; license. See LICENSE for full license text. + (for-each delete-file (find-files "." "\\.csv$")) + ;; Now that we have removed the csv files, we need to modify the Makefile. + (substitute* "Makefile.in" + (("^all-am: .*$") + "all-am: Makefile $(LTLIBRARIES) $(HEADERS) geo_config.h\n") + (("^install-data-am: .*$") + "install-data-am: install-includeHEADERS")))))) + (build-system gnu-build-system) + (inputs + `(("libjpeg-turbo" ,libjpeg-turbo) + ("libtiff" ,libtiff) + ("proj.4" ,proj.4) + ("zlib" ,zlib))) + (arguments + `(#:configure-flags + (list (string-append "--with-zlib") + (string-append "--with-jpeg") + (string-append "--with-libtiff=" (assoc-ref %build-inputs "libtiff"))))) + (synopsis "Library for handling GeoTIFF (geographic enabled TIFF)") + (description "libgeotiff is a library on top of libtiff for reading and +writing GeoTIFF information tags.") + (home-page "https://trac.osgeo.org/geotiff/") + ;; This is a mixture of various contributions under different licenses. + ;; Note that the EPSG database is NOT "free to use" as the LICENSE file + ;; states, as its commercial redistribution is restricted. Hence, we have + ;; removed it from the package. + (license (list license:public-domain + license:x11 + license:bsd-3 + (license:non-copyleft "file://LICENSE" + "See LICENSE in the distribution."))))) + (define-public proj.4 (package (name "proj.4") -- 2.15.1