From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Thompson Subject: [PATCH] gnu: Propagate necessary inputs for sdl-image Date: Wed, 30 Apr 2014 20:40:56 -0400 Message-ID: <87bnviwctj.fsf@labrys.i-did-not-set--mail-host-address--so-tickle-me> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:56758) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Wff3k-0001w8-CL for guix-devel@gnu.org; Wed, 30 Apr 2014 20:41:15 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Wff3d-0005KK-Gb for guix-devel@gnu.org; Wed, 30 Apr 2014 20:41:08 -0400 Received: from na3sys009aog104.obsmtp.com ([74.125.149.73]:50115) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Wff3d-0005I0-8e for guix-devel@gnu.org; Wed, 30 Apr 2014 20:41:01 -0400 Received: by mail-qa0-f52.google.com with SMTP id cm18so1331644qab.25 for ; Wed, 30 Apr 2014 17:40:58 -0700 (PDT) Received: from labrys (209-6-40-86.c3-0.smr-ubr1.sbo-smr.ma.cable.rcn.com. [209.6.40.86]) by mx.google.com with ESMTPSA id c16sm49119899qaw.4.2014.04.30.17.40.56 for (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Wed, 30 Apr 2014 17:40:57 -0700 (PDT) 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-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: guix-devel@gnu.org --=-=-= Content-Type: text/plain The libraries for loading JPG, PNG, and TIFF images need to be propagated inputs in order for SDL image to work properly. --=-=-= Content-Type: text/x-diff Content-Disposition: inline; filename=0001-gnu-Propagate-necessary-inputs-for-sdl-image.patch >From 6b3dfa3d5ad01efa29494f34f093fa1aa2dad437 Mon Sep 17 00:00:00 2001 From: David Thompson Date: Wed, 30 Apr 2014 20:35:45 -0400 Subject: [PATCH 1/2] gnu: Propagate necessary inputs for sdl-image. * gnu/packages/sdl.scm (sdl-image): Propagate jpeg, png, and tiff libraries. --- gnu/packages/sdl.scm | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/gnu/packages/sdl.scm b/gnu/packages/sdl.scm index d86ecde..713700d 100644 --- a/gnu/packages/sdl.scm +++ b/gnu/packages/sdl.scm @@ -147,12 +147,12 @@ other supporting functions for SDL.") (base32 "16an9slbb8ci7d89wakkmyfvp7c0cval8xw4hkg0842nhhlp540b")))) (build-system gnu-build-system) + (native-inputs `(("pkg-config" ,pkg-config))) ;; FIXME: Add webp - (inputs `(("libpng" ,libpng) - ("libjpeg" ,libjpeg) - ("libtiff" ,libtiff) - ("pkg-config" ,pkg-config))) - (propagated-inputs `(("sdl" ,sdl))) + (propagated-inputs `(("sdl" ,sdl) + ("libjpeg" ,libjpeg) + ("libpng" ,libpng) + ("libtiff" ,libtiff))) (synopsis "SDL image loading library") (description "SDL_image is an image file loading library for SDL that supports the following formats: BMP, GIF, JPEG, LBM, PCX, PNG, PNM, TGA, TIFF, -- 1.8.4 --=-=-=--