From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:33944) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1d3PsK-0008E1-LD for guix-patches@gnu.org; Wed, 26 Apr 2017 12:33:09 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1d3PsG-0007xO-3f for guix-patches@gnu.org; Wed, 26 Apr 2017 12:33:08 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:43697) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1d3PsG-0007xH-0X for guix-patches@gnu.org; Wed, 26 Apr 2017 12:33:04 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1d3PsF-0000II-Qf for guix-patches@gnu.org; Wed, 26 Apr 2017 12:33:03 -0400 Subject: bug#26669: [PATCH 6/7] gnu: Add wxsvg. Resent-Message-ID: From: Thomas Danckaert Date: Wed, 26 Apr 2017 18:30:37 +0200 Message-Id: <20170426163038.23515-5-thomas.danckaert@gmail.com> In-Reply-To: <20170426163038.23515-1-thomas.danckaert@gmail.com> References: <20170426.180534.1677459693482729603.post@thomasdanckaert.be> <20170426163038.23515-1-thomas.danckaert@gmail.com> 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: 26669@debbugs.gnu.org Cc: Thomas Danckaert From: Thomas Danckaert * gnu/packages/wxwidgets.scm (wxsvg): New variable. --- gnu/packages/wxwidgets.scm | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/gnu/packages/wxwidgets.scm b/gnu/packages/wxwidgets.scm index bd6ffec0f..b603fe588 100644 --- a/gnu/packages/wxwidgets.scm +++ b/gnu/packages/wxwidgets.scm @@ -36,6 +36,8 @@ #:use-module (gnu packages gstreamer) #:use-module (gnu packages gtk) #:use-module (gnu packages image) + #:use-module (gnu packages photo) + #:use-module (gnu packages video) #:use-module (gnu packages pkg-config) #:use-module (gnu packages python) #:use-module (gnu packages sdl) @@ -190,3 +192,30 @@ and many other languages.") (description "@code{wxpython} provides Python 2 bindings for wxWidgets.") (home-page "http://wxpython.org/") (license (package-license wxwidgets)))) + +(define-public wxsvg + (package + (name "wxsvg") + (version "1.5.11") + (source + (origin + (method url-fetch) + (uri (string-append "mirror://sourceforge/wxsvg/wxsvg/" + version "/wxsvg-" version ".tar.bz2")) + (sha256 + (base32 + "0m3ff8mjiq4hvy8rmxyc9fkpf24xwxhvr3a6jmvr2q5zc41xhz7x")))) + (build-system glib-or-gtk-build-system) + (inputs + `(("wxwidgets" ,wxwidgets-3.1) + ("cairo" ,cairo) + ("pango" ,pango) + ("libexif" ,libexif) + ("ffmpeg" ,ffmpeg))) + (native-inputs + `(("pkg-config" ,pkg-config))) + (synopsis "C++ library to create, manipulate and render SVG files") + (description "wxSVG is a C++ library to create, manipulate and render +@dfn{Scalable Vector Graphics} (SVG) files with the wxWidgets toolkit.") + (home-page "http://wxsvg.sourceforge.net") + (license (list l:lgpl2.0+ (l:fsf-free "file://COPYING"))))) -- 2.12.2