blob: ee97ff8a2cc951bcefe56ee27c2ea5dadaa0be20 (
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
68
69
70
71
72
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-i18n/xcin/xcin-2.5.3_pre3.ebuild,v 1.2 2004/06/24 21:56:48 agriffis Exp $
inherit rpm eutils
XCINRPMSRC="${P/_/.}-20.10.firefly.src.rpm"
DESCRIPTION="Chinese X Input Method"
HOMEPAGE="http://xcin.linux.org.tw/
http://firefly.idv.tw/test/Forum.php?Board=1"
SRC_URI="http://firefly.idv.tw/setfont-xft/Fedora/Core_1/SRPMS/${XCINRPMSRC}"
LICENSE="XCIN"
SLOT="0"
KEYWORDS="~x86"
IUSE="nls unicode"
DEPEND="dev-libs/libchewing
nls? ( sys-devel/gettext )
>=app-i18n/libtabe-0.2.5
unicode? ( media-fonts/hkscs-ming )"
S=${WORKDIR}/${PN}
src_unpack() {
rpm_src_unpack
cd ${S}
epatch ${FILESDIR}/xcin-chewing.diff
# gcc3.2 changed the way we deal with -I. So until the configure script
# is updated we need this hack as a work around.
EPATCH_OPTS="-d ${S}" epatch ${FILESDIR}/${P/pre3/pre2}-gentoo.patch
EPATCH_OPTS="-d ${S}" epatch ${FILESDIR}/${PN}-db3.patch
# begin firefly unicode patches
cd ${S}
for I in ${WORKDIR}/*.patch;do
epatch ${I}
done
# paar's fix
mv ${S}/xcin/cin/big5/* ${S}/cin/big5/
}
src_compile() {
econf \
--with-xcin-rcdir=/etc \
--with-xcin-dir=/usr/lib/X11/xcin25 \
--with-db-lib=/usr/lib \
--with-tabe-inc=/usr/include/tabe \
--with-tabe-lib=/usr/lib || die "./configure failed"
emake -j1 || die
}
src_install() {
make \
prefix=${D}/usr \
program_prefix=${D} \
install || die
dodir /etc
insinto /etc
doins ${FILESDIR}/xcinrc
dodoc doc/*
for docdir in doc/En doc/En/internal doc/history doc/internal doc/modules; do
docinto ${docdir#doc/}
dodoc ${docdir}/*
done
}
|