--- ibus-table-wubi-1.2.0.20090715.orig/debian/copyright +++ ibus-table-wubi-1.2.0.20090715/debian/copyright @@ -0,0 +1,33 @@ +This package was debianized by LI Daobing on +Sat Nov 8 17:32:45 CST 2008. + +It was downloaded from + +Upstream Author: + + Yu Yuwei + +Copyright: + + Copyright © 2007-2008 Yu Yuwei + +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 3 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, see . + +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 © 2008-2009, LI Daobing and +is licensed under the LGPL, see `/usr/share/common-licenses/LGPL'. --- ibus-table-wubi-1.2.0.20090715.orig/debian/control +++ ibus-table-wubi-1.2.0.20090715/debian/control @@ -0,0 +1,25 @@ +Source: ibus-table-wubi +Section: utils +Priority: optional +Maintainer: Ubuntu Developers +XSBC-Original-Maintainer: LI Daobing +Build-Depends: debhelper (>= 7) +Build-Depends-Indep: autotools-dev, ibus-table (>= 1.1.0), pkg-config, ibus-table-extraphrase +Standards-Version: 3.8.2 +Homepage: http://code.google.com/p/ibus +Vcs-Browser: https://code.launchpad.net/~lidaobing/ibus/ibus-table-wubi +Vcs-Bzr: lp:~lidaobing/ibus/ibus-table-wubi + +Package: ibus-table-wubi +Architecture: all +Pre-Depends: dpkg (>= 1.14.12ubuntu3) +Depends: ${shlibs:Depends}, ${misc:Depends}, ibus-table (>= 1.1.0.20090527) +Description: Wubi input method based on table engine of ibus + IBus-Table is the IM Engine framework for table-based input methods, such as + WuBi, ErBi, Cangjie and so on. + . + This package provide one input method: + * WuBi86: Wubi input method (version 86). + . + Wubi is a Chinese input method, check more information at + http://en.wikipedia.org/wiki/Wubi_method . --- ibus-table-wubi-1.2.0.20090715.orig/debian/compat +++ ibus-table-wubi-1.2.0.20090715/debian/compat @@ -0,0 +1 @@ +7 --- ibus-table-wubi-1.2.0.20090715.orig/debian/changelog +++ ibus-table-wubi-1.2.0.20090715/debian/changelog @@ -0,0 +1,35 @@ +ibus-table-wubi (1.2.0.20090715-1ubuntu1) karmic; urgency=low + + * build with lzma compression. (LP: #431823) + - debian/control: add Pre-Depends. + - debian/rules: update dh_builddeb. + + -- LI Daobing Thu, 24 Sep 2009 20:37:06 +0800 + +ibus-table-wubi (1.2.0.20090715-1) unstable; urgency=low + + * new upstream release. + * debian/control: bump standards version to 3.8.2. + * debian/control: change url of vcs-bzr + + -- LI Daobing Sun, 19 Jul 2009 11:24:37 +0800 + +ibus-table-wubi (1.1.0.20090327-2) unstable; urgency=low + + * debian/control: + - depends: set the min version of ibus-table + * rebuild with newest ibus-table, hope can resolve the bug#530052. + + -- LI Daobing Sat, 30 May 2009 14:13:49 +0800 + +ibus-table-wubi (1.1.0.20090327-1) unstable; urgency=low + + * initial release to Debian (closes: #521636) + + -- LI Daobing Thu, 23 Apr 2009 21:00:34 +0800 + +ibus-table-wubi (1.1.0.20090327-0ubuntu1) karmic; urgency=low + + * initial release (LP: #318368) + + -- LI Daobing Thu, 23 Apr 2009 21:00:34 +0800 --- ibus-table-wubi-1.2.0.20090715.orig/debian/watch +++ ibus-table-wubi-1.2.0.20090715/debian/watch @@ -0,0 +1,3 @@ +version=3 +http://code.google.com/p/ibus/downloads/list \ +http://ibus.googlecode.com/files/ibus-table-wubi-([0-9].*)\.tar\.gz --- ibus-table-wubi-1.2.0.20090715.orig/debian/rules +++ ibus-table-wubi-1.2.0.20090715/debian/rules @@ -0,0 +1,79 @@ +#!/usr/bin/make -f +# -*- makefile -*- +# Sample debian/rules that uses debhelper. +# This file was originally written by Joey Hess and Craig Small. +# As a special exception, when this file is copied by dh-make into a +# dh-make output file, you may use that output file without restriction. +# This special exception was added by Craig Small in version 0.37 of dh-make. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + + +# These are used for cross-compiling and for saving the configure script +# from having to guess our platform (since we know it already) +DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) +DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) + + +config.status: configure + dh_testdir + # Add here commands to configure the package. +ifneq "$(wildcard /usr/share/misc/config.sub)" "" + cp -f /usr/share/misc/config.sub config.sub +endif +ifneq "$(wildcard /usr/share/misc/config.guess)" "" + cp -f /usr/share/misc/config.guess config.guess +endif + ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr \ + --enable-wubi86 --enable-extra-phrases \ + --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info \ + CFLAGS="$(CFLAGS)" LDFLAGS="-Wl,-z,defs" + + +build: build-stamp + +build-stamp: config.status + dh_testdir + $(MAKE) + touch $@ + +clean: + dh_testdir + dh_testroot + rm -f build-stamp + [ ! -f Makefile ] || $(MAKE) distclean + rm -f config.sub config.guess + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_prep + dh_installdirs + $(MAKE) DESTDIR=$(CURDIR)/debian/ibus-table-wubi install + + +binary-arch: build install + +binary-indep: build install + dh_testdir + dh_testroot + dh_installchangelogs + dh_installdocs README + dh_installexamples + dh_installman + dh_lintian + dh_link + dh_strip + dh_compress + dh_fixperms + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb -- -Zlzma + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install