blob: 1f2115031fc62cca4bd33c30d546bbac79d0187c (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-dicts/duali-data/duali-data-0.1b.ebuild,v 1.4 2004/05/12 21:17:04 kloeri Exp $
IUSE="X gnome"
DESCRIPTION="Dictionary data for the Arab dictionary project duali"
HOMEPAGE="http://www.arabeyes.org/project.php?proj=Duali"
SRC_URI="mirror://sourceforge/arabeyes/${P}.tar.gz"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~x86 ~amd64 ~ia64 ~ppc ~sparc alpha ~hppa ~mips"
DEPEND="app-text/duali"
src_compile() {
dict2db --path ./ || die
}
src_install() {
insinto /usr/share/duali
doins stems.db prefixes.db suffixes.db
doins tableab tableac tablebc
dodoc gpl.txt README
}
|