summaryrefslogtreecommitdiff
blob: 7b1802401d729c512efdc73baa9a528a7bb7b5c0 (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
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

EAPI=6
inherit unpacker

DESCRIPTION="WordNet for dict"
HOMEPAGE="http://wordnet.princeton.edu/"
SRC_URI="mirror://debian/pool/main/w/wordnet/dict-wn_${PV/_p/-}_all.deb"

LICENSE="Princeton"
SLOT="0"
KEYWORDS="amd64 ppc ppc64 sparc x86"

DEPEND=">=app-text/dictd-1.5.5"

S=${WORKDIR}

src_unpack() {
	unpack_deb ${A}
}

src_install() {
	insinto /usr/lib/dict
	doins usr/share/dictd/{wn.dict.dz,wn.index}
}