Gentoo Archives: gentoo-commits

From: "Yixun Lan (dlan)" <dlan@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-i18n/ibus-qt: ibus-qt-1.3.3.ebuild ChangeLog
Date: Fri, 01 Aug 2014 07:34:03
Message-Id: 20140801073355.D17CA2004E@flycatcher.gentoo.org
1 dlan 14/08/01 07:33:54
2
3 Modified: ChangeLog
4 Added: ibus-qt-1.3.3.ebuild
5 Log:
6 version bump, switch SRC_URI to github
7
8 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0xAABEFD55)
9
10 Revision Changes Path
11 1.22 app-i18n/ibus-qt/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/ibus-qt/ChangeLog?rev=1.22&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/ibus-qt/ChangeLog?rev=1.22&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/ibus-qt/ChangeLog?r1=1.21&r2=1.22
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-i18n/ibus-qt/ChangeLog,v
20 retrieving revision 1.21
21 retrieving revision 1.22
22 diff -u -r1.21 -r1.22
23 --- ChangeLog 6 Jan 2014 04:40:43 -0000 1.21
24 +++ ChangeLog 1 Aug 2014 07:33:54 -0000 1.22
25 @@ -1,6 +1,11 @@
26 # ChangeLog for app-i18n/ibus-qt
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-i18n/ibus-qt/ChangeLog,v 1.21 2014/01/06 04:40:43 naota Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-i18n/ibus-qt/ChangeLog,v 1.22 2014/08/01 07:33:54 dlan Exp $
30 +
31 +*ibus-qt-1.3.3 (01 Aug 2014)
32 +
33 + 01 Aug 2014; Yixun Lan <dlan@g.o> +ibus-qt-1.3.3.ebuild:
34 + version bump, switch SRC_URI to github
35
36 *ibus-qt-1.3.2 (06 Jan 2014)
37
38
39
40
41 1.1 app-i18n/ibus-qt/ibus-qt-1.3.3.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/ibus-qt/ibus-qt-1.3.3.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/ibus-qt/ibus-qt-1.3.3.ebuild?rev=1.1&content-type=text/plain
45
46 Index: ibus-qt-1.3.3.ebuild
47 ===================================================================
48 # Copyright 1999-2014 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/app-i18n/ibus-qt/ibus-qt-1.3.3.ebuild,v 1.1 2014/08/01 07:33:54 dlan Exp $
51
52 EAPI="5"
53 inherit cmake-utils eutils multilib
54
55 DESCRIPTION="Qt IBus library and Qt input method plugin"
56 HOMEPAGE="http://code.google.com/p/ibus/"
57 SRC_URI="https://github.com/ibus/ibus-qt/archive/${PV}.tar.gz -> ${P}.tar.gz"
58
59 LICENSE="GPL-2"
60 SLOT="0"
61 KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
62 IUSE="doc"
63
64 RDEPEND=">=app-i18n/ibus-1.3.7
65 >=sys-apps/dbus-1.2
66 x11-libs/libX11
67 >=dev-qt/qtcore-4.5:4
68 >=dev-qt/qtdbus-4.5:4"
69 DEPEND="${RDEPEND}
70 >=dev-libs/icu-4:=
71 dev-util/cmake
72 virtual/pkgconfig
73 doc? ( app-doc/doxygen )"
74
75 DOCS="AUTHORS README TODO"
76
77 mycmakeargs="-DLIBDIR=$(get_libdir) all"
78
79 src_compile() {
80 cmake-utils_src_compile
81
82 if use doc ; then
83 cd "${CMAKE_BUILD_DIR}"
84 emake docs || die
85 fi
86 }
87
88 src_install() {
89 if use doc ; then
90 HTML_DOCS="${CMAKE_BUILD_DIR}/docs/html/*"
91 fi
92
93 cmake-utils_src_install
94 }