From mboxrd@z Thu Jan 1 00:00:00 1970 From: =?UTF-8?q?=E5=AE=8B=E6=96=87=E6=AD=A6?= Subject: [PATCH 04/11] gnu: at-spi2-core: Enable GObject introspection. Date: Wed, 8 Apr 2015 11:34:27 +0800 Message-ID: <1428464074-9794-4-git-send-email-iyzsong@gmail.com> References: <1428464074-9794-1-git-send-email-iyzsong@gmail.com> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:52211) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Yfgkw-0007td-1Y for guix-devel@gnu.org; Tue, 07 Apr 2015 23:34:22 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Yfgku-0002LW-RG for guix-devel@gnu.org; Tue, 07 Apr 2015 23:34:21 -0400 Received: from mail-pd0-x232.google.com ([2607:f8b0:400e:c02::232]:35304) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Yfgku-0002Kw-Ih for guix-devel@gnu.org; Tue, 07 Apr 2015 23:34:20 -0400 Received: by pddn5 with SMTP id n5so100431283pdd.2 for ; Tue, 07 Apr 2015 20:34:19 -0700 (PDT) In-Reply-To: <1428464074-9794-1-git-send-email-iyzsong@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/gtk.scm (at-spi2-core)[arguments]: Add #:make-flags. [native-inputs]: Add gobject-introspection. --- gnu/packages/gtk.scm | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm index 176017a..68cfdf3 100644 --- a/gnu/packages/gtk.scm +++ b/gnu/packages/gtk.scm @@ -343,7 +343,8 @@ in the GNOME project.") "1l3l39mw23zyjlcqidvkyqlr4gwbhplzw2hcv3qvn6p8ikxpf2qw")))) (build-system gnu-build-system) (arguments - '(#:phases + '(#:make-flags '("CC=gcc") ; for g-ir-scanner + #:phases (modify-phases %standard-phases (replace check ;; Run test-suite under a dbus session. @@ -357,8 +358,9 @@ in the GNOME project.") `(("libxi" ,libxi) ("libxtst" ,libxtst))) (native-inputs - `(("intltool" ,intltool) - ("pkg-config" ,pkg-config))) + `(("gobject-introspection" ,gobject-introspection) + ("intltool" ,intltool) + ("pkg-config" ,pkg-config))) (synopsis "Assistive Technology Service Provider Interface, core components") (description "The Assistive Technology Service Provider Interface, core components, -- 2.2.1