debian/0000775000000000000000000000000012244051635007172 5ustar debian/rules0000775000000000000000000000005512244051563010252 0ustar #!/usr/bin/make -f %: dh $@ --with python2 debian/watch0000664000000000000000000000011612244051543010217 0ustar version=3 http://www.tegaki.org/releases/([\d.]+)/ibus-tegaki-([\d.]+).tar.gz debian/changelog0000664000000000000000000000045612244051626011051 0ustar ibus-tegaki (0.3.1-1ubuntu1) trusty; urgency=low * Convert to dh_python2. -- Logan Rosen Sat, 23 Nov 2013 02:04:42 -0500 ibus-tegaki (0.3.1-1) unstable; urgency=low * Initial release (Closes: #575530) -- LI Daobing Sat, 27 Mar 2010 00:07:35 +0800 debian/compat0000664000000000000000000000000212244051543010366 0ustar 7 debian/copyright0000664000000000000000000000273112244051543011126 0ustar This package was debianized by LI Daobing on Fri, 26 Mar 2010 23:58:19 +0800. It was downloaded from http://www.tegaki.org/ Upstream Author: Mathieu Blondel Copyright: Copyright (C) 2010 The Tegaki project contributors License: This program 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 2 of the License, or (at your option) any later version. This program 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 this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. On Debian systems, the complete text of the GNU General Public License version 2 can be found in `/usr/share/common-licenses/GPL-2'. The Debian packaging is: Copyright (C) 2010 LI Daobing and is licensed under the GPL version 2, see `/usr/share/common-licenses/GPL-2'. --------------------------------------------- engine/factory.py Copyright (c) 2007-2008 Huang Peng and is licensed under the GPL version 2. debian/source/0000775000000000000000000000000012244051635010472 5ustar debian/source/format0000664000000000000000000000001412244051543011676 0ustar 3.0 (quilt) debian/control0000664000000000000000000000217312244051630010573 0ustar Source: ibus-tegaki Section: utils Priority: optional Maintainer: Ubuntu Developers XSBC-Original-Maintainer: LI Daobing Build-Depends: debhelper (>= 7), python (>= 2.6.6-3~), dh-python Standards-Version: 3.8.4 Homepage: http://www.tegaki.org/ Vcs-Browser: https://code.launchpad.net/~lidaobing/tegaki/ibus-tegaki Vcs-Bzr: lp:~lidaobing/tegaki/ibus-tegaki Package: ibus-tegaki Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends}, ${python:Depends}, ibus (>= 1.2), python-tegaki-gtk (>= 0.3.1) Description: tegaki engine for IBus IBus is an Intelligent Input Bus. It is a new input framework for Linux OS. It provides full featured and user friendly input method user interface. It also may help developers to develop input method easily. . Tegaki is an ongoing project which aims to develop a free and open-source modern implementation of handwriting recognition software, that is suitable for both the desktop and mobile devices, and that is designed from the ground up to work well with Chinese and Japanese. . this package provide the tegaki engine for ibus. debian/patches/0000775000000000000000000000000012244051635010621 5ustar debian/patches/series0000664000000000000000000000002712244051543012033 0ustar debian-changes-0.3.1-1 debian/patches/debian-changes-0.3.1-10000664000000000000000000000366612244051543014200 0ustar Description: Upstream changes introduced in version 0.3.1-1 This patch has been created by dpkg-source during the package build. Here's the last changelog entry, hopefully it gives details on why those changes were made: . ibus-tegaki (0.3.1-1) unstable; urgency=low . * Initial release (Closes: #575530) . The person named in the Author field signed this changelog entry. Author: LI Daobing Bug-Debian: http://bugs.debian.org/575530 --- The information above should follow the Patch Tagging Guidelines, please checkout http://dep.debian.net/deps/dep3/ to learn about the format. Here are templates for supplementary fields that you might want to add: Origin: , Bug: Bug-Debian: http://bugs.debian.org/ Forwarded: Reviewed-By: Last-Update: --- ibus-tegaki-0.3.1.orig/setup.py +++ ibus-tegaki-0.3.1/setup.py @@ -40,6 +40,8 @@ class install(installbase): txt = load_file(filename) txt = replace_constants(self._replace_prefix(txt)) outdir = os.path.join(self._getprefix(), folder) + if self.root is not None: + outdir = self.root + outdir out = os.path.join(outdir, filename.replace(".in", "")) if not os.path.exists(outdir): os.makedirs(outdir) @@ -54,7 +56,7 @@ class install(installbase): try: # >= 2.6 if self.prefix_option is None: - return "/usr/local" + return "/usr" else: return self.prefix_option except AttributeError: @@ -76,4 +78,4 @@ setup( data_files=[('share/ibus-tegaki/engine', glob("engine/*.py")), ('share/ibus-tegaki/icons', glob("*.svg"))], cmdclass={'install':install} -) \ No newline at end of file +)