| 1 |
# Copyright 1999-2004 Gentoo Foundation
|
| 2 |
# Distributed under the terms of the GNU General Public License v2
|
| 3 |
# $Header: /var/cvsroot/gentoo-x86/eclass/freedict.eclass,v 1.13 2005/07/11 15:08:06 swegener Exp $
|
| 4 |
|
| 5 |
# Author: Seemant Kulleen <seemant@gentoo.org>
|
| 6 |
# This eclass exists to ease the installation of freedict translation
|
| 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,
|
| 9 |
# respectively.
|
| 10 |
|
| 11 |
inherit eutils
|
| 12 |
|
| 13 |
IUSE=""
|
| 14 |
|
| 15 |
MY_P=${PN/freedict-/}
|
| 16 |
|
| 17 |
S=${WORKDIR}
|
| 18 |
DESCRIPTION="Freedict for language translation from ${FORLANG} to ${TOLANG}"
|
| 19 |
HOMEPAGE="http://www.freedict.de"
|
| 20 |
SRC_URI="http://freedict.sourceforge.net/download/linux/${MY_P}.tar.gz"
|
| 21 |
|
| 22 |
SLOT="0"
|
| 23 |
LICENSE="GPL-2"
|
| 24 |
KEYWORDS="x86 ~amd64 ppc ~sparc ~alpha ~mips ~hppa"
|
| 25 |
|
| 26 |
DEPEND="app-text/dictd"
|
| 27 |
|
| 28 |
freedict_src_install() {
|
| 29 |
insinto /usr/$(get_libdir)/dict
|
| 30 |
doins ${MY_P}.dict.dz
|
| 31 |
doins ${MY_P}.index
|
| 32 |
}
|
| 33 |
|
| 34 |
EXPORT_FUNCTIONS src_install
|