summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Palimaka <kensington@gentoo.org>2014-03-22 18:30:47 +0000
committerMichael Palimaka <kensington@gentoo.org>2014-03-22 18:30:47 +0000
commit42bb86221ec72324caa690d9c1555d796c304f69 (patch)
treeee9110119abe4f0372a220d458c1ece25c7793ef /app-dicts/wordnet
parentRemove old. (diff)
downloadgentoo-2-42bb86221ec72324caa690d9c1555d796c304f69.tar.gz
gentoo-2-42bb86221ec72324caa690d9c1555d796c304f69.tar.bz2
gentoo-2-42bb86221ec72324caa690d9c1555d796c304f69.zip
Remove old.
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 0x06B1F38DCA45A1EC!)
Diffstat (limited to 'app-dicts/wordnet')
-rw-r--r--app-dicts/wordnet/ChangeLog5
-rw-r--r--app-dicts/wordnet/wordnet-3.0-r2.ebuild59
2 files changed, 4 insertions, 60 deletions
diff --git a/app-dicts/wordnet/ChangeLog b/app-dicts/wordnet/ChangeLog
index 80234e953af7..453e4f1e95cd 100644
--- a/app-dicts/wordnet/ChangeLog
+++ b/app-dicts/wordnet/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for app-dicts/wordnet
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-dicts/wordnet/ChangeLog,v 1.25 2014/01/05 11:32:13 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-dicts/wordnet/ChangeLog,v 1.26 2014/03/22 18:30:47 kensington Exp $
+
+ 22 Mar 2014; Michael Palimaka <kensington@gentoo.org> -wordnet-3.0-r2.ebuild:
+ Remove old.
05 Jan 2014; Pacho Ramos <pacho@gentoo.org> metadata.xml:
Cleanup due http://gentoo.2317880.n4.nabble.com/app-dicts-herd-is-empty-
diff --git a/app-dicts/wordnet/wordnet-3.0-r2.ebuild b/app-dicts/wordnet/wordnet-3.0-r2.ebuild
deleted file mode 100644
index 7f3ceb19c7ac..000000000000
--- a/app-dicts/wordnet/wordnet-3.0-r2.ebuild
+++ /dev/null
@@ -1,59 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-dicts/wordnet/wordnet-3.0-r2.ebuild,v 1.6 2012/05/31 03:36:03 zmedico Exp $
-
-inherit eutils flag-o-matic autotools
-
-DESCRIPTION="A lexical database for the English language"
-HOMEPAGE="http://wordnet.princeton.edu/"
-SRC_URI="ftp://ftp.cogsci.princeton.edu/pub/wordnet/${PV}/WordNet-${PV}.tar.gz
- mirror://gentoo/${P}-patchset-1.tar.bz2"
-LICENSE="Princeton"
-
-SLOT="0"
-KEYWORDS="~amd64 ~ppc x86"
-IUSE="doc"
-
-# In contrast to what the configure script seems to imply, Tcl/Tk is NOT optional.
-# cf. bug 163478 for details. (Yes, it's about 2.1 but it's still the same here.)
-DEPEND="dev-lang/tcl
- dev-lang/tk"
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}/WordNet-${PV}"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- # Don't install into PREFIX/dict but PREFIX/share/wordnet/dict
- epatch "${WORKDIR}/${P}-dict-location.patch"
- # Fixes bug 130024, make an additional shared lib
- epatch "${WORKDIR}/${P}-shared-lib.patch"
- # Don't install the docs directly into PREFIX/doc but PREFIX/doc/PN
- epatch "${WORKDIR}/${P}-docs-path.patch"
- epatch "${WORKDIR}"/${P}-CVE-2008-3908.patch #211491
- epatch "${WORKDIR}"/${P}-CVE-2008-2149.patch #211491
-
- # Don't install all the extra docs (html, pdf, ps) without doc USE flag.
- use doc || sed -i -e "s:SUBDIRS =.*:SUBDIRS = man:" doc/Makefile.am
-
- rm -f configure
- eautoreconf
-}
-
-src_compile() {
- append-flags -DUNIX -I"${T}"/usr/include
-
- PLATFORM=linux WN_ROOT="${T}/usr" \
- WN_DICTDIR="${T}/usr/share/wordnet/dict" \
- WN_MANDIR="${T}/usr/share/man" \
- WN_DOCDIR="${T}/usr/share/doc/wordnet-${PV}" \
- WNHOME="/usr/share/wordnet" \
- econf
- emake -e || die "emake Failed"
-}
-
-src_install() {
- emake install DESTDIR="${D}" || die "install failed"
- dodoc AUTHORS ChangeLog INSTALL README || die "dodoc failed"
-}