blob: 50810ac6ea0e1a01ecfedf1ffe1d361c2d20ac28 (
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
42
43
44
45
46
47
48
49
50
51
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-i18n/skkfep/skkfep-0.87.ebuild,v 1.2 2007/01/05 16:34:52 flameeyes Exp $
inherit eutils
KH_P="${PN}0.86c-kh1.2.10"
DESCRIPTION="A SKK-like Japanese input method for console"
HOMEPAGE="http://homepage2.nifty.com/aito/soft.html"
SRC_URI="http://homepage2.nifty.com/aito/skkfep/${P}.tar.gz"
# "http://www1.interq.or.jp/~deton/jvim-skk/${KH_P}.patch.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~ppc ~sparc ~alpha"
IUSE=""
DEPEND=">=sys-apps/sed-4
sys-apps/gawk
sys-libs/ncurses"
RDEPEND="virtual/skkserv"
#S=${WORKDIR}/${PN}
#src_unpack() {
# unpack ${A}
# cd ${S}
# epatch ../${KH_P}.patch
#}
src_compile() {
sed -i -e 's/solaris2/linux/' \
-e '/^#define USE_SKKSRCH/s/^/\/* /' \
-e '/^#define BOTH_SERVER_AND_SKKSRCH/s/^/\/* /' \
-e '/SUSPEND_FEP/s/^\/\*//' config.h
sed -i -e 's/termcap/curses/' \
-e '/skksrch/s/skksrch\.[co]//' protoMakefile
make || die "make failed."
}
src_install() {
dobin skkfep || die
doman skkfep.1
dodoc README* HISTORY INSTALL TODO
}
pkg_postinst() {
elog "Don't forget to set SKKSERVER to your local skkserv host."
}
|