summaryrefslogtreecommitdiff
blob: f2653b45f5773056384c03442b93435a0728388b (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
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-i18n/iiimsf/iiimsf-11.4_p1467.ebuild,v 1.4 2007/04/28 15:32:17 tove Exp $

inherit iiimf eutils

DESCRIPTION="server program to provide Input Method facilities via IIIMP"

KEYWORDS="x86"
IUSE=""

RDEPEND="dev-libs/libiiimp"
DEPEND="${RDEPEND}
	>=sys-apps/sed-4"

src_unpack() {
	unpack ${A}
	cd "${S}"/src
	sed -i -e 's,$(IM_LIBDIR)/iiimp,/usr/lib,g' Makefile* \
		|| die "sed Makefile.{am,in} failed."
	sed -i -e 's,/usr/lib/im/htt.conf,/etc/im/htt.conf,g' IMSvrCfg.cpp \
		|| die "sed IMSvrCfg.cpp failed."
}

src_install() {
	exeinto /usr/lib/im
	doexe src/htt src/htt_server
	newinitd "${FILESDIR}"/iiim.initd iiim
	insinto /etc/im
	doins "${FILESDIR}"/htt.conf

	dodoc ChangeLog htt.conf
}