| 1 |
# Copyright 1999-2011 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.18 2008/03/29 02:08:46 philantrop Exp $ |
| 4 |
|
| 5 |
# @ECLASS: freedict.eclass |
| 6 |
# @MAINTAINER: |
| 7 |
# app-dicts@gentoo.org |
| 8 |
# @AUTHOR: |
| 9 |
# Original author: Seemant Kulleen |
| 10 |
# @BLURB: Ease the installation of freedict translation dictionaries |
| 11 |
# @DESCRIPTION: |
| 12 |
# This eclass exists to ease the installation of freedict translation |
| 13 |
# dictionaries. The only variables which need to be defined in the actual |
| 14 |
# ebuilds are FORLANG and TOLANG for the source and target languages, |
| 15 |
# respectively. |
| 16 |
|
| 17 |
# @ECLASS-VARIABLE: FORLANG |
| 18 |
# @DESCRIPTION: |
| 19 |
# Please see above for a description. |
| 20 |
|
| 21 |
# @ECLASS-VARIABLE: TOLANG |
| 22 |
# @DESCRIPTION: |
| 23 |
# Please see above for a description. |
| 24 |
|
| 25 |
inherit eutils |
| 26 |
|
| 27 |
IUSE="" |
| 28 |
|
| 29 |
MY_P=${PN/freedict-/} |
| 30 |
|
| 31 |
S="${WORKDIR}" |
| 32 |
DESCRIPTION="Freedict for language translation from ${FORLANG} to ${TOLANG}" |
| 33 |
HOMEPAGE="http://www.freedict.de" |
| 34 |
SRC_URI="http://freedict.sourceforge.net/download/linux/${MY_P}.tar.gz" |
| 35 |
|
| 36 |
SLOT="0" |
| 37 |
LICENSE="GPL-2" |
| 38 |
|
| 39 |
DEPEND="app-text/dictd" |
| 40 |
|
| 41 |
# @FUNCTION: freedict_src_install |
| 42 |
# @DESCRIPTION: |
| 43 |
# The freedict src_install function, which is exported |
| 44 |
freedict_src_install() { |
| 45 |
insinto /usr/$(get_libdir)/dict |
| 46 |
doins ${MY_P}.dict.dz |
| 47 |
doins ${MY_P}.index |
| 48 |
} |
| 49 |
|
| 50 |
EXPORT_FUNCTIONS src_install |