blob: 07468e4144aa707f1b9f58f2fbdf6aa405d89c54 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-i18n/leif/leif-11.4_p1467.ebuild,v 1.1 2004/09/13 20:07:42 usata Exp $
inherit iiimf eutils
DESCRIPTION="Language Engine is a component that provide actual Input Method service for IIIMF"
KEYWORDS="x86"
IUSE=""
DEPEND="dev-libs/eimil"
src_unpack() {
unpack ${A}
cd ${S}/testEIMIL
sed -i -e 's,$(IM_LIBDIR)/EIMIL,/usr/lib,g' Makefile.* || 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
}
|