From mboxrd@z Thu Jan 1 00:00:00 1970 From: Leo Famulari Subject: Re: [PATCH 2/3] gnu: Add libglademm Date: Sat, 20 Feb 2016 00:33:16 -0500 Message-ID: <20160220053316.GB10772@jasmine> References: <1455721361-14591-1-git-send-email-mail@cbaines.net> <1455721361-14591-3-git-send-email-mail@cbaines.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:56997) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aX0AW-00030C-I8 for guix-devel@gnu.org; Sat, 20 Feb 2016 00:33:25 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aX0AR-0006Yq-Pm for guix-devel@gnu.org; Sat, 20 Feb 2016 00:33:24 -0500 Received: from out3-smtp.messagingengine.com ([66.111.4.27]:57470) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aX0AR-0006Ym-Lh for guix-devel@gnu.org; Sat, 20 Feb 2016 00:33:19 -0500 Content-Disposition: inline In-Reply-To: <1455721361-14591-3-git-send-email-mail@cbaines.net> 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: Christopher Baines Cc: guix-devel@gnu.org On Wed, Feb 17, 2016 at 03:02:40PM +0000, Christopher Baines wrote: > * gnu/packages/gnome.scm (libglademm): New variable. > --- > gnu/packages/gnome.scm | 27 +++++++++++++++++++++++++++ > 1 file changed, 27 insertions(+) > > diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm > index d04bc4a..2388e5c 100644 > --- a/gnu/packages/gnome.scm > +++ b/gnu/packages/gnome.scm > @@ -1347,6 +1347,33 @@ graphical interfaces described in glade files and for accessing the > widgets built in the loading process.") > (license license:gpl2+))) ; This is correct. GPL not LGPL > > +(define-public libglademm > + (package > + (name "libglademm") > + (version "2.6.7") > + (source (origin > + (method url-fetch) > + (uri (string-append "mirror://gnome/sources/" name "/" > + (version-major+minor version) "/" > + name "-" version ".tar.bz2")) > + (sha256 > + (base32 > + "1hrbg9l5qb7w0xvr7013qamkckyj0fqc426c851l69zpmhakqm1q")))) > + (build-system gnu-build-system) > + (propagated-inputs > + `(("gtkmm-2" ,gtkmm-2) > + ("libglade" ,libglade))) ; required by libglade-2.0.pc Do these need to be propagated? > + (native-inputs > + `(("pkg-config" ,pkg-config))) > + (arguments > + '(#:configure-flags '("CXXFLAGS=-std=c++11"))) > + (home-page "http://www.gtkmm.org/") > + (synopsis "C++ wrappers for libglade2") > + (description "libglademm is the C++ wrapper for libglade, a library for > + building graphical interfaces. New code should use GtkBuilder (part of Gtk 3), > + or its C++ wrapper in gtkmm.") > + (license license:lgpl2.1+))) > + > (define-public libgnomeprint > ;; This library has been deprecated since 2006; see > ;; . > -- > 2.7.0 > >