summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSeemant Kulleen <seemant@gentoo.org>2004-06-16 17:33:41 +0000
committerSeemant Kulleen <seemant@gentoo.org>2004-06-16 17:33:41 +0000
commit4a7e64ba2dd569ef98be1ac49a08fce48be896d6 (patch)
tree70c1c7f0e68d34e7fbf6e2b4515e524887e7ec17 /app-text/aspell/aspell-0.50.5.ebuild
parentversion bump, thanks to Scott Shawcroft <shux_linux@comcast.net> (#53153) (Ma... (diff)
downloadgentoo-2-4a7e64ba2dd569ef98be1ac49a08fce48be896d6.tar.gz
gentoo-2-4a7e64ba2dd569ef98be1ac49a08fce48be896d6.tar.bz2
gentoo-2-4a7e64ba2dd569ef98be1ac49a08fce48be896d6.zip
fix for the patch, only stable is the -r2 which forces the new fixed patched
Diffstat (limited to 'app-text/aspell/aspell-0.50.5.ebuild')
-rw-r--r--app-text/aspell/aspell-0.50.5.ebuild63
1 files changed, 0 insertions, 63 deletions
diff --git a/app-text/aspell/aspell-0.50.5.ebuild b/app-text/aspell/aspell-0.50.5.ebuild
deleted file mode 100644
index 4fbe8490da8c..000000000000
--- a/app-text/aspell/aspell-0.50.5.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2004 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/aspell/aspell-0.50.5.ebuild,v 1.10 2004/06/06 21:31:12 lv Exp $
-
-inherit libtool
-
-DESCRIPTION="A spell checker replacement for ispell"
-HOMEPAGE="http://aspell.net/"
-SRC_URI="http://aspell.net/${P}.tar.gz"
-
-LICENSE="LGPL-2"
-SLOT="0"
-KEYWORDS="~x86 ~ppc sparc ~mips alpha arm hppa amd64 ~ia64 s390"
-IUSE="gpm"
-
-DEPEND=">=sys-libs/ncurses-5.2
- gpm? ( sys-libs/gpm )"
-
-pkg_setup() {
- if [ ${ARCH} = "ppc" ] ; then
- CXXFLAGS="-O2 -fsigned-char"
- CFLAGS=${CXXFLAGS}
- fi
- use gpm && LDFLAGS="-lgpm"
-}
-
-src_compile() {
- elibtoolize --reverse-deps
-
- econf \
- --disable-static \
- --sysconfdir=/etc/aspell \
- --enable-docdir=/usr/share/doc/${PF} || die
-
- emake || die
-}
-
-src_install() {
- dodoc README* TODO
-
- make DESTDIR=${D} install || die
- mv ${D}/usr/share/doc/${PF}/man-html ${D}/usr/share/doc/${PF}/html
- mv ${D}/usr/share/doc/${PF}/man-text ${D}/usr/share/doc/${PF}/text
-
- # install ispell/aspell compatibility scripts
- exeinto /usr/bin
- newexe scripts/ispell ispell-aspell
- newexe scripts/spell spell-aspell
-
- cd examples
- make clean || die
- docinto examples
- dodoc ${S}/examples/*
-
-}
-
-pkg_postinst() {
- einfo "You will need to install a dictionary now. Please choose an"
- einfo "aspell-<LANG> dictionary from the app-dicts category"
- einfo "After installing an aspell dictionary for your language(s),"
- einfo "You may use the aspell-import utility to import your personal"
- einfo "dictionaries from ispell, pspell and the older aspell"
-}