blob: 7b5f1ab8046c1207bd20dfdd5f4df07ba6e4254f (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-i18n/kimera/kimera-1.32.ebuild,v 1.3 2006/10/28 09:11:36 opfer Exp $
inherit kde-functions qt3
IUSE="anthy"
DESCRIPTION="A Japanese input method which supports the XIM protocol"
SRC_URI="mirror://sourceforge.jp/kimera/19749/${P}.tar.gz"
HOMEPAGE="http://kimera.sourceforge.jp/"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~amd64 x86"
DEPEND="$(qt_min_version 3)
anthy? ( app-i18n/anthy )
!anthy? ( app-i18n/canna )"
need-qt 3
src_compile(){
local myconf
if ! use anthy ; then
myconf="no_anthy=1"
fi
${QTDIR}/bin/qmake ${myconf} kimera.pro || die
# Avoid pre-stripping
sed -i -e '/strip/d' Makefile
emake || die
}
src_install(){
emake INSTALL_ROOT="${D}" install || die
dodoc AUTHORS INSTALL README*
}
|