diff options
Diffstat (limited to 'eclass/aspell-dict.eclass')
-rw-r--r-- | eclass/aspell-dict.eclass | 15 |
1 files changed, 5 insertions, 10 deletions
diff --git a/eclass/aspell-dict.eclass b/eclass/aspell-dict.eclass index 98d8e7ee6cfa..545aee4244de 100644 --- a/eclass/aspell-dict.eclass +++ b/eclass/aspell-dict.eclass @@ -1,7 +1,7 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author: Seemant Kulleen <seemant@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/eclass/aspell-dict.eclass,v 1.2 2002/08/16 01:34:43 seemant Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/aspell-dict.eclass,v 1.3 2002/08/23 13:42:03 seemant Exp $ # The aspell-dict eclass is designed to streamline the construction of # ebuilds for the new aspell dictionaries (from gnu.org) which support @@ -12,16 +12,13 @@ INHERITED="${INHERITED} ${ECLASS}" EXPORT_FUNCTIONS src_compile src_install -if [ -z ${MY_P} ] -then - MY_P=${PN}-${PV%.*.*}-${PV#*.*.} -fi +MY_P=${PN}-${PV%.*}-${PV#*.*.} S=${WORKDIR}/${MY_P} DESCRIPTION="${ASPELL_LANG} dictionary for aspell" HOMEPAGE="http://www.gnu.org/projects/aspell/index.html" -SRC_URI="http://savannah.gnu.org/download/aspell/dicts/${MY_P}.tar.bz2" +SRC_URI="ftp://ftp.gnu.org/gnu/aspell/${MY_P}.tar.bz2" -DEPEND="=app-text/aspell-0.50*" +DEPEND=">=app-text/aspell-0.50" SLOT="0" LICENSE="as-is" @@ -34,9 +31,7 @@ aspell-dict_src_compile() { aspell-dict_src_install() { - make \ - DESTDIR=${D} \ - install || die + make DESTDIR=${D} install || die dodoc Copyright README info } |