summaryrefslogtreecommitdiff
blob: 9d1768df3cb2940fc5f0259e25bfd418fba8f5fa (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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# /space/gentoo/cvsroot/gentoo-x86/skel.ebuild,v 1.6 2002/05/07 03:58:19 drobbins Exp

A="kinput2-v3.1-beta4.tar.gz"

S="${WORKDIR}/kinput2-v3.1-beta4"

DESCRIPTION="A Japanese input server which supports the XIM protocol"

SRC_URI="ftp://ftp.sra.co.jp/pub/x11/kinput2/${A}"

LICENSE="as-is"

DEPEND="virtual/glibc
	canna? >=app-i18n/canna-3.5_beta2-r1
	freewnn? >=app-i18n/freewnn-1.1.1_alpha19"

# Hack to default to canna if the user doesn't chose either canna or freewnn
if [ -z "`use freewnn`" ]
then
	DEPEND="${DEPEND}
		>=app-i18n/canna-3.5_beta2-r1"
fi

RDEPEND=${DEPEND}

SLOT=0

src_unpack() {

	# unpack the archive
	unpack ${A}

	# patch Kinput2.conf to ensure that files are installed into image dir
	cd ${S}
	patch -p0 < ${FILESDIR}/${P}/gentoo.diff || die
	
	# hack to set define UseCanna, define UseWnn or both
	cp Kinput2.conf Kinput2.tmp
	use canna && sed -e "s:\/\* \#define UseCanna \*\/:\#define UseCanna:" Kinput2.tmp > Kinput2.conf
	cp Kinput2.conf Kinput2.tmp
 	use freewnn && sed -e "s:\/\* \#define UseWnn \*\/:\#define UseWnn:" Kinput2.tmp > Kinput2.conf  
	# default to UseCanna if we don't have freewnn in useflags
	cp Kinput2.conf Kinput2.tmp
	use freewnn || sed -e "s:\/\* \#define UseCanna \*\/:\#define UseCanna:" Kinput2.tmp > Kinput2.conf || die
          	
}

src_compile() {

	# create a Makefile from Kinput2.conf
	xmkmf          || die "xmkmf failed"
	make Makefiles || die "Makefile creation failed"

	# build Kinput2
	make depend ; make
}

src_install () {

	# install libs, executables, dictionaries
	make DESTDIR=${D} install     || die "installation failed"

	# install docs
	dodoc README NEWS
}