1 | # Copyright 1999-2003 Gentoo Technologies, Inc. |
1 | # Copyright 1999-2004 Gentoo Foundation |
2 | # Distributed under the terms of the GNU General Public License v2 |
2 | # Distributed under the terms of the GNU General Public License v2 |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/freedict.eclass,v 1.1 2003/03/18 03:49:08 seemant Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/freedict.eclass,v 1.16 2007/01/25 21:17:12 eroyf Exp $ |
4 | |
4 | |
5 | # Author: Seemant Kulleen <seemant@gentoo.org> |
5 | # Author: Seemant Kulleen <seemant@gentoo.org> |
6 | # This eclass exists to ease the installation of freedict translation |
6 | # This eclass exists to ease the installation of freedict translation |
7 | # dictionaries. The only variables which need to be defined in the actual |
7 | # dictionaries. The only variables which need to be defined in the actual |
8 | # ebuilds are FORLANG and TOLANG for the source and target languages, |
8 | # ebuilds are FORLANG and TOLANG for the source and target languages, |
9 | # respectively. |
9 | # respectively. |
|
|
10 | |
|
|
11 | inherit eutils |
10 | |
12 | |
11 | IUSE="" |
13 | IUSE="" |
12 | |
14 | |
13 | MY_P=${PN/freedict-/} |
15 | MY_P=${PN/freedict-/} |
14 | |
16 | |
… | |
… | |
17 | HOMEPAGE="http://www.freedict.de" |
19 | HOMEPAGE="http://www.freedict.de" |
18 | SRC_URI="http://freedict.sourceforge.net/download/linux/${MY_P}.tar.gz" |
20 | SRC_URI="http://freedict.sourceforge.net/download/linux/${MY_P}.tar.gz" |
19 | |
21 | |
20 | SLOT="0" |
22 | SLOT="0" |
21 | LICENSE="GPL-2" |
23 | LICENSE="GPL-2" |
22 | KEYWORDS="x86" |
24 | KEYWORDS="x86 ~amd64 ppc sparc alpha mips ~hppa" |
23 | |
25 | |
24 | DEPEND="app-text/dictd" |
26 | DEPEND="app-text/dictd" |
25 | |
27 | |
26 | src_install() { |
28 | freedict_src_install() { |
27 | insinto /usr/lib/dict |
29 | insinto /usr/$(get_libdir)/dict |
28 | doins ${MY_P}.dict.dz |
30 | doins ${MY_P}.dict.dz |
29 | doins ${MY_P}.index |
31 | doins ${MY_P}.index |
30 | } |
32 | } |
|
|
33 | |
|
|
34 | EXPORT_FUNCTIONS src_install |