diff options
author | Jose Alberto Suarez Lopez <bass@gentoo.org> | 2002-05-30 19:16:16 +0000 |
---|---|---|
committer | Jose Alberto Suarez Lopez <bass@gentoo.org> | 2002-05-30 19:16:16 +0000 |
commit | e8da3912389a7b26518f49bc462c24ef3bf4af7d (patch) | |
tree | cebb99582cfd1a0c8e7f950761f3a02182fa5851 /app-i18n | |
parent | Added the debian patch so that GrabWeather is found properly. (diff) | |
download | gentoo-2-e8da3912389a7b26518f49bc462c24ef3bf4af7d.tar.gz gentoo-2-e8da3912389a7b26518f49bc462c24ef3bf4af7d.tar.bz2 gentoo-2-e8da3912389a7b26518f49bc462c24ef3bf4af7d.zip |
minor bugs fixed
Diffstat (limited to 'app-i18n')
-rw-r--r-- | app-i18n/spell/Changelog | 8 | ||||
-rw-r--r-- | app-i18n/spell/files/digest-spell-1.0 | 1 | ||||
-rw-r--r-- | app-i18n/spell/spell-1.0.ebuild | 29 |
3 files changed, 38 insertions, 0 deletions
diff --git a/app-i18n/spell/Changelog b/app-i18n/spell/Changelog new file mode 100644 index 000000000000..49a89dacf1a4 --- /dev/null +++ b/app-i18n/spell/Changelog @@ -0,0 +1,8 @@ +# ChangeLog for app-text/spell +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-i18n/spell/Changelog,v 1.1 2002/05/30 19:16:16 bass Exp $ + +*spell-1.0 (30 May 2002) + + 30 May 2002; J.Alberto S.L. <bass@gentoo.org> spell-1.0.ebuild: + First relase. diff --git a/app-i18n/spell/files/digest-spell-1.0 b/app-i18n/spell/files/digest-spell-1.0 new file mode 100644 index 000000000000..8b3077f21649 --- /dev/null +++ b/app-i18n/spell/files/digest-spell-1.0 @@ -0,0 +1 @@ +MD5 57e17cf64ca458baad606a9022794b6d spell-1.0.tar.gz 44388 diff --git a/app-i18n/spell/spell-1.0.ebuild b/app-i18n/spell/spell-1.0.ebuild new file mode 100644 index 000000000000..da69d3876d5e --- /dev/null +++ b/app-i18n/spell/spell-1.0.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# Author: José Alberto Suárez López <bass@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/app-i18n/spell/spell-1.0.ebuild,v 1.1 2002/05/30 19:16:16 bass Exp $ + +S=${WORKDIR}/${P} +DESCRIPTION="A spell checking program implemented as a wrapper for ispell." +SRC_URI="http://sunsite.doc.ic.ac.uk/pub/Mirrors/ftp.gnu.org/pub/gnu/spell/${P}.tar.gz" +HOMEPAGE="http://www.gnu.org/directory/spell.html" +LICENSE="GPL-2" +DEPEND="app-text/ispell" +RDEPEN="${DEPEND}" +SLOT="0" + +src_compile() { + ./configure \ + --host=${CHOST} \ + --prefix=/usr \ + --infodir=${D}/usr/share/info \ + --mandir=${D}/usr/share/man || die "./configure failed" + emake || die +} +src_install () { + make prefix=${D}/usr install || die +} + +pkg_postinstall () { + rm /usr/share/info/spell.info +} |