From mboxrd@z Thu Jan 1 00:00:00 1970 From: Cyril Roelandt Subject: [PATCH 3/6] gnu: Add libpeas. Date: Sat, 30 Nov 2013 02:13:33 +0100 Message-ID: <1385774016-1418-4-git-send-email-tipecaml@gmail.com> References: <1385774016-1418-1-git-send-email-tipecaml@gmail.com> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:32865) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VmZ7I-0005mC-VG for guix-devel@gnu.org; Fri, 29 Nov 2013 20:13:09 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VmZ7C-0003Uz-9n for guix-devel@gnu.org; Fri, 29 Nov 2013 20:13:04 -0500 Received: from mail-wi0-x22e.google.com ([2a00:1450:400c:c05::22e]:55667) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VmZ7C-0003Us-3q for guix-devel@gnu.org; Fri, 29 Nov 2013 20:12:58 -0500 Received: by mail-wi0-f174.google.com with SMTP id z2so1118385wiv.7 for ; Fri, 29 Nov 2013 17:12:57 -0800 (PST) In-Reply-To: <1385774016-1418-1-git-send-email-tipecaml@gmail.com> 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 * gnu/packages/gnome.scm (libpeas): New variable. --- gnu/packages/gnome.scm | 64 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 713b64f..96234dc 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -28,6 +28,7 @@ #:use-module (gnu packages pdf) #:use-module (gnu packages ghostscript) #:use-module (gnu packages libcanberra) + #:use-module (gnu packages libffi) #:use-module (gnu packages libpng) #:use-module (gnu packages perl) #:use-module (gnu packages pkg-config) @@ -355,3 +356,66 @@ notification daemon, as defined in the Desktop Notifications spec. These notifications can be used to inform the user about an event or display some form of information without getting in the user's way.") (license lgpl2.1+))) + +(define-public libpeas + (package + (name "libpeas") + (version "1.9.0") + (source + (origin + (method url-fetch) + (uri (string-append "mirror://gnome/sources/" name "/" + (string-copy version 0 (string-rindex version #\.)) "/" + name "-" version ".tar.xz")) + (sha256 + (base32 + "13fzyzv6c0cfdj83z1s16lv8k997wpnzyzr0wfwcfkcmvz64g1q0")))) + (build-system gnu-build-system) + (arguments + `(#:phases + (alist-replace + 'configure + (lambda* (#:key inputs #:allow-other-keys #:rest args) + (let ((configure (assoc-ref %standard-phases 'configure)) + (gir-path (lambda (pkg-name) + (string-append + (assoc-ref inputs pkg-name) + "/share/gir-1.0")))) + (substitute* "libpeas-gtk/Makefile.in" + (("--add-include-path") + (string-append + " --add-include-path=" (gir-path "atk") + " --add-include-path=" (gir-path "gdk-pixbuf") + " --add-include-path=" (gir-path "gtk+") + " --add-include-path=" (gir-path "pango") + " --add-include-path"))) + (substitute* "libpeas-gtk/Makefile.in" + (("--includedir=\\$\\(top_builddir") + (string-append + "--includedir=" (gir-path "atk") + " --includedir=" (gir-path "gdk-pixbuf") + " --includedir=" (gir-path "gtk+") + " --includedir=" (gir-path "pango") + " --includedir=$(top_builddir"))) + (apply configure args))) + %standard-phases))) + (inputs + `(("atk" ,atk) + ("gdk-pixbuf" ,gdk-pixbuf) + ("glib" ,glib) + ("gobject-introspection" ,gobject-introspection) + ("gtk+" ,gtk+) + ("intltool" ,intltool) + ("libffi" ,libffi) + ("pango" ,pango) + ("pkg-config" ,pkg-config))) + (home-page "https://wiki.gnome.org/Libpeas") + (synopsis "GObject plugin system") + (description + "libpeas is a gobject-based plugins engine, and is targetted at giving +every application the chance to assume its own extensibility. It also has a +set of features including, but not limited to: multiple extension points; on +demand (lazy) programming language support for C, Python and JS; simplicity of +the API") + + (license lgpl2.0+))) -- 1.8.4.rc3