--- ibus-hangul-1.1.0.20090328.orig/debian/compat +++ ibus-hangul-1.1.0.20090328/debian/compat @@ -0,0 +1 @@ +5 --- ibus-hangul-1.1.0.20090328.orig/debian/watch +++ ibus-hangul-1.1.0.20090328/debian/watch @@ -0,0 +1,3 @@ +version=3 +http://code.google.com/p/ibus/downloads/list \ +http://ibus.googlecode.com/files/ibus-hangul-([0-9].*)\.tar\.gz --- ibus-hangul-1.1.0.20090328.orig/debian/copyright +++ ibus-hangul-1.1.0.20090328/debian/copyright @@ -0,0 +1,40 @@ +This package was debianized by: + + LI Daobing on Tue, 30 Dec 2008 22:22:03 +0800 + +It was downloaded from: + + http://code.google.com/p/ibus/downloads/list + +Upstream Author: + + Huang Peng + +Copyright: + + Copyright (C) 2007-2008 Huang Peng + +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 (C) 2008, LI Daobing + +and is licensed under the GPL, see above. --- ibus-hangul-1.1.0.20090328.orig/debian/control +++ ibus-hangul-1.1.0.20090328/debian/control @@ -0,0 +1,20 @@ +Source: ibus-hangul +Section: utils +Priority: optional +Maintainer: LI Daobing +Build-Depends: debhelper (>= 7), autotools-dev, libhangul-dev, python-support, + swig, python-dev, pkg-config, libibus-dev +Standards-Version: 3.8.1 +Homepage: http://code.google.com/p/ibus +Vcs-Bzr: lp:~lidaobing/+junk/ibus-hangul +Vcs-Browser: https://code.launchpad.net/~lidaobing/+junk/ibus-hangul + +Package: ibus-hangul +Architecture: any +Depends: ${python:Depends}, ${shlibs:Depends}, ${misc:Depends}, ibus +Description: Hangul 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-Hangul is an input method (IM) for Korean language, based on IBus. --- ibus-hangul-1.1.0.20090328.orig/debian/changelog +++ ibus-hangul-1.1.0.20090328/debian/changelog @@ -0,0 +1,25 @@ +ibus-hangul (1.1.0.20090328-0ubuntu1) karmic; urgency=low + + * new upstream release (LP: #370199). + * debian/control: + - build depends on libibus-dev. + - change maintainer's email. + - bump standards version to 3.8.1. + - depends on ${python:Depends}. + * debian/patches/01_engine.dpatch: no longer needed, removed. + * no patch needed. remove dpatch from debian/*. + * debian/rules: install README and AUTHORS + + -- LI Daobing Fri, 01 May 2009 12:42:43 +0800 + +ibus-hangul (0.1.1.20081023-0ubuntu2) jaunty; urgency=low + + * No changes. Rebuild to build with Python 2.6. (LP: #336534) + + -- LI Daobing Sat, 14 Mar 2009 22:26:32 +0800 + +ibus-hangul (0.1.1.20081023-0ubuntu1) jaunty; urgency=low + + * Initial release (LP: #312446) + + -- LI Daobing Fri, 13 Feb 2009 20:45:24 +0800 --- ibus-hangul-1.1.0.20090328.orig/debian/rules +++ ibus-hangul-1.1.0.20090328/debian/rules @@ -0,0 +1,77 @@ +#!/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) +ifneq ($(DEB_HOST_GNU_TYPE),$(DEB_BUILD_GNU_TYPE)) +CROSS= --build $(DEB_BUILD_GNU_TYPE) --host $(DEB_HOST_GNU_TYPE) +else +CROSS= --build $(DEB_BUILD_GNU_TYPE) +endif + +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 + dh_auto_configure + + +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-hangul install + +binary-indep: install + +binary-arch: install + dh_testdir + dh_testroot + dh_installchangelogs + dh_installdocs README AUTHORS + dh_installexamples + dh_pysupport + dh_installman + dh_link + dh_strip + dh_compress + dh_fixperms + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install