blob: b4d0cb9be725a9fb4e2e136dcac4e276c2de4d37 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-i18n/anthy-ss/anthy-ss-7029.ebuild,v 1.1 2005/11/13 08:17:19 hattya Exp $
inherit elisp-common eutils
IUSE="emacs ucs4"
MY_P="${P/-ss/}"
DESCRIPTION="Anthy -- free and secure Japanese input system"
HOMEPAGE="http://anthy.sourceforge.jp/"
SRC_URI="mirror://sourceforge.jp/anthy/17177/${MY_P}.tar.gz"
LICENSE="GPL-2"
KEYWORDS="~amd64 ~ppc ~x86"
SLOT="0"
S="${WORKDIR}/${MY_P}"
DEPEND="emacs? ( virtual/emacs )
!app-i18n/anthy"
src_compile() {
local myconf
local cannadicdir=/var/lib/canna/dic/canna
use emacs || myconf="EMACS=no"
use ucs4 && myconf="${myconf} --enable-ucs4"
if has_version 'app-dicts/canna-zipcode'; then
einfo "Adding zipcode.t and jigyosyo.t to anthy.dic."
cp ${cannadicdir}/{zipcode,jigyosyo}.t mkanthydic
sed -i -e "/^EXTRA_DICS/s|$| zipcode.t jigyosyo.t|" mkanthydic/Makefile.in
fi
if has_version 'app-dicts/canna-2ch'; then
einfo "Adding nichan.ctd to anthy.dic."
cp ${cannadicdir}/nichan.ctd mkanthydic/2ch.t
sed -i -e "/^EXTRA_DICS/s|$| 2ch.t|" mkanthydic/Makefile.in
fi
econf ${myconf} || die
emake -j1 || die
}
src_install() {
make DESTDIR=${D} install || die
use emacs && elisp-site-file-install ${FILESDIR}/50anthy-gentoo.el
rm doc/Makefile*
dodoc AUTHORS COPYING DIARY INSTALL NEWS README ChangeLog
dodoc doc/*
}
pkg_postinst() {
use emacs && elisp-site-regen
}
pkg_postrm() {
has_version virtual/emacs && elisp-site-regen
}
|