blob: 92101f5bcd01305dfa0ecce105bd0c9c5023d5ae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: $
S=${WORKDIR}
MY_P=${PN/freedict-/}
DESCRIPTION="Freedict english->dutch dictionary"
SRC_URI="http://freedict.sf.net/download/linux/${MY_P}.tar.gz"
HOMEPAGE="http://www.freedict.de"
DEPEND=">=app-text/dictd-1.5.5"
SLOT="0"
LICENSE="GPL"
KEYWORDS="*"
src_install () {
dodir /usr/lib/dict
insinto /usr/lib/dict
doins ${MY_P}.dict.dz
doins ${MY_P}.index
}
|