From mboxrd@z Thu Jan 1 00:00:00 1970 From: Mathieu OTHACEHE Subject: [PATCH] gnu: icecat: Add ffmpeg support. Date: Mon, 9 Jan 2017 22:28:39 +0100 Message-ID: <20170109212839.2777-1-m.othacehe@gmail.com> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:37318) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cQhod-00070N-JS for guix-devel@gnu.org; Mon, 09 Jan 2017 16:49:20 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cQhoZ-0004OI-Ih for guix-devel@gnu.org; Mon, 09 Jan 2017 16:49:19 -0500 Received: from mail-wm0-x241.google.com ([2a00:1450:400c:c09::241]:33107) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1cQhoZ-0004Nm-CV for guix-devel@gnu.org; Mon, 09 Jan 2017 16:49:15 -0500 Received: by mail-wm0-x241.google.com with SMTP id r144so16517687wme.0 for ; Mon, 09 Jan 2017 13:49:11 -0800 (PST) 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: guix-devel@gnu.org * gnu/packages/gnuzilla.scm (icecat)[inputs]: Add ffmpeg. [libxul-linked-libraries]: Add avcodec and avutil libraries (provided by ffmpeg). Signed-off-by: Mathieu OTHACEHE --- Hi, Thanks to this patch, icecat is able to use ffmpeg to decode various codecs previously unhandled. Mathieu gnu/packages/gnuzilla.scm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gnu/packages/gnuzilla.scm b/gnu/packages/gnuzilla.scm index 07ed2af0b..0698d0bcc 100644 --- a/gnu/packages/gnuzilla.scm +++ b/gnu/packages/gnuzilla.scm @@ -423,6 +423,7 @@ standards.") ("libxcomposite" ,libxcomposite) ("libxt" ,libxt) ("libffi" ,libffi) + ("ffmpeg" ,ffmpeg) ("libvpx" ,libvpx) ("icu4c" ,icu4c) ("pixman" ,pixman) @@ -544,7 +545,7 @@ standards.") (("^# This needs to be last") "OS_LIBS += [ 'GL', 'gnome-2', 'canberra', 'Xss', 'cups', 'gssapi_krb5', - 'gstreamer-1.0', 'gstapp-1.0', 'gstvideo-1.0' ]\n\n")) + 'gstreamer-1.0', 'gstapp-1.0', 'gstvideo-1.0', 'avcodec', 'avutil']\n\n")) #t)) (replace 'configure -- 2.11.0