upgrade to libhangul 0.10.0
authorJihoon Kim <jihoon48.kim@samsung.com>
Mon, 4 Apr 2011 05:05:01 +0000 (14:05 +0900)
committerPhilippe Coval <philippe.coval@open.eurogiciel.org>
Wed, 20 Aug 2014 08:14:30 +0000 (10:14 +0200)
Change-Id: I5161d2d9213c94e99a44f13e4cd82c1d835d9553

debian/changelog
debian/control
debian/libhangul-dev.install
debian/libhangul0-data.install [new file with mode: 0644]
debian/libhangul0.install
debian/rules
debian/watch [new file with mode: 0644]

index 5bca1d7..c80d057 100755 (executable)
@@ -1,3 +1,11 @@
+libhangul (2.10-1) unstable; urgency=low
+
+  * upgrade to libhangul 0.10.0
+  * Git: 165.213.180.234:/git/slp/pkgs/libhangul
+  * Tag: libhangul_2.10-1
+
+ -- Jihoon Kim <jihoon48.kim@samsung.com>  Sat, 02 Apr 2011 17:32:22 +0900
+
 libhangul (2.1-4) unstable; urgency=low
 
   * uncomment dh_makeshlibs in debian/rules
@@ -42,4 +50,4 @@ libhangul (2.0) unstable; urgency=low
 
   * Initial Release.
 
- -- Wei Ye <wei.ye@samsung.com>  Tue, 04 Nov 2010 12:00:08 +0900
\ No newline at end of file
+ -- Wei Ye <wei.ye@samsung.com>  Tue, 04 Nov 2010 12:00:08 +0900
index 31ec95c..13cf2f7 100755 (executable)
@@ -1,26 +1,37 @@
 Source: libhangul
-Section: devel
-Priority: extra
+Section: libs
+Priority: optional
 Maintainer: Wei Ye <wei.ye@samsung.com>, Jihoon Kim <jihoon48.kim>
-Build-Depends: debhelper (>= 5), autotools-dev, pkg-config, libisf-dev
-Standards-Version: 3.7.2
+Standards-Version: 3.8.3
+Build-Depends: cdbs (>= 0.4.48), autotools-dev, debhelper (>= 5)
 
 Package: libhangul0
 Section: libs
 Architecture: any
-Depends: ${shlibs:Depends}, ${misc:Depends}
+Depends: libhangul0-data (= ${source:Version}), ${shlibs:Depends}, ${misc:Depends}
 Description: Hangul keyboard input library - runtime
  This library implements Hangul keyboard input with various types of
  Korean keyboards.  It is intended to be a base library of Korean
  input methods on multiple platforms.
  .
  This package contains the shared library and the runtime data.
-Version: 2.2
+
+Package: libhangul0-data
+Section: libs
+Architecture: all
+Depends: ${misc:Depends}
+Description: Hangul keyboard input library - data
+ This library implements Hangul keyboard input with various types of
+ Korean keyboards.  It is intended to be a base library of Korean
+ input methods on multiple platforms.
+ .
+ This package contains the architecture independent data.
 
 Package: libhangul0-dbg
 Section: debug
+Priority: extra
 Architecture: any
-Depends: libhangul0, ${shlibs:Depends}, ${misc:Depends}
+Depends: libhangul0 (= ${binary:Version}), ${misc:Depends}
 Description: Hangul keyboard input library - debugging symbols
  This library implements Hangul keyboard input with various types of
  Korean keyboards.  It is intended to be a base library of Korean
@@ -32,7 +43,7 @@ Description: Hangul keyboard input library - debugging symbols
 Package: libhangul-dev
 Section: libdevel
 Architecture: any
-Depends: libhangul0, ${misc:Depends}
+Depends: libhangul0 (= ${binary:Version}), ${misc:Depends}
 Description: Hangul keyboard input library - development files
  This library implements Hangul keyboard input with various types of
  Korean keyboards.  It is intended to be a base library of Korean
index 8a37e0a..5dfeaf4 100755 (executable)
@@ -1,5 +1,5 @@
-usr/include/*
-usr/lib/pkgconfig/*.pc
-usr/lib/*.a
-usr/lib/*.la
-
+debian/tmp/usr/include/* usr/include/
+debian/tmp/usr/lib/lib*.a usr/lib/
+debian/tmp/usr/lib/lib*.so usr/lib/
+debian/tmp/usr/lib/*.la usr/lib/
+debian/tmp/usr/lib/pkgconfig/* usr/lib/pkgconfig/
diff --git a/debian/libhangul0-data.install b/debian/libhangul0-data.install
new file mode 100644 (file)
index 0000000..030888d
--- /dev/null
@@ -0,0 +1 @@
+debian/tmp/usr/share/libhangul usr/share/
index 6d36a42..483b6b5 100755 (executable)
@@ -1,2 +1 @@
-usr/share/*
-usr/lib/*.so*
+debian/tmp/usr/lib/lib*.so.* usr/lib/
index 4a4b5e4..ab6d2fd 100755 (executable)
@@ -1,107 +1,8 @@
 #!/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
+DEB_DBG_PACKAGES = libhangul0-dbg
 
+DEB_DH_MAKESHLIBS_ARGS_libhangul0 := --version-info
 
-# 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)
-
-
-CFLAGS = -Wall -g
-
-ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
-       CFLAGS += -O0
-else
-       CFLAGS += -O2
-endif
-
-config.status:
-       dh_testdir
-       # Add here commands to configure the package.
-       ./configure --host=$(DEB_HOST_GNU_TYPE) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info CFLAGS="$(CFLAGS)" LDFLAGS="-Wl,-z,defs"
-
-
-build: build-stamp
-
-build-stamp:  config.status
-       dh_testdir
-
-       # Add here commands to compile the package.
-       $(MAKE)
-       #docbook-to-man debian/pinyin.sgml > pinyin.1
-
-       touch $@
-
-clean:
-       dh_testdir
-       dh_testroot
-       rm -f build-stamp 
-
-       # Add here commands to clean up after the build process.
-       -$(MAKE) distclean
-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_clean 
-
-install: build
-       dh_testdir
-       dh_testroot
-       dh_clean -k 
-       dh_installdirs
-
-       # Add here commands to install the package into debian/tmp.
-       $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install
-
-
-# Build architecture-independent files here.
-binary-indep: build install
-# We have nothing to do by default.
-
-# Build architecture-dependent files here.
-binary-arch: build install
-       dh_testdir
-       dh_testroot
-       dh_installchangelogs ChangeLog
-       dh_installdocs
-       dh_installexamples
-       dh_install --sourcedir=debian/tmp
-#      dh_installmenu
-#      dh_installdebconf       
-#      dh_installlogrotate
-#      dh_installemacsen
-#      dh_installpam
-#      dh_installmime
-#      dh_python
-#      dh_installinit
-#      dh_installcron
-#      dh_installinfo
-       dh_installman
-       dh_link
-       dh_strip --dbg-package=libhangul0-dbg
-       dh_compress
-       dh_fixperms
-#      dh_perl
-       dh_makeshlibs
-       dh_installdeb
-       dh_shlibdeps
-       dh_gencontrol
-       dh_md5sums
-       dh_builddeb
-
-binary: binary-indep binary-arch
-.PHONY: build clean binary-indep binary-arch binary install 
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/class/autotools.mk
diff --git a/debian/watch b/debian/watch
new file mode 100644 (file)
index 0000000..b81b9fd
--- /dev/null
@@ -0,0 +1,2 @@
+version=3
+http://kldp.net/frs/?group_id=362 /frs/download.php/.*/libhangul-(.*)\.tar\.gz