# Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/app-dicts/babytrans-en2pt/babytrans-en2pt-0.2.ebuild,v 1.1 2004/09/22 20:21:55 angusyoung Exp $ MY_P="EngtoIta.dic.gz" MY_F="Engtoita.dic" DESCRIPTION="English to Italian dictionary for Babytrans" HOMEPAGE="ftp://ftp.ac-grenoble.fr/ge/languages/babylon_dict/" SRC_URI="${MY_P}" LICENSE="as-is" SLOT="0" KEYWORDS="~x86" IUSE="" RDEPEND="app-dicts/babytrans" S=${WORKDIR}/${P} RESTRICT="fetch" pkg_nofetch() { einfo "Due to license restrictions that may or may not apply to" einfo "this package, it now has fetch restrictions turned on. This" einfo "means that you must download ${MY_P} file manually from" einfo "${HOMEPAGE} or copy then" einfo "from a windows installation of babylon and put them in " einfo "${DISTDIR}. Finally note that having a license of" einfo "babylon is desired in order to use this package" } src_unpack() { local MY_A unpack ${A} || die "Unable to unpack file ${A}" MY_A="EngtoIta.dic" mv ${MY_A} ${MY_F} || die "Unable to rename file ${MY_A}" } src_install() { cd ${WORKDIR} insinto /usr/share/babytrans doins ${MY_F} || die "Unable to install file ${MY_F}" }