summaryrefslogtreecommitdiff
blob: 143fac1cb4d57c1da61f7d36af9a8aa01e36010e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-i18n/uim-qt/uim-qt-0.1.6_p20040815.ebuild,v 1.1 2004/08/16 14:20:17 usata Exp $

MY_PN="quiminputcontextplugin"
#MY_P="${MY_PN}-${PV}"
S="${WORKDIR}/${MY_PN}"
#MY_P="${MY_PN}-bc-${PV/*_p/}"
#S="${WORKDIR}/${MY_P}"

DESCRIPTION="Qt immodules input method framework plugin for UIM"
HOMEPAGE="http://uim.freedesktop.org/"
#SRC_URI="http://mover.cool.ne.jp/others/immodule/${MY_P}.tar.gz"
#SRC_URI="http://freedesktop.org/~tkng/${MY_PN}/${MY_P}.tar.gz"
SRC_URI="mirror://gentoo/${P/_p/-}.tar.gz"

LICENSE="GPL-2 | BSD"
SLOT="0"
KEYWORDS="~x86"
IUSE=""

DEPEND="app-i18n/uim
	>=x11-libs/qt-3.3.2"

pkg_setup() {
	ewarn
	ewarn "You need to install >=x11-libs/qt-3.3.2 with cjk USE flag enabled."
	ewarn
	if [ ! -e /usr/qt/3/include/qinputcontext.h ] ; then
		die "You need to rebuild >=x11-libs/qt-3.3.2 with cjk USE flag enabled."
	fi
	if [ ! -e /usr/qt/3/plugins/inputmethods/libqimsw-none.so ] ; then
		die "Your Qt was not built against the latest immodule A PI. Please rebuild >=x11-libs/qt-3.3.2."
	fi
}

src_compile() {
	sed -e 's,${QTDIR},${D}${QTDIR},g' install > ${T}/install

	qmake || die "qmake failed"
	emake -j1 || die "make failed."
}

src_install() {
	sh ${T}/install || die "install failed"

	dodoc COPYING ChangeLog README* TODO
}

src_test() {
	#cd edittest
	#qmake -project || die "qmake -project failed"
	#qmake || die "qmake failed"
	#emake || die "emake failed"
	#
	# This programme needs human interaction to test. (i.e. You need to
	# manually check whether quiminputcontextplugin is working or not
	# with GUI interface)
	#./edittest
	return
}

pkg_postinst() {
	einfo
	einfo "After you emerged ${PN}, run"
	einfo "	% qtconfig"
	einfo "and select your immodule to enable ${PN}."
	einfo
}