287 lines
11 KiB
Scheme
287 lines
11 KiB
Scheme
;;; GNU Guix --- Functional package management for GNU
|
|
;;; Copyright © 2015, 2016 Ricardo Wurmus <rekado@elephly.net>
|
|
;;; Copyright © 2015 Andreas Enge <andreas@enge.fr>
|
|
;;; Copyright © 2016 Chris Marusich <cmmarusich@gmail.com>
|
|
;;;
|
|
;;; This file is part of GNU Guix.
|
|
;;;
|
|
;;; GNU Guix is free software; you can redistribute it and/or modify it
|
|
;;; under the terms of the GNU General Public License as published by
|
|
;;; the Free Software Foundation; either version 3 of the License, or (at
|
|
;;; your option) any later version.
|
|
;;;
|
|
;;; GNU Guix is distributed in the hope that it will be useful, but
|
|
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
;;; GNU General Public License for more details.
|
|
;;;
|
|
;;; You should have received a copy of the GNU General Public License
|
|
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
(define-module (gnu packages ibus)
|
|
#:use-module (guix licenses)
|
|
#:use-module (guix packages)
|
|
#:use-module (guix download)
|
|
#:use-module (guix build-system gnu)
|
|
#:use-module (guix build-system glib-or-gtk)
|
|
#:use-module (gnu packages)
|
|
#:use-module (gnu packages anthy)
|
|
#:use-module (gnu packages autotools)
|
|
#:use-module (gnu packages base)
|
|
#:use-module (gnu packages databases)
|
|
#:use-module (gnu packages freedesktop)
|
|
#:use-module (gnu packages gettext)
|
|
#:use-module (gnu packages glib)
|
|
#:use-module (gnu packages gnome)
|
|
#:use-module (gnu packages gtk)
|
|
#:use-module (gnu packages iso-codes)
|
|
#:use-module (gnu packages pkg-config)
|
|
#:use-module (gnu packages python)
|
|
#:use-module (gnu packages xorg))
|
|
|
|
(define-public ibus
|
|
(package
|
|
(name "ibus")
|
|
(version "1.5.14")
|
|
(source (origin
|
|
(method url-fetch)
|
|
(uri (string-append "https://github.com/ibus/ibus/"
|
|
"releases/download/"
|
|
version "/ibus-" version ".tar.gz"))
|
|
(sha256
|
|
(base32
|
|
"0g4x02d7j5w1lfn4zvmzsq93h17lajgn9d7hlvr6pws28vz40ax4"))))
|
|
(build-system glib-or-gtk-build-system)
|
|
(arguments
|
|
`(#:tests? #f ; tests fail because there's no connection to dbus
|
|
#:configure-flags '("--disable-emoji-dict") ; cannot find emoji.json path
|
|
#:make-flags
|
|
(list "CC=gcc"
|
|
(string-append "pyoverridesdir="
|
|
(assoc-ref %outputs "out")
|
|
"/lib/python2.7/site-packages/gi/overrides/")
|
|
(string-append "py2overridesdir="
|
|
(assoc-ref %outputs "out")
|
|
"/lib/python2.7/site-packages/gi/overrides/"))
|
|
#:phases
|
|
(modify-phases %standard-phases
|
|
(add-before 'configure 'disable-dconf-update
|
|
(lambda _
|
|
(substitute* "data/dconf/Makefile.in"
|
|
(("dconf update") "echo dconf update"))
|
|
#t))
|
|
(add-after 'unpack 'delete-generated-files
|
|
(lambda _
|
|
(for-each (lambda (file)
|
|
(let ((c (string-append (string-drop-right file 4) "c")))
|
|
(when (file-exists? c)
|
|
(format #t "deleting ~a\n" c)
|
|
(delete-file c))))
|
|
(find-files "." "\\.vala"))
|
|
#t))
|
|
(add-after 'unpack 'fix-paths
|
|
(lambda* (#:key inputs #:allow-other-keys)
|
|
(substitute* "src/ibusenginesimple.c"
|
|
(("/usr/share/X11/locale")
|
|
(string-append (assoc-ref inputs "libx11")
|
|
"/share/X11/locale")))
|
|
(substitute* "ui/gtk3/xkblayout.vala"
|
|
(("\"(setxkbmap|xmodmap)\"" _ prog)
|
|
(string-append "\"" (assoc-ref inputs prog) "\"")))
|
|
#t))
|
|
(add-after 'wrap-program 'wrap-with-additional-paths
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
;; Make sure 'ibus-setup' runs with the correct PYTHONPATH and
|
|
;; GI_TYPELIB_PATH.
|
|
(let ((out (assoc-ref outputs "out")))
|
|
(wrap-program (string-append out "/bin/ibus-setup")
|
|
`("PYTHONPATH" ":" prefix (,(getenv "PYTHONPATH")))
|
|
`("GI_TYPELIB_PATH" ":" prefix
|
|
(,(getenv "GI_TYPELIB_PATH")
|
|
,(string-append out "/lib/girepository-1.0")))))
|
|
#t)))))
|
|
(inputs
|
|
`(("dbus" ,dbus)
|
|
("dconf" ,dconf)
|
|
("gconf" ,gconf)
|
|
("gtk2" ,gtk+-2)
|
|
("gtk+" ,gtk+)
|
|
("intltool" ,intltool)
|
|
("json-glib" ,json-glib)
|
|
("libnotify" ,libnotify)
|
|
("libx11" ,libx11)
|
|
("setxkbmap" ,setxkbmap)
|
|
("xmodmap" ,xmodmap)
|
|
("iso-codes" ,iso-codes)
|
|
("pygobject2" ,python2-pygobject)
|
|
("python2" ,python-2)))
|
|
(native-inputs
|
|
`(("glib" ,glib "bin") ; for glib-genmarshal
|
|
("gobject-introspection" ,gobject-introspection) ; for g-ir-compiler
|
|
("vala" ,vala)
|
|
("pkg-config" ,pkg-config)))
|
|
(native-search-paths
|
|
(list (search-path-specification
|
|
(variable "IBUS_COMPONENT_PATH")
|
|
(files '("share/ibus/component")))))
|
|
(synopsis "Input method framework")
|
|
(description
|
|
"IBus is an input framework providing a full-featured and user-friendly
|
|
input method user interface. It comes with multilingual input support. It
|
|
may also simplify input method development.")
|
|
(home-page "https://github.com/ibus/ibus/wiki")
|
|
(license lgpl2.1+)))
|
|
|
|
(define-public ibus-libpinyin
|
|
(package
|
|
(name "ibus-libpinyin")
|
|
(version "1.7.2")
|
|
(source (origin
|
|
(method url-fetch)
|
|
(uri (string-append "https://github.com/libpinyin/"
|
|
"ibus-libpinyin/archive/" version ".tar.gz"))
|
|
(file-name (string-append name "-" version ".tar.gz"))
|
|
(sha256
|
|
(base32
|
|
"080ixx5lih9lr78b061y67dqmiyc7ij87jl1sa26hhs1dr28ihka"))))
|
|
(build-system glib-or-gtk-build-system)
|
|
(arguments
|
|
`(#:phases
|
|
(modify-phases %standard-phases
|
|
(add-before 'configure 'autogen
|
|
(lambda _ (and (zero? (system* "intltoolize"))
|
|
(zero? (system* "autoreconf" "-vif")))))
|
|
(add-after 'wrap-program 'wrap-with-additional-paths
|
|
(lambda* (#:key inputs outputs #:allow-other-keys)
|
|
;; Make sure 'ibus-setup-libpinyin' runs with the correct
|
|
;; PYTHONPATH and GI_TYPELIB_PATH.
|
|
(let ((out (assoc-ref outputs "out")))
|
|
(wrap-program (string-append out "/libexec/ibus-setup-libpinyin")
|
|
`("PYTHONPATH" ":" prefix
|
|
(,(getenv "PYTHONPATH")
|
|
,(string-append (assoc-ref inputs "ibus")
|
|
"/lib/girepository-1.0")))
|
|
`("GI_TYPELIB_PATH" ":" prefix
|
|
(,(string-append (assoc-ref inputs "ibus")
|
|
"/lib/girepository-1.0"))))
|
|
#t))))))
|
|
(inputs
|
|
`(("ibus" ,ibus)
|
|
("libpinyin" ,libpinyin)
|
|
("bdb" ,bdb)
|
|
("sqlite" ,sqlite)
|
|
("python" ,python-2)
|
|
("pyxdg" ,python2-pyxdg)
|
|
("gtk+" ,gtk+)))
|
|
(native-inputs
|
|
`(("pkg-config" ,pkg-config)
|
|
("intltool" ,intltool)
|
|
("autoconf" ,autoconf)
|
|
("automake" ,automake)
|
|
("glib" ,glib "bin")
|
|
("libtool" ,libtool)))
|
|
(synopsis "Chinese Pinyin and ZhuYin input methods for IBus")
|
|
(description
|
|
"This package includes a Chinese Pinyin input method and a Chinese
|
|
ZhuYin (Bopomofo) input method based on libpinyin for IBus.")
|
|
(home-page "https://github.com/libpinyin/ibus-libpinyin")
|
|
(license gpl2+)))
|
|
|
|
(define-public libpinyin
|
|
(package
|
|
(name "libpinyin")
|
|
(version "1.2.0")
|
|
(source (origin
|
|
(method url-fetch)
|
|
(uri (string-append
|
|
"https://github.com/libpinyin/libpinyin/archive/"
|
|
version ".tar.gz"))
|
|
(file-name (string-append name "-" version ".tar.gz"))
|
|
(sha256
|
|
(base32
|
|
"04didxd39vlry6nqy7xqynwc68ndajnhw334wahfmp7zjbbscs7p"))))
|
|
(build-system gnu-build-system)
|
|
(arguments
|
|
`(#:phases
|
|
(modify-phases %standard-phases
|
|
(add-before 'configure 'autogen
|
|
(lambda _ (zero? (system* "autoreconf" "-vif"))))
|
|
(add-after 'unpack 'unpack-model
|
|
(lambda* (#:key inputs #:allow-other-keys)
|
|
(zero? (system* "tar" "-xvf"
|
|
(assoc-ref inputs "model")
|
|
"-C" "data")))))))
|
|
(inputs
|
|
`(("glib" ,glib)
|
|
("bdb" ,bdb)
|
|
("model"
|
|
,(origin
|
|
(method url-fetch)
|
|
(uri (string-append "mirror://sourceforge/libpinyin/"
|
|
"models/model10.text.tar.gz"))
|
|
(sha256
|
|
(base32
|
|
"0g489wqcfklxphhxpkh8i4qf9y8scmnmdbfrzdbrgf3rignbwyiw"))))))
|
|
(native-inputs
|
|
`(("pkg-config" ,pkg-config)
|
|
("autoconf" ,autoconf)
|
|
("automake" ,automake)
|
|
("libtool" ,libtool)))
|
|
(synopsis "Library to handle Chinese Pinyin")
|
|
(description
|
|
"The libpinyin C++ library provides algorithms needed for sentence-based
|
|
Chinese pinyin input methods.")
|
|
(home-page "https://github.com/libpinyin/libpinyin")
|
|
(license gpl2+)))
|
|
|
|
(define-public ibus-anthy
|
|
(package
|
|
(name "ibus-anthy")
|
|
(version "1.5.8")
|
|
(source (origin
|
|
(method url-fetch)
|
|
(uri (string-append
|
|
"https://github.com/ibus/ibus-anthy/releases/download/"
|
|
version "/ibus-anthy-" version ".tar.gz"))
|
|
(sha256
|
|
(base32
|
|
"1aj7vnfky7izl23xyjky78z3qas3q72l3kr8dnql2lnivsrb8q1y"))))
|
|
(build-system gnu-build-system)
|
|
(arguments
|
|
'(#:configure-flags
|
|
;; Use absolute exec path in the anthy.xml.
|
|
(list (string-append "--libexecdir=" %output "/libexec"))
|
|
#:phases
|
|
(modify-phases %standard-phases
|
|
(add-after 'install 'wrap-programs
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
(let ((out (assoc-ref outputs "out")))
|
|
(for-each
|
|
(lambda (prog)
|
|
(wrap-program (string-append out "/libexec/" prog)
|
|
`("PYTHONPATH" ":" prefix
|
|
(,(getenv "PYTHONPATH")))
|
|
`("GI_TYPELIB_PATH" ":" prefix
|
|
(,(getenv "GI_TYPELIB_PATH")
|
|
,(string-append out "/lib/girepository-1.0")))))
|
|
'("ibus-engine-anthy" "ibus-setup-anthy"))
|
|
#t))))))
|
|
(native-inputs
|
|
`(("gettext" ,gettext-minimal)
|
|
("intltool" ,intltool)
|
|
("pkg-config" ,pkg-config)
|
|
("python" ,python)))
|
|
(inputs
|
|
`(("anthy" ,anthy)
|
|
("gtk+" ,gtk+)
|
|
("ibus" ,ibus)
|
|
("gobject-introspection" ,gobject-introspection)
|
|
("python-pygobject" ,python-pygobject)))
|
|
(synopsis "Anthy Japanese language input method for IBus")
|
|
(description "IBus-Anthy is an engine for the input bus \"IBus\"). It
|
|
adds the Anthy Japanese language input method to IBus. Because most graphical
|
|
applications allow text input via IBus, installing this package will enable
|
|
Japanese language input in most graphical applications.")
|
|
(home-page "https://github.com/fujiwarat/ibus-anthy")
|
|
(license gpl2+)))
|