diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2003-03-10 12:51:38 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2003-03-10 12:51:38 +0000 |
commit | 58cc545d918e51c0f5510d3a0dc97c56880cee26 (patch) | |
tree | 8a396b2b9c50817673770be0600a261fd6487a61 /app-text/spellutils | |
parent | k6 fixes (diff) | |
download | gentoo-2-58cc545d918e51c0f5510d3a0dc97c56880cee26.tar.gz gentoo-2-58cc545d918e51c0f5510d3a0dc97c56880cee26.tar.bz2 gentoo-2-58cc545d918e51c0f5510d3a0dc97c56880cee26.zip |
new package
Diffstat (limited to 'app-text/spellutils')
-rw-r--r-- | app-text/spellutils/ChangeLog | 9 | ||||
-rw-r--r-- | app-text/spellutils/files/digest-spellutils-0.7 | 1 | ||||
-rw-r--r-- | app-text/spellutils/spellutils-0.7.ebuild | 25 |
3 files changed, 35 insertions, 0 deletions
diff --git a/app-text/spellutils/ChangeLog b/app-text/spellutils/ChangeLog new file mode 100644 index 000000000000..663a8c44d9b8 --- /dev/null +++ b/app-text/spellutils/ChangeLog @@ -0,0 +1,9 @@ +# ChangeLog for app-text/spellutils +# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/spellutils/ChangeLog,v 1.1 2003/03/10 12:51:38 seemant Exp $ + +*spellutils-0.7 (10 Mar 2003) + + 10 Mar 2003; Seemant Kulleen <seemant@gentoo.org> spellutils-0.7.ebuild: + initial import -- ebuild by: Johannes Günther <guj@hrz.tu-chemnitz.de> in bug + #15698 diff --git a/app-text/spellutils/files/digest-spellutils-0.7 b/app-text/spellutils/files/digest-spellutils-0.7 new file mode 100644 index 000000000000..90e113bb9444 --- /dev/null +++ b/app-text/spellutils/files/digest-spellutils-0.7 @@ -0,0 +1 @@ +MD5 e2f64d49aabb359e79ba588e6c14c3c2 spellutils-0.7.tar.bz2 110421 diff --git a/app-text/spellutils/spellutils-0.7.ebuild b/app-text/spellutils/spellutils-0.7.ebuild new file mode 100644 index 000000000000..7088c4cbec10 --- /dev/null +++ b/app-text/spellutils/spellutils-0.7.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/spellutils/spellutils-0.7.ebuild,v 1.1 2003/03/10 12:51:38 seemant Exp $ + +IUSE="nls" + +DESCRIPTION="spellutils includes 'newsbody' (useful for spellchecking in mails, etc.)" +HOMEPAGE="http://home.worldonline.dk/byrial/spellutils/" +SRC_URI="http://home.worldonline.dk/byrial/spellutils/${P}.tar.bz2" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~x86 ~ppc ~sparc ~alpha ~mips ~hppa ~arm" + +DEPEND="virtual/glibc" + +src_compile() { + econf `use_enable nls` || die + emake || die +} + +src_install() { + einstall + dodoc FILES NEWS README ABOUT-NLS COPYING INSTALL +} |