blob: 7ae83304772ef27a628fbad38ead6bb37f33fedd (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-dicts/dictd-wn/dictd-wn-2.0.ebuild,v 1.9 2007/08/06 17:28:41 philantrop Exp $
inherit eutils
MY_P=${P/td/t}
DESCRIPTION="WordNet for dict"
HOMEPAGE="http://www.dict.org/"
SRC_URI="ftp://ftp.dict.org/pub/dict/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
IUSE=""
KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
DEPEND=">=app-text/dictd-1.5.5"
S=${WORKDIR}/${MY_P}
src_compile() {
econf || die "configure failed"
emake || die "compile failed"
emake db || die "compile database failed"
}
src_install() {
cd ${S}
insinto /usr/lib/dict
doins wn.dict.dz wn.index || die
}
|