blob: a6b19dea45fffeb8ab7d9c95dd7b71fd4b548845 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-i18n/multiskkserv/multiskkserv-20051220.ebuild,v 1.2 2007/08/16 16:12:55 matsuu Exp $
inherit eutils fixheadtails
DESCRIPTION="SKK server that handles multiple dictionaries"
HOMEPAGE="http://www3.big.or.jp/~sian/linux/products/"
SRC_URI="http://www3.big.or.jp/~sian/linux/products/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86"
IUSE=""
DEPEND="dev-db/cdb"
RDEPEND="|| (
>=app-i18n/skk-jisyo-200705
app-i18n/skk-jisyo-cdb
)"
PROVIDE="virtual/skkserv"
pkg_setup() {
if has_version '>=app-i18n/skk-jisyo-200705' && ! built_with_use '>=app-i18n/skk-jisyo-200705' cdb ; then
eerror "multiskkserv requires skk-jisyo to be built with cdb support. Please add"
eerror "'cdb' to your USE flags, and re-emerge app-i18n/skk-jisyo."
die "Missing cdb USE flag."
fi
}
src_unpack() {
unpack ${A}
cd "${S}"
ht_fix_all
}
src_compile() {
econf --with-cdb=yes || die
emake || die
}
src_install() {
emake DESTDIR="${D}" install || die
newconfd "${FILESDIR}"/multiskkserv.conf multiskkserv
newinitd "${FILESDIR}"/multiskkserv.initd multiskkserv
dodoc AUTHORS ChangeLog NEWS README*
}
pkg_postinst() {
elog "By default, multiskkserv will look up only SKK-JISYO.L.cdb."
elog "If you want to use more dictionaries,"
elog "edit /etc/conf.d/multiskkserv manually."
}
|