Gentoo Archives: gentoo-commits

From: "Matsuu Takuto (matsuu)" <matsuu@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-i18n/ibus-qt: ChangeLog ibus-qt-1.3.0.ebuild
Date: Sat, 03 Apr 2010 04:29:23
Message-Id: E1Nxuz2-0006Rf-4A@stork.gentoo.org
1 matsuu 10/04/03 04:29:20
2
3 Modified: ChangeLog
4 Added: ibus-qt-1.3.0.ebuild
5 Log:
6 Version bumped.
7 (Portage version: 2.1.8.3/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.7 app-i18n/ibus-qt/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/ibus-qt/ChangeLog?rev=1.7&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/ibus-qt/ChangeLog?rev=1.7&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/ibus-qt/ChangeLog?r1=1.6&r2=1.7
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-i18n/ibus-qt/ChangeLog,v
19 retrieving revision 1.6
20 retrieving revision 1.7
21 diff -u -r1.6 -r1.7
22 --- ChangeLog 1 Mar 2010 10:15:07 -0000 1.6
23 +++ ChangeLog 3 Apr 2010 04:29:19 -0000 1.7
24 @@ -1,6 +1,11 @@
25 # ChangeLog for app-i18n/ibus-qt
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-i18n/ibus-qt/ChangeLog,v 1.6 2010/03/01 10:15:07 phajdan.jr Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-i18n/ibus-qt/ChangeLog,v 1.7 2010/04/03 04:29:19 matsuu Exp $
29 +
30 +*ibus-qt-1.3.0 (03 Apr 2010)
31 +
32 + 03 Apr 2010; MATSUU Takuto <matsuu@g.o> +ibus-qt-1.3.0.ebuild:
33 + Version bumped.
34
35 01 Mar 2010; Pawel Hajdan jr <phajdan.jr@g.o>
36 ibus-qt-1.2.0.20091217.ebuild:
37
38
39
40 1.1 app-i18n/ibus-qt/ibus-qt-1.3.0.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/ibus-qt/ibus-qt-1.3.0.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/ibus-qt/ibus-qt-1.3.0.ebuild?rev=1.1&content-type=text/plain
44
45 Index: ibus-qt-1.3.0.ebuild
46 ===================================================================
47 # Copyright 1999-2010 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/app-i18n/ibus-qt/ibus-qt-1.3.0.ebuild,v 1.1 2010/04/03 04:29:20 matsuu Exp $
50
51 EAPI="2"
52 inherit cmake-utils eutils multilib
53
54 MY_P="${P}-Source"
55 DESCRIPTION="Qt IBus library and Qt input method plugin"
56 HOMEPAGE="http://code.google.com/p/ibus/"
57 SRC_URI="http://ibus.googlecode.com/files/${MY_P}.tar.gz"
58
59 LICENSE="GPL-2"
60 SLOT="0"
61 KEYWORDS="~amd64 ~x86"
62 IUSE="doc"
63
64 RDEPEND=">=app-i18n/ibus-1.2
65 >=sys-apps/dbus-1.2
66 x11-libs/libX11
67 >=x11-libs/qt-core-4.5:4
68 >=x11-libs/qt-dbus-4.5:4"
69 DEPEND="${RDEPEND}
70 >=dev-libs/icu-4
71 dev-util/cmake
72 dev-util/pkgconfig
73 doc? ( app-doc/doxygen )"
74
75 S="${WORKDIR}/${MY_P}"
76
77 DOCS="AUTHORS README TODO"
78
79 mycmakeargs="-DLIBDIR=$(get_libdir) -DDOCDIR=/usr/share/doc/${PF} all"
80
81 src_prepare() {
82 epatch "${FILESDIR}/${PN}-1.2.0.20091217-doc.patch"
83 }
84
85 src_compile() {
86 cmake-utils_src_compile
87
88 if use doc ; then
89 cd "${CMAKE_BUILD_DIR}"
90 emake docs || die
91 fi
92 }
93
94 src_install() {
95 if use doc ; then
96 HTML_DOCS="${CMAKE_BUILD_DIR}/docs/html/*"
97 fi
98
99 cmake-utils_src_install
100 }