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/qimhangul: ChangeLog qimhangul-0.1.2.ebuild qimhangul-0.0.2.ebuild
Date: Wed, 24 Sep 2008 15:31:25
Message-Id: E1KiWKn-00034V-BF@stork.gentoo.org
1 matsuu 08/09/24 15:31:21
2
3 Modified: ChangeLog
4 Added: qimhangul-0.1.2.ebuild
5 Removed: qimhangul-0.0.2.ebuild
6 Log:
7 Version bumped. Clean up ebuild.
8 (Portage version: 2.2_rc9/cvs/Linux 2.6.26-gentoo-r1 x86_64)
9
10 Revision Changes Path
11 1.9 app-i18n/qimhangul/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/qimhangul/ChangeLog?rev=1.9&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/qimhangul/ChangeLog?rev=1.9&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/qimhangul/ChangeLog?r1=1.8&r2=1.9
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-i18n/qimhangul/ChangeLog,v
20 retrieving revision 1.8
21 retrieving revision 1.9
22 diff -u -r1.8 -r1.9
23 --- ChangeLog 27 Jul 2008 19:48:20 -0000 1.8
24 +++ ChangeLog 24 Sep 2008 15:31:20 -0000 1.9
25 @@ -1,6 +1,13 @@
26 # ChangeLog for app-i18n/qimhangul
27 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-i18n/qimhangul/ChangeLog,v 1.8 2008/07/27 19:48:20 carlo Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-i18n/qimhangul/ChangeLog,v 1.9 2008/09/24 15:31:20 matsuu Exp $
30 +
31 +*qimhangul-0.1.2 (24 Sep 2008)
32 +
33 + 24 Sep 2008; MATSUU Takuto <matsuu@g.o>
34 + -files/qimhangul-0.0.2-gentoo.patch, -qimhangul-0.0.2.ebuild,
35 + +qimhangul-0.1.2.ebuild:
36 + Version bumped. Clean up ebuild. Removed old version.
37
38 27 Jul 2008; Carsten Lohrke <carlo@g.o> qimhangul-0.0.2.ebuild,
39 qimhangul-0.0.3.ebuild:
40
41
42
43 1.1 app-i18n/qimhangul/qimhangul-0.1.2.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/qimhangul/qimhangul-0.1.2.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/qimhangul/qimhangul-0.1.2.ebuild?rev=1.1&content-type=text/plain
47
48 Index: qimhangul-0.1.2.ebuild
49 ===================================================================
50 # Copyright 1999-2008 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/app-i18n/qimhangul/qimhangul-0.1.2.ebuild,v 1.1 2008/09/24 15:31:20 matsuu Exp $
53
54 EAPI=1
55
56 inherit eutils qt3
57
58 DESCRIPTION="Korean input method plugin for Qt immodules"
59 HOMEPAGE="http://kldp.net/projects/qimhangul/"
60 SRC_URI="http://kldp.net/frs/download.php/4620/${P}.tar.gz"
61
62 LICENSE="GPL-2"
63 SLOT="0"
64 KEYWORDS="~amd64 ~x86"
65 IUSE=""
66
67 RDEPEND="x11-libs/qt:3
68 app-i18n/libhangul"
69 DEPEND="${RDEPEND}
70 dev-util/pkgconfig"
71
72 pkg_setup() {
73 if use qt3 && ! built_with_use =x11-libs/qt-3* immqt-bc && ! built_with_use =x11-libs/qt-3* immqt; then
74 eerror "To support qt3 in this package is required to have"
75 eerror "=x11-libs/qt-3* compiled with immqt-bc(recommended) or immqt USE flag."
76 die "You need to rebuild >=x11-libs/qt-3.3.3-r1 with immqt-bc or immqt USE flag enabled."
77 fi
78 }
79
80 src_compile() {
81 "${QTDIR}"/bin/qmake -makefile || die "qmake failed"
82 emake || die "make failed."
83 }
84
85 src_install() {
86 emake INSTALL_ROOT="${D}" install || die
87
88 dodoc AUTHORS ChangeLog* README
89 }
90
91 pkg_postinst() {
92 elog
93 elog "After you emerged ${PN}, use right click to switch immodules for Qt."
94 elog "If you would like to use qimhangul as default instead of XIM,"
95 elog " set QT_IM_MODULE to hangul2."
96 elog "e.g.)"
97 elog " % export QT_IM_MODULE=hangul2"
98 elog
99 ewarn
100 ewarn "qtconfig is no longer used for selecting input methods."
101 ewarn
102 }