updated on Tue Jan 10 00:10:07 UTC 2012
[aur-mirror.git] / libhangul-3beol / 00_2011.11.23.patch
blob021b4863912b8d5a89e2a900af03fbe28cf84fa0
1 diff -ruN choehwanjin-libhangul-4a71565/configure.ac choehwanjin-libhangul-05d4c4f/configure.ac
2 --- choehwanjin-libhangul-4a71565/configure.ac 2011-10-17 00:03:13.000000000 +0900
3 +++ choehwanjin-libhangul-05d4c4f/configure.ac 2011-11-23 21:52:45.000000000 +0900
4 @@ -2,7 +2,7 @@
5 # Process this file with autoconf to produce a configure script.
7 AC_PREREQ(2.57)
8 -AC_INIT(libhangul, 0.1.0, http://kldp.net/projects/hangul/)
9 +AC_INIT(libhangul, 0.1.0, http://code.google.com/p/libhangul/)
10 AM_INIT_AUTOMAKE
11 AC_CONFIG_SRCDIR([hangul/hangul.h])
12 AC_CONFIG_HEADER([config.h])
13 diff -ruN choehwanjin-libhangul-4a71565/doc/Doxyfile.in choehwanjin-libhangul-05d4c4f/doc/Doxyfile.in
14 --- choehwanjin-libhangul-4a71565/doc/Doxyfile.in 2011-10-17 00:03:13.000000000 +0900
15 +++ choehwanjin-libhangul-05d4c4f/doc/Doxyfile.in 2011-11-23 21:52:45.000000000 +0900
16 @@ -106,7 +106,7 @@
17 # path before files name in the file list and in the header files. If set
18 # to NO the shortest path that makes the file name unique will be used.
20 -FULL_PATH_NAMES = YES
21 +FULL_PATH_NAMES = NO
23 # If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag
24 # can be used to strip a user-defined part of the path. Stripping is
25 diff -ruN choehwanjin-libhangul-4a71565/doc/mainpage.dox choehwanjin-libhangul-05d4c4f/doc/mainpage.dox
26 --- choehwanjin-libhangul-4a71565/doc/mainpage.dox 2011-10-17 00:03:13.000000000 +0900
27 +++ choehwanjin-libhangul-05d4c4f/doc/mainpage.dox 2011-11-23 21:52:45.000000000 +0900
28 @@ -17,26 +17,20 @@
30 @section download 다운로드
31 최근 릴리스들은 libhangul의 프로젝트 페이지에서 받을 수 있습니다.
32 -@li http://kldp.net/frs/?group_id=362
33 +@li http://code.google.com/p/libhangul/downloads/list
35 -개발버젼의 소스는 <a href="http://kldp.net/">KLDP.net</a>의 subversion
36 +개발버젼의 소스는 <a href="http://github.com/">github</a>의
37 repository에서 받을 수 있습니다.
38 -@li subversion: http://kldp.net/scm/?group_id=362
39 +@li git: git://github.com/choehwanjin/libhangul.git
41 @section bug 버그리포트
42 -libhangul의 버그는 <a href="http://kldp.net/">KLDP.net</a>의 버그트래커로
43 +libhangul의 버그는 <a href="http://code.google.com/">Google code</a>의 버그트래커로
44 관리하고 있습니다.
46 -@li 버그트래커: http://kldp.net/tracker/?group_id=362
48 -@section mailinglist 메일링 리스트
49 -@li 메일링리스트: http://lists.kldp.net/mailman/listinfo/hangul-hackers
50 -@li 메일링리스트 아카이브: http://lists.kldp.net/pipermail/hangul-hackers/
51 +@li 버그트래커: http://code.google.com/p/libhangul/issues/list
53 @section website 웹주소
54 -libhangul은 <a href="http://kldp.net/">KLDP.net</a>에서 호스팅되고 있습니다.
55 - @li Home page: http://hangul.kldp.net/
56 - @li Project page: http://kldp.net/projects/hangul/
57 - @li Wiki page: http://wiki.kldp.org/wiki.php/libhangul
58 +libhangul은 <a href="http://code.google.com/">Google code</a>에서 호스팅되고 있습니다.
59 + @li Project page: http://code.google.com/p/libhangul/
62 diff -ruN choehwanjin-libhangul-4a71565/hangul/hangulctype.c choehwanjin-libhangul-05d4c4f/hangul/hangulctype.c
63 --- choehwanjin-libhangul-4a71565/hangul/hangulctype.c 2011-10-17 00:03:13.000000000 +0900
64 +++ choehwanjin-libhangul-05d4c4f/hangul/hangulctype.c 2011-11-23 21:52:45.000000000 +0900
65 @@ -882,7 +882,7 @@
68 void
69 -hangul_jongseong_dicompose(ucschar c, ucschar* jong, ucschar* cho)
70 +hangul_jongseong_decompose(ucschar c, ucschar* jong, ucschar* cho)
72 static ucschar table[][2] = {
73 { 0, 0x1100 }, /* jong kiyeok = cho kiyeok */
74 @@ -918,6 +918,12 @@
75 *cho = table[c - 0x11a8][1];
78 +void
79 +hangul_jongseong_dicompose(ucschar c, ucschar* jong, ucschar* cho)
81 + hangul_jongseong_decompose(c, jong, cho);
84 static int
85 hangul_jongseong_get_ncomponent(ucschar jong)
87 diff -ruN choehwanjin-libhangul-4a71565/hangul/hangul.h choehwanjin-libhangul-05d4c4f/hangul/hangul.h
88 --- choehwanjin-libhangul-4a71565/hangul/hangul.h 2011-10-17 00:03:13.000000000 +0900
89 +++ choehwanjin-libhangul-05d4c4f/hangul/hangul.h 2011-11-23 21:52:45.000000000 +0900
90 @@ -52,10 +52,6 @@
92 ucschar hangul_jamo_to_cjamo(ucschar ch);
94 -ucschar hangul_choseong_to_jongseong(ucschar ch);
95 -ucschar hangul_jongseong_to_choseong(ucschar ch);
96 -void hangul_jongseong_dicompose(ucschar ch, ucschar* jong, ucschar* cho);
98 const ucschar* hangul_syllable_iterator_prev(const ucschar* str,
99 const ucschar* begin);
100 const ucschar* hangul_syllable_iterator_next(const ucschar* str,
101 diff -ruN choehwanjin-libhangul-4a71565/hangul/hangulinputcontext.c choehwanjin-libhangul-05d4c4f/hangul/hangulinputcontext.c
102 --- choehwanjin-libhangul-4a71565/hangul/hangulinputcontext.c 2011-10-17 00:03:13.000000000 +0900
103 +++ choehwanjin-libhangul-05d4c4f/hangul/hangulinputcontext.c 2011-11-23 21:52:45.000000000 +0900
104 @@ -1142,7 +1142,7 @@
106 } else {
107 ucschar choseong = 0, jongseong = 0;
108 - hangul_jongseong_dicompose(hic->buffer.jongseong,
109 + hangul_jongseong_decompose(hic->buffer.jongseong,
110 &jongseong, &choseong);
111 hic->buffer.jongseong = jongseong;
112 hangul_ic_save_commit_string(hic);
113 diff -ruN choehwanjin-libhangul-4a71565/hangul/hangulinternals.h choehwanjin-libhangul-05d4c4f/hangul/hangulinternals.h
114 --- choehwanjin-libhangul-4a71565/hangul/hangulinternals.h 2011-10-17 00:03:13.000000000 +0900
115 +++ choehwanjin-libhangul-05d4c4f/hangul/hangulinternals.h 2011-11-23 21:52:45.000000000 +0900
116 @@ -5,4 +5,8 @@
118 ucschar hangul_jongseong_get_diff(ucschar prevjong, ucschar jong);
120 +ucschar hangul_choseong_to_jongseong(ucschar ch);
121 +ucschar hangul_jongseong_to_choseong(ucschar ch);
122 +void hangul_jongseong_decompose(ucschar ch, ucschar* jong, ucschar* cho);
124 #endif /* libhangul_hangulinternals_h */
125 diff -ruN choehwanjin-libhangul-4a71565/Makefile.am choehwanjin-libhangul-05d4c4f/Makefile.am
126 --- choehwanjin-libhangul-4a71565/Makefile.am 2011-10-17 00:03:13.000000000 +0900
127 +++ choehwanjin-libhangul-05d4c4f/Makefile.am 2011-11-23 21:52:45.000000000 +0900
128 @@ -15,10 +15,9 @@
129 test/hanja.c \
130 test/test.c
132 -log:
133 - unset LC_ALL; \
134 - export LANG=C ; \
135 - export LC_CTYPE=ko_KR.UTF-8; \
136 - svn log -v > ChangeLog
138 ACLOCAL_AMFLAGS = -I m4
140 +dist-hook:
141 + if test -d .git; then \
142 + git log --name-status --date=iso > $(distdir)/ChangeLog ; \
143 + fi
144 diff -ruN choehwanjin-libhangul-4a71565/po/Makevars choehwanjin-libhangul-05d4c4f/po/Makevars
145 --- choehwanjin-libhangul-4a71565/po/Makevars 2011-10-17 00:03:13.000000000 +0900
146 +++ choehwanjin-libhangul-05d4c4f/po/Makevars 2011-11-23 21:52:45.000000000 +0900
147 @@ -34,7 +34,7 @@
148 # It can be your email address, or a mailing list address where translators
149 # can write to without being subscribed, or the URL of a web page through
150 # which the translators can contact you.
151 -MSGID_BUGS_ADDRESS = http://kldp.net/projects/hangul
152 +MSGID_BUGS_ADDRESS = http://code.google.com/p/libhangul/
154 # This is the list of locale categories, beyond LC_MESSAGES, for which the
155 # message catalogs shall be used. It is usually empty.
156 diff -ruN choehwanjin-libhangul-4a71565/README choehwanjin-libhangul-05d4c4f/README
157 --- choehwanjin-libhangul-4a71565/README 2011-10-17 00:03:13.000000000 +0900
158 +++ choehwanjin-libhangul-05d4c4f/README 2011-11-23 21:52:45.000000000 +0900
159 @@ -8,13 +8,10 @@
160 # make
162 Download:
163 - * http://kldp.net/projects/hangul/download
164 + * http://code.google.com/p/libhangul/downloads/list
166 Bug report:
167 - * bug tracker: http://kldp.net/projects/hangul/bugs
169 -Forum:
170 - * http://kldp.net/projects/hangul/forum
171 + * http://code.google.com/p/libhangul/issues/list
173 Web sites
174 - * Project page: http://kldp.net/projects/hangul/
175 + * Project page: http://code.google.com/p/libhangul/