From mboxrd@z Thu Jan 1 00:00:00 1970 From: Marius Bakke Subject: Re: [PATCH] gnu: Add libicns Date: Sat, 03 Sep 2016 21:04:19 +0100 Message-ID: <87vaycpx6k.fsf@ike.i-did-not-set--mail-host-address--so-tickle-me> References: <3b92e609-3e2f-9f3e-3294-0e8f7a3ae558@openmailbox.org> <87a8fpqnvx.fsf@ike.i-did-not-set--mail-host-address--so-tickle-me> <874m5xqhu6.fsf@ike.i-did-not-set--mail-host-address--so-tickle-me> <6d93862f-c86e-e064-2392-3726c92e06e8@openmailbox.org> <87zinoq06p.fsf@ike.i-did-not-set--mail-host-address--so-tickle-me> <2f6589d3-5cba-0e2b-5576-d2d6f8ee3d2e@openmailbox.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:47517) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bgHB6-0008Ss-Q9 for guix-devel@gnu.org; Sat, 03 Sep 2016 16:04:38 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bgHB3-0005rP-IJ for guix-devel@gnu.org; Sat, 03 Sep 2016 16:04:36 -0400 Received: from out4-smtp.messagingengine.com ([66.111.4.28]:38142) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bgHB1-0005oP-5l for guix-devel@gnu.org; Sat, 03 Sep 2016 16:04:33 -0400 In-Reply-To: <2f6589d3-5cba-0e2b-5576-d2d6f8ee3d2e@openmailbox.org> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: Brendan Tildesley , guix-devel@gnu.org --=-=-= Content-Type: text/plain Brendan Tildesley writes: > I just notice the configure script wasn't looking for any newer version. [...] > checking libpng/png.h usability... no > checking libpng/png.h presence... no > checking for libpng/png.h... no > checking libpng10/png.h usability... no > checking libpng10/png.h presence... no > checking for libpng10/png.h... no > checking libpng12/png.h usability... yes > checking libpng12/png.h presence... yes > checking for libpng12/png.h... yes You cut off the important lines! Here is how it looks with the latest libpng in inputs: checking for png_create_read_struct in -lpng... yes checking png.h usability... yes <--- checking png.h presence... yes <--- checking for png.h... yes <--- checking libpng/png.h usability... no checking libpng/png.h presence... no checking for libpng/png.h... no checking libpng10/png.h usability... no checking libpng10/png.h presence... no checking for libpng10/png.h... no checking libpng12/png.h usability... no checking libpng12/png.h presence... no checking for libpng12/png.h... no >> >> The rest of the patch looks good to me. >> >> Thanks again! >> Marius > > Thanks. If I posted a fix, I'd just end up making some new mistakes, so > I'll just leave it to be added! I did the mentioned adjustments and attached a new patch. Hope I did not scare you off! :) ~marius --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=0001-gnu-Add-libicns.patch >From 0efb2e7cb5c3344b49e30af57efcdd5b1136ac7f Mon Sep 17 00:00:00 2001 From: Brendan Tildesley Date: Sat, 3 Sep 2016 05:53:56 +1000 Subject: [PATCH] gnu: Add libicns. * gnu/packages/image.scm (libicns): New variable. --- gnu/packages/image.scm | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) diff --git a/gnu/packages/image.scm b/gnu/packages/image.scm index 4fdc4ae..c1b79f3 100644 --- a/gnu/packages/image.scm +++ b/gnu/packages/image.scm @@ -147,6 +147,44 @@ maximum quality factor.") (license license:gpl2+) (home-page "http://www.kokkonen.net/tjko/projects.html#jpegoptim"))) +(define-public libicns + (package + (name "libicns") + (version "0.8.1") + (source (origin + (method url-fetch) + (uri (string-append + "mirror://sourceforge/icns/libicns-" version ".tar.gz")) + (sha256 (base32 + "1hjm8lwap7bjyyxsyi94fh5817xzqhk4kb5y0b7mb6675xw10prk")))) + (build-system gnu-build-system) + (inputs + `(("libpng" ,libpng) + ("jasper" ,jasper))) + (native-inputs + `(("autoconf" ,autoconf) + ("automake" ,automake) + ("libtool" ,libtool))) + (arguments + `(#:tests? #t ; No tests. + #:phases + (modify-phases %standard-phases + (add-before 'configure 'autoreconf + (lambda _ + (zero? (system* "autoreconf" "-vfi"))))))) + (home-page "http://icns.sourceforge.net/") + (synopsis "Library for handling Mac OS icns resource files") + (description + "Libicns is a library for the manipulation of Mac OS IconFamily resource +type files (ICNS). @command{icns2png} and @command{png2icns} are provided to +convert between PNG and ICNS. @command{icns2png} will extract image files from +ICNS files under names like \"Foo_48x48x32.png\" useful for installing for use +with .desktop files. Additionally, @command{icontainer2png} is provided for +extracting icontainer icon files.") + (license (list license:lgpl2.1+ ; libicns + license:lgpl2.0+ ; src/apidocs.* + license:gpl2+)))) ; icns2png, png2icns, icontainer2png + (define-public libtiff (package (name "libtiff") -- 2.9.3 --=-=-=--