From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:37584) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eodWb-0004NG-Eb for guix-patches@gnu.org; Wed, 21 Feb 2018 18:11:19 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eodVX-0007Zx-9a for guix-patches@gnu.org; Wed, 21 Feb 2018 18:10:09 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:47151) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1eodVW-0007Z3-NK for guix-patches@gnu.org; Wed, 21 Feb 2018 18:09:03 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1eodVW-0007Bc-Bu for guix-patches@gnu.org; Wed, 21 Feb 2018 18:09:02 -0500 Subject: [bug#30492] [PATCH v2 2/4] gnu: Add libgaiagraphics. Resent-Message-ID: Date: Thu, 22 Feb 2018 00:08:41 +0100 From: =?UTF-8?Q?Bj=C3=B6rn_?= =?UTF-8?Q?H=C3=B6fling?= Message-ID: <20180222000841.506b30df@alma-ubu> In-Reply-To: <20180222000121.0f7ae767@alma-ubu> References: <20180216220913.08cc8ca0@alma-ubu> <20180216222028.586da030@alma-ubu> <87bmgmtece.fsf@fastmail.com> <20180222000121.0f7ae767@alma-ubu> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit 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: 30492@debbugs.gnu.org * gnu/packages/geo.scm (libgaiagraphics): New variable. --- gnu/packages/geo.scm | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/gnu/packages/geo.scm b/gnu/packages/geo.scm index 8f1b44aea..6fe5f95f7 100644 --- a/gnu/packages/geo.scm +++ b/gnu/packages/geo.scm @@ -153,6 +153,36 @@ and driving.") (home-page "https://wiki.gnome.org/Apps/Maps") (license license:gpl2+))) +(define-public libgaiagraphics + (package + (name "libgaiagraphics") + (version "0.5") + (source + (origin + (method url-fetch) + (uri (string-append "https://www.gaia-gis.it/gaia-sins/libgaiagraphics-" + version ".tar.gz")) + (sha256 + (base32 + "076afqv417ag3hfvnif0qc7qscmnq1dsf6y431yygwgf34rjkayc")))) + (build-system gnu-build-system) + (native-inputs + `(("pkg-config" ,pkg-config))) + (inputs + `(("cairo" ,cairo) + ("libpng" ,libpng) + ("libjepeg-turbo" ,libjpeg-turbo) + ("libtiff" ,libtiff) + ("libgeotiff" ,libgeotiff) + ("proj.4" ,proj.4) + ("libxml2" ,libxml2) + ("zlib" ,zlib))) + (synopsis "Gaia common graphics support") + (description "libgaiagraphics is a library supporting + common-utility raster handling methods.") + (home-page "https://www.gaia-gis.it/fossil/libgaiagraphics/index") + (license license:lgpl3+))) + (define-public libgeotiff (package (name "libgeotiff") -- 2.16.1