blob: e8b6f281259433aaf55261e2e4cb7e7e281b17ec (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-dicts/canna-cannadic/canna-cannadic-0.95-r1.ebuild,v 1.1 2003/09/11 06:59:02 usata Exp $
inherit cannadic
IUSE="canna"
MY_P="${P/canna-/}"
DESCRIPTION="Japanese dictionary as a supplement/replacemnt to the dictionaries distributed with Canna3.5b2"
HOMEPAGE="http://cannadic.oucrc.org/"
SRC_URI="http://cannadic.oucrc.org/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ppc ~sparc ~alpha"
DEPEND="canna? >=canna-3.6_p3-r1"
S="${WORKDIR}/${MY_P}"
CANNADICS="gcanna gcannaf"
src_compile() {
if [ -n "`use canna`" ] ; then
make maindic || die
fi
}
|