Gentoo Archives: gentoo-commits

From: "Naohiro Aota (naota)" <naota@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-i18n/ibus/files: ibus-1.4.1-libxslt-1.1.27.patch
Date: Mon, 28 Jan 2013 10:13:39
Message-Id: 20130128101335.76CD02171D@flycatcher.gentoo.org
1 naota 13/01/28 10:13:35
2
3 Added: ibus-1.4.1-libxslt-1.1.27.patch
4 Log:
5 Fix doc building. #442904
6
7 (Portage version: 2.2.0_alpha159/cvs/Linux x86_64, signed Manifest commit with key F8551514)
8
9 Revision Changes Path
10 1.1 app-i18n/ibus/files/ibus-1.4.1-libxslt-1.1.27.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/ibus/files/ibus-1.4.1-libxslt-1.1.27.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/ibus/files/ibus-1.4.1-libxslt-1.1.27.patch?rev=1.1&content-type=text/plain
14
15 Index: ibus-1.4.1-libxslt-1.1.27.patch
16 ===================================================================
17 Fixes building documents.
18 https://bugs.gentoo.org/442904
19
20 --- ibus-1.4.2.orig/docs/reference/ibus/ibus-docs.sgml.in
21 +++ ibus-1.4.2/docs/reference/ibus/ibus-docs.sgml.in
22 @@ -74,8 +74,10 @@
23 <xi:include href="xml/ibusenginedesc.xml"/>
24 <xi:include href="xml/ibusfactory.xml"/>
25 <xi:include href="xml/ibusinputcontext.xml"/>
26 + <xi:include href="xml/ibuskeys.xml"/>
27 <xi:include href="xml/ibuskeymap.xml"/>
28 <xi:include href="xml/ibuskeysyms.xml"/>
29 + <xi:include href="xml/ibusutil.xml"/>
30 </chapter>
31 <chapter>
32 <title>Configuration</title>
33 @@ -92,9 +94,6 @@
34 <title>Communication</title>
35 <para>Here lists the service communication functions.</para>
36 <xi:include href="xml/ibusbus.xml"/>
37 - <xi:include href="xml/ibusconnection.xml"/>
38 - <xi:include href="xml/ibusmessage.xml"/>
39 - <xi:include href="xml/ibuspendingcall.xml"/>
40 <xi:include href="xml/ibusproxy.xml"/>
41 <xi:include href="xml/ibusserializable.xml"/>
42 <xi:include href="xml/ibusservice.xml"/>
43 @@ -104,11 +103,18 @@
44 <para>Definition and functions for IBus internal use.</para>
45 <xi:include href="xml/ibusdebug.xml"/>
46 <xi:include href="xml/ibuserror.xml"/>
47 - <xi:include href="xml/ibusmainloop.xml"/>
48 <xi:include href="xml/ibusobject.xml"/>
49 - <xi:include href="xml/ibusserver.xml"/>
50 <xi:include href="xml/ibusshare.xml"/>
51 <xi:include href="xml/ibustypes.xml"/>
52 </chapter>
53 + <index id="api-index-full">
54 + <title>Index</title>
55 + <xi:include href="xml/api-index-full.xml"><xi:fallback /></xi:include>
56 + </index>
57 + <index id="api-index-deprecated" role="deprecated">
58 + <title>Index of deprecated symbols</title>
59 + <xi:include href="xml/api-index-deprecated.xml"><xi:fallback /></xi:include>
60 + </index>
61 + <xi:include href="xml/annotation-glossary.xml"><xi:fallback /></xi:include>
62 </book>
63
64 --- ibus-1.4.2.orig/src/ibusobservedpath.h
65 +++ ibus-1.4.2/src/ibusobservedpath.h
66 @@ -75,6 +75,7 @@ struct _IBusObservedPath {
67 IBusSerializable parent;
68 /* instance members */
69
70 + /*< public >*/
71 gchar *path;
72 glong mtime;
73 gboolean is_dir;
74 --- ibus-1.4.2.orig/src/ibusproperty.h
75 +++ ibus-1.4.2/src/ibusproperty.h
76 @@ -124,15 +124,15 @@ typedef struct _IBusPropListClass IBusPr
77
78 /**
79 * IBusProperty:
80 - * @key: Unique Identity for the IBusProperty.
81 - * @icon: Icon file for the IBusProperty.
82 - * @label: Text shown in UI.
83 - * @tooltip: Message shown if mouse hovered the IBusProperty.
84 - * @sensitive: Whether the IBusProperty is sensitive to keyboard and mouse event.
85 - * @visible: Whether the IBusProperty is visible.
86 - * @type: IBusPropType of IBusProperty.
87 - * @state: IBusPropState of IBusProperty.
88 - * @sub_props: IBusPropList that contains sub IBusProperties. These IBusProperties are usually
89 + * key: Unique Identity for the IBusProperty.
90 + * icon: Icon file for the IBusProperty.
91 + * label: Text shown in UI.
92 + * tooltip: Message shown if mouse hovered the IBusProperty.
93 + * sensitive: Whether the IBusProperty is sensitive to keyboard and mouse event.
94 + * visible: Whether the IBusProperty is visible.
95 + * type: IBusPropType of IBusProperty.
96 + * state: IBusPropState of IBusProperty.
97 + * sub_props: IBusPropList that contains sub IBusProperties. These IBusProperties are usually
98 * shown as sub menu item.
99 *
100 * UI component for input method engine property.