blob: 4572f6f7cc0c7297d52ecffc545a5b7c84bfbfee (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-i18n/rskkserv/rskkserv-2.95.4.ebuild,v 1.6 2009/08/22 22:07:45 a3li Exp $
inherit ruby eutils
DESCRIPTION="rskkserv is an alternative version of skkserv implemented by Ruby"
HOMEPAGE="http://raa.ruby-lang.org/list.rhtml?name=rskkserv"
SRC_URI="http://www.unixuser.org/~ysjj/rskkserv/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~alpha ~ppc"
IUSE=""
DEPEND="dev-ruby/ruby-tcpwrap"
RDEPEND="${DEPEND}
app-i18n/skk-jisyo"
PROVIDE="virtual/skkserv"
USE_RUBY="ruby18"
src_compile() {
ruby -i -pe "gsub(/with_RUBY/,'with_ruby')" configure || die
econf \
--with-dicfile=/usr/share/skk/SKK-JISYO.L \
--with-cachedir=/var/lib/rskkserv \
--with-piddir=/var/run \
--with-logdir=/var/log \
|| die "econf failed"
emake || die "emake failed"
}
src_install() {
keepdir /var/lib/rskkserv
emake -j1 DESTDIR="${D}" install || die "emake install failed"
newinitd "${FILESDIR}"/rskkserv-2.95.initd rskkserv || die
dodoc ChangeLog
cd doc
dodoc rskkserv.conf.sample
newdoc README.old README
insinto /usr/share/doc/${PF}
doins conf-o2n.rb
newman rskkserv.1.in rskkserv.1
insinto /usr/share/man/ja/man1
newins rskkserv.1.ja_JP.eucJP.in rskkserv.1
}
pkg_postinst() {
elog
elog "If you want to add auxiliary dictionaries (e.g. SKK-JISYO.JIS2,"
elog "SKK-JISYO.jinmei, SKK-JISYO.2ch and so on) you need to emerge"
elog "app-i18n/skk-jisyo-extra and uncomment dictionary entries in"
elog "/etc/rskkserv.conf manually."
elog
draw_line
elog
elog "If you are upgrading from 2.94.x, you may want to use"
elog "conf-o2n.rb in /usr/share/doc/${PF} to convert configuration"
elog "file into new format."
elog
}
|