blob: 50638d4d73ff1f2652aaae38f1c2fce5d4280ad0 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-i18n/leif/leif-12.1_p2002.ebuild,v 1.3 2005/05/01 16:49:12 hansmi Exp $
inherit iiimf eutils
DESCRIPTION="Language Engine is a component that provide actual Input Method service for IIIMF"
SRC_URI="http://www.openi18n.org/download/im-sdk/src/${IMSDK_P}.tar.bz2"
KEYWORDS="x86 ppc"
IUSE=""
RDEPEND="dev-libs/eimil"
DEPEND="${RDEPEND}
>=sys-apps/sed-4"
src_unpack() {
unpack ${A}
cd ${S}/testEIMIL
sed -i -e 's,$(IM_LIBDIR)/EIMIL,/usr/lib,g' Makefile.* || die
cd ${S}
sed -i -e '/LE_TARGETS/s/chewing//g' configure.ac || die
}
#src_compile() {
# ./autogen.sh
# econf || die
# emake -j1 || die
#}
src_install() {
make DESTDIR=${D} \
prefix=/usr \
install || die
dodoc ChangeLog
for d in canna cm newpy sampleja* ude unit template ; do
docinto $d
dodoc ChangeLog README
done
}
|