blob: ab23cb8146767fa4bbe7cb463735dcbe43ea4e85 (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-i18n/scim-chinese/scim-chinese-0.2.4.ebuild,v 1.2 2003/09/06 22:19:22 msterret Exp $
inherit rpm
DESCRIPTION="Smart Common Input Method (SCIM) Closed Source Pinyin Input Method"
HOMEPAGE="http://www.turbolinux.com.cn/~suzhe/scim/"
SRC_URI="http://www.turbolinux.com.cn/~suzhe/scim/scim-chinese/${P}-1.i586.rpm"
LICENSE="scim-chinese"
SLOT="0"
KEYWORDS="x86 -*"
IUSE=""
DEPEND="virtual/x11
>=app-i18n/scim-0.6.1"
S=${WORKDIR}
src_compile() {
return
}
dosym_r() {
srcdir=$1
dstdir=$2
for x in `find ${D}${srcdir}`; do
dst=${dstdir}${x#$D$srcdir}
src=${x#$D}
einfo "Linking $src to $dst"
if [ ! -d "`dirname $D$dst`" ]; then
dodir ${dst}
fi
dosym $src $dst
done
}
src_install() {
# get installed scim version
SCIM_VER=$(scim -h | grep "Smart Common Input Method" | awk '{print $5}')
# install into /opt because this is binary-only
PREFIX=/opt/scim-chinese
cd ${S}
insinto ${PREFIX}/lib/scim-1.0/Server
doins usr/lib/scim-1.0/Server/*
dosym_r ${PREFIX}/lib/scim-1.0/Server /usr/lib/scim-1.0/${SCIM_VER}/Server
insinto ${PREFIX}/share/scim/chinese
doins usr/share/scim/chinese/*
dosym_r ${PREFIX}/share/scim/chinese /usr/share/scim/chinese
insinto /etc/gconf/schemas
doins etc/gconf/schemas/*
dodoc usr/share/doc/packages/${PF}/{AUTHORS,COPYING,README}
}
|