diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2002-03-15 03:51:51 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2002-03-15 03:51:51 +0000 |
commit | 36ea7c35a9e97e8fdfab3892aae2d5cfb2a369aa (patch) | |
tree | a141932a1f0515909fd2cf040235ecf9806ef279 /app-text | |
parent | unmasked pcmcia-cs-3.1.31-r4 (diff) | |
download | historical-36ea7c35a9e97e8fdfab3892aae2d5cfb2a369aa.tar.gz historical-36ea7c35a9e97e8fdfab3892aae2d5cfb2a369aa.tar.bz2 historical-36ea7c35a9e97e8fdfab3892aae2d5cfb2a369aa.zip |
w00t! it _finally_ merges! the beast is dead, the beast is dead
Diffstat (limited to 'app-text')
-rw-r--r-- | app-text/aspell/ChangeLog | 12 | ||||
-rw-r--r-- | app-text/aspell/aspell-0.33.7.1-r1.ebuild | 52 | ||||
-rw-r--r-- | app-text/aspell/files/digest-aspell-0.33.7.1-r1 | 2 |
3 files changed, 65 insertions, 1 deletions
diff --git a/app-text/aspell/ChangeLog b/app-text/aspell/ChangeLog index 1af3cf7276c3..3d932be153fa 100644 --- a/app-text/aspell/ChangeLog +++ b/app-text/aspell/ChangeLog @@ -1,6 +1,16 @@ # ChangeLog for app-text/aspell # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/app-text/aspell/ChangeLog,v 1.1 2002/02/01 21:53:09 gbevin Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/aspell/ChangeLog,v 1.2 2002/03/15 03:51:51 seemant Exp $ + +*aspell-0.33.7.1-r1 (12 Mar 2002) + + 12 Mar 2002; Seemant Kulleen <seemant@gentoo.org> aspell-0.33.7.1-r1 : + + OK, finally this thing merges! It has some _strange_ issues with optimisation + levels. Specifically, they need to be specified _before_ ./configure. Go + figure. Anyway, now this is compatible with the newest pspell library, not + the older ones. Also, this uses a patch from the author's page as well, in + order to actually compile. *aspell-0.32.6 (1 Feb 2002) diff --git a/app-text/aspell/aspell-0.33.7.1-r1.ebuild b/app-text/aspell/aspell-0.33.7.1-r1.ebuild new file mode 100644 index 000000000000..408f4e52d3ec --- /dev/null +++ b/app-text/aspell/aspell-0.33.7.1-r1.ebuild @@ -0,0 +1,52 @@ +# 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> +# /space/gentoo/cvsroot/gentoo-x86/app-text/aspell/aspell-0.33.ebuild,v 1.2 2001/05/28 14:32:32 achim Exp + + +MY_P=${PN}-.33.7.1 +S=${WORKDIR}/${MY_P} +DESCRIPTION="A spell checker replacement for ispell" +SRC_URI="http://download.sourceforge.net/aspell/${MY_P}.tar.gz http://prdownloads.sourceforge.net/aspell/aspell-.33-fix2.diff" +HOMEPAGE="http://aspell.sourceforge.net" + +DEPEND=">=app-text/pspell-0.12 + >=sys-libs/ncurses-5.2" + +CXXFLAGS="-O3" +CFLAGS=${CXXFLAGS} + +src_unpack() { + unpack ${MY_P}.tar.gz + cd ${S} + patch -p0 < ${DISTDIR}/aspell-.33-fix2.diff +} + +src_compile() { + + libtoolize --copy --force + aclocal + + ./configure \ + --prefix=/usr \ + --sysconfdir=/etc/aspell \ + --host=${CHOST} \ + --enable-doc-dir=/usr/share/doc/${P} || die + + emake || die + +} + +src_install () { + + make DESTDIR=${D} install || die + cd ${D}/usr/share/doc/${P} + mv man-html html + mv man-text txt + prepalldocs + cd ${S} + + dodoc README* TODO + +} + diff --git a/app-text/aspell/files/digest-aspell-0.33.7.1-r1 b/app-text/aspell/files/digest-aspell-0.33.7.1-r1 new file mode 100644 index 000000000000..a04a7baf0f1c --- /dev/null +++ b/app-text/aspell/files/digest-aspell-0.33.7.1-r1 @@ -0,0 +1,2 @@ +MD5 5a975196883a139e6759701633021955 aspell-.33.7.1.tar.gz 1647417 +MD5 f8f66e0b5c5869ab8f864d62529ed0cf aspell-.33-fix2.diff 1421 |