summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMart Raudsepp <leio@gentoo.org>2008-03-10 22:23:08 +0000
committerMart Raudsepp <leio@gentoo.org>2008-03-10 22:23:08 +0000
commit3baf9610039f9dea2612618890c0a045c074ed9e (patch)
treef864087c6ecb2e97b081cf55b48a9d8118a2d14e /app-text
parentruby is needed for context, not for all texlive (diff)
downloadgentoo-2-3baf9610039f9dea2612618890c0a045c074ed9e.tar.gz
gentoo-2-3baf9610039f9dea2612618890c0a045c074ed9e.tar.bz2
gentoo-2-3baf9610039f9dea2612618890c0a045c074ed9e.zip
Remove old versions and a stale patch
(Portage version: 2.1.4.4)
Diffstat (limited to 'app-text')
-rw-r--r--app-text/enchant/enchant-1.1.3.ebuild26
-rw-r--r--app-text/enchant/enchant-1.1.6.ebuild26
-rw-r--r--app-text/enchant/files/enchant-1.0.0-alpha.patch29
3 files changed, 0 insertions, 81 deletions
diff --git a/app-text/enchant/enchant-1.1.3.ebuild b/app-text/enchant/enchant-1.1.3.ebuild
deleted file mode 100644
index 17d61d9c5f88..000000000000
--- a/app-text/enchant/enchant-1.1.3.ebuild
+++ /dev/null
@@ -1,26 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/enchant/enchant-1.1.3.ebuild,v 1.18 2007/06/28 23:11:04 vapier Exp $
-
-inherit gnome2
-
-DESCRIPTION="Spellchecker wrapping library"
-HOMEPAGE="http://www.abisource.com/enchant/"
-SRC_URI="mirror://sourceforge/abiword/${P}.tar.gz"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 mips ppc ppc64 sh sparc x86"
-IUSE=""
-# FIXME : some sort of proper spellchecker selection needed
-
-# The || is meant to make sure there is a a default spell lib to work with
-# 25 Aug 2003; foser <foser@gentoo.org>
-
-RDEPEND=">=dev-libs/glib-2
- || ( virtual/aspell-dict app-text/ispell )"
-
-DEPEND="${RDEPEND}
- dev-util/pkgconfig"
-
-DOCS="AUTHORS BUGS ChangeLog HACKING MAINTAINERS NEWS README TODO"
diff --git a/app-text/enchant/enchant-1.1.6.ebuild b/app-text/enchant/enchant-1.1.6.ebuild
deleted file mode 100644
index 3c6659263c8a..000000000000
--- a/app-text/enchant/enchant-1.1.6.ebuild
+++ /dev/null
@@ -1,26 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/enchant/enchant-1.1.6.ebuild,v 1.12 2007/06/28 23:11:04 vapier Exp $
-
-inherit gnome2
-
-DESCRIPTION="Spellchecker wrapping library"
-HOMEPAGE="http://www.abisource.com/enchant/"
-SRC_URI="http://www.abisource.com/downloads/${PN}/${PV}/${P}.tar.gz"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sh sparc x86"
-IUSE=""
-# FIXME : some sort of proper spellchecker selection needed
-
-# The || is meant to make sure there is a a default spell lib to work with
-# 25 Aug 2003; foser <foser@gentoo.org>
-
-RDEPEND=">=dev-libs/glib-2
- || ( virtual/aspell-dict app-text/ispell )"
-
-DEPEND="${RDEPEND}
- dev-util/pkgconfig"
-
-DOCS="AUTHORS BUGS ChangeLog HACKING MAINTAINERS NEWS README TODO"
diff --git a/app-text/enchant/files/enchant-1.0.0-alpha.patch b/app-text/enchant/files/enchant-1.0.0-alpha.patch
deleted file mode 100644
index 2ea15e1b6c01..000000000000
--- a/app-text/enchant/files/enchant-1.0.0-alpha.patch
+++ /dev/null
@@ -1,29 +0,0 @@
---- enchant-1.0.0/src/ispell/lookup.cpp.aron 2003-08-26 09:20:40.000000000 -0400
-+++ enchant-1.0.0/src/ispell/lookup.cpp 2003-11-02 00:08:56.000000000 -0500
-@@ -381,22 +381,22 @@
- if (dp->word == (char *) -1)
- dp->word = NULL;
- else
-- dp->word = &m_hashstrings [ reinterpret_cast<int>(dp->word) ];
-+ dp->word = &m_hashstrings [ reinterpret_cast<unsigned long>(dp->word) ];
- if (dp->next == (struct dent *) -1)
- dp->next = NULL;
- else
-- dp->next = &m_hashtbl [ reinterpret_cast<int>(dp->next) ];
-+ dp->next = &m_hashtbl [ reinterpret_cast<unsigned long>(dp->next) ];
- }
- }
-
- for (i = m_numsflags + m_numpflags, entry = m_sflaglist; --i >= 0; entry++)
- {
- if (entry->stripl)
-- entry->strip = reinterpret_cast<ichar_t *>(&m_hashstrings[reinterpret_cast<int>(entry->strip)]);
-+ entry->strip = reinterpret_cast<ichar_t *>(&m_hashstrings[reinterpret_cast<unsigned long>(entry->strip)]);
- else
- entry->strip = NULL;
- if (entry->affl)
-- entry->affix = reinterpret_cast<ichar_t *>(&m_hashstrings[reinterpret_cast<int>(entry->affix)]);
-+ entry->affix = reinterpret_cast<ichar_t *>(&m_hashstrings[reinterpret_cast<unsigned long>(entry->affix)]);
- else
- entry->affix = NULL;
- }