From mboxrd@z Thu Jan 1 00:00:00 1970 From: Marius Bakke Subject: Re: [PATCH] Add fcitx-configtool Date: Wed, 18 Jan 2017 20:55:23 +0100 Message-ID: <871sw087o4.fsf@kirby.i-did-not-set--mail-host-address--so-tickle-me> References: Mime-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:45144) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cTwKR-0005ux-R5 for guix-devel@gnu.org; Wed, 18 Jan 2017 14:55:33 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cTwKO-00070Y-0J for guix-devel@gnu.org; Wed, 18 Jan 2017 14:55:32 -0500 Received: from out1-smtp.messagingengine.com ([66.111.4.25]:59504) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1cTwKN-00070C-O8 for guix-devel@gnu.org; Wed, 18 Jan 2017 14:55:27 -0500 In-Reply-To: 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: tumashu , guix --=-=-= Content-Type: text/plain Content-Transfer-Encoding: quoted-printable Hi tumashu! The patch looks good. Does it work for you? It does not find any input methods on my system, but perhaps I need to install some? If you can confirm that this works for your use, I think it can be added as it is, save for some minor changes to make `guix lint` happy. I will add the same copyright header as the other patch if that is okay. Thank you! > From 6312de615f63343b9129cbe104f1a57837f8fb8b Mon Sep 17 00:00:00 2001 > From: Feng Shu > Date: Tue, 17 Jan 2017 13:02:30 +0800 > Subject: [PATCH] Add fcitx-configtool > > --- > gnu/packages/fcitx.scm | 36 ++++++++++++++++++++++++++++++++++++ > 1 file changed, 36 insertions(+) > > diff --git a/gnu/packages/fcitx.scm b/gnu/packages/fcitx.scm > index dd8eead7f..b5275cebf 100644 > --- a/gnu/packages/fcitx.scm > +++ b/gnu/packages/fcitx.scm > @@ -85,3 +85,39 @@ > Pinyin, Quwei and some table-based (Wubi, Cangjie, Erbi, etc.) input met= hods > built-in.") > (license gpl2+))) > + > +(define-public fcitx-configtool > + (package > + (name "fcitx-configtool") > + (version "0.4.8") > + (source (origin > + (method url-fetch) > + (uri (string-append "https://download.fcitx-im.org/fcitx-con= figtool/" > + name "-" version ".tar.xz")) > + (sha256 > + (base32 > + "1vaim0namw58bfafbvws1vgd4010p19zwqfbx6bd1zi5sgchdg0f")))) > + (build-system cmake-build-system) > + (arguments > + `(#:configure-flags > + (list "-DENABLE_GTK2=3DON" > + "-DENABLE_GTK3=3DON") > + #:tests? #f)) > + (native-inputs > + `(("glib:bin" ,glib "bin") > + ("pkg-config" ,pkg-config))) > + (inputs > + `(("fcitx" ,fcitx) > + ("dbus-glib" ,dbus-glib) > + ("gettext" ,gettext-minimal) > + ("gtk2" ,gtk+-2) > + ("gtk3" ,gtk+) > + ("iso-codes" ,iso-codes))) > + (home-page "http://fcitx-im.org") > + (synopsis "Graphic Fcitx configuration tool") > + (description > + "Fcitx is an input method framework with extension support. It has > +Pinyin, Quwei and some table-based (Wubi, Cangjie, Erbi, etc.) input met= hods > +built-in. This package provides GTK version of the graphic configuration= tool > +of Fcitx.") > + (license gpl2+))) > --=20 > 2.11.0 --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQEzBAEBCgAdFiEEu7At3yzq9qgNHeZDoqBt8qM6VPoFAlh/yCwACgkQoqBt8qM6 VPqsvwf+LoOmcBvik3Lw6if7Sgk5XktefRGRJ7AHJM534Dxg72Oxwc7bj1o1gPlw sshxCm1ZdTHgSPIquy8OpxwPc6xX3X5kRmLYYjZnPcCXRaA/41xpMJYULa6sNHTW NqncCxie6Uh/gOiH5J/oq58rc+pWjDdYAjwTjuTC8VPtGLw+k11FwFiDZvFx7uP3 exfqSWmLo7JN0S7DZK+Tpcmh/B60XqTWDQDBNFGhctgNJkD8+bXmD8lL90w0l9Bw 8nE70q0103Sx7c9AZUvQdw60HAbUgv76G9WBJf4N3zjFNwMM2iFAKKy1ZUfWbdhq bLlCYtMPvO2dOmS3+vIBfrwSz+o3+w== =RjjS -----END PGP SIGNATURE----- --=-=-=--