--- ibus-chewing-1.0.9.20090508.orig/debian/docs +++ ibus-chewing-1.0.9.20090508/debian/docs @@ -0,0 +1,3 @@ +AUTHORS +NEWS +README --- ibus-chewing-1.0.9.20090508.orig/debian/compat +++ ibus-chewing-1.0.9.20090508/debian/compat @@ -0,0 +1 @@ +7 --- ibus-chewing-1.0.9.20090508.orig/debian/control +++ ibus-chewing-1.0.9.20090508/debian/control @@ -0,0 +1,28 @@ +Source: ibus-chewing +Section: utils +Priority: optional +Maintainer: Ubuntu MOTU Developers +XSBC-Original-Maintainer: LI Daobing +Build-Depends: debhelper (>= 7), + cmake, + gob2, + pkg-config, + libchewing3-dev (>= 0.3.2), + libgconf2-dev, + libibus-dev, + libgtk2.0-dev, + libxtst-dev +Standards-Version: 3.8.1 +Homepage: http://code.google.com/p/ibus +Vcs-Bzr: lp:~lidaobing/+junk/ibus-chewing +Vcs-Browser: https://code.launchpad.net/~lidaobing/+junk/ibus-chewing + +Package: ibus-chewing +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends}, ibus +Description: chewing input 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. + . + IBus-chewing is a IM Engine for Traditional Chinese, based on IBus. --- ibus-chewing-1.0.9.20090508.orig/debian/copyright +++ ibus-chewing-1.0.9.20090508/debian/copyright @@ -0,0 +1,43 @@ +This package was debianized by: + + LI Daobing on Wed, 31 Dec 2008 20:40:56 +0800 + +It was downloaded from: + + http://code.google.com/p/ibus/downloads/list + +Upstream Authors: + + Ding-Yi Chen + Huang Peng + +Copyright: + + Copyright © 2007-2008 Huang Peng + Copyright © 2009 Ding-Yi Chen + Copyright © 2009 Red Hat, Inc. + +License: + + This package 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 package 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 package; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +On Debian systems, the complete text of the GNU General +Public License can be found in `/usr/share/common-licenses/GPL'. + +The Debian packaging is: + + Copyright © 2008, LI Daobing + +and is licensed under the GPL, see above. --- ibus-chewing-1.0.9.20090508.orig/debian/watch +++ ibus-chewing-1.0.9.20090508/debian/watch @@ -0,0 +1,3 @@ +version=3 +http://code.google.com/p/ibus/downloads/list \ +http://ibus.googlecode.com/files/ibus-chewing-([0-9].*)-Source\.tar\.gz --- ibus-chewing-1.0.9.20090508.orig/debian/changelog +++ ibus-chewing-1.0.9.20090508/debian/changelog @@ -0,0 +1,11 @@ +ibus-chewing (1.0.9.20090508-0ubuntu1) karmic; urgency=low + + * new upstream release (LP: #375505) + + -- LI Daobing Wed, 13 May 2009 21:52:49 +0800 + +ibus-chewing (1.0.8.20090428-0ubuntu1) karmic; urgency=low + + * Initial release (LP: #312694) + + -- LI Daobing Thu, 23 Apr 2009 20:08:05 +0800 --- ibus-chewing-1.0.9.20090508.orig/debian/clean +++ ibus-chewing-1.0.9.20090508/debian/clean @@ -0,0 +1,14 @@ +CMakeCache.txt +CMakeFiles +CPackConfig.cmake +CPackSourceConfig.cmake +Makefile +bin +cmake_install.cmake +cmake_uninstall.cmake +install_manifest.txt +SPECS/ibus-chewing.spec +po/CMakeFiles/ +po/Makefile +po/cmake_install.cmake +data/chewing.xml --- ibus-chewing-1.0.9.20090508.orig/debian/rules +++ ibus-chewing-1.0.9.20090508/debian/rules @@ -0,0 +1,29 @@ +#!/usr/bin/make -f + +build: build-stamp +build-stamp: + cmake -DCMAKE_INSTALL_PREFIX="/usr" -DCMAKE_VERBOSE_MAKEFILE=ON -DCMAKE_SKIP_RPATH=ON . + dh build + touch $@ + +clean: + dh clean + +install: build install-stamp +install-stamp: + dh install --before dh_gconf + mkdir -p $(CURDIR)/debian/ibus-chewing/usr/lib/ibus-chewing/ + mv $(CURDIR)/debian/ibus-chewing/usr/libexec/* \ + $(CURDIR)/debian/ibus-chewing/usr/lib/ibus-chewing/ + rm -rf $(CURDIR)/debian/ibus-chewing/usr/libexec/ + sed -i -e 's|libexec|lib/ibus-chewing|' $(CURDIR)/debian/ibus-chewing/usr/share/ibus/component/chewing.xml + dh install --remaining + touch install-stamp + +binary-arch: install + dh binary-arch + +binary-indep: install + dh binary-indep + +binary: binary-arch binary-indep