blob: 78724259cdb00cde560fa198a6b629526c98160e (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-i18n/iiimsf/iiimsf-11.4.1467.ebuild,v 1.6 2004/06/24 21:45:58 agriffis Exp $
inherit iiimf eutils
DESCRIPTION="server program to provide Input Method facilities via IIIMP"
KEYWORDS="~x86"
IUSE=""
DEPEND="dev-libs/libiiimp"
src_unpack() {
unpack ${A}
epatch ${FILESDIR}/${P}-gentoo.diff
}
src_install() {
exeinto /usr/lib/im
doexe src/htt src/htt_server
exeinto /etc/init.d
newexe ${FILESDIR}/iiim.initd iiim
insinto /etc/im
doins ${FILESDIR}/htt.conf
dodoc ChangeLog htt.conf
}
|