aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Ammerlaan <andrewammerlaan@riseup.net>2021-03-04 11:22:00 +0100
committerAndrew Ammerlaan <andrewammerlaan@riseup.net>2021-03-04 11:22:00 +0100
commitda61776ce7660953c99199729afeffc2483b7eb4 (patch)
treecb5780379f06c32d6850330ea4a1a4d0f9eed723 /sci-misc/stanford-parser/stanford-parser-1.6.ebuild
parentsci-misc/stanford-tagger: EAPI bump, version bump 4.2.0 (diff)
downloadsci-da61776ce7660953c99199729afeffc2483b7eb4.tar.gz
sci-da61776ce7660953c99199729afeffc2483b7eb4.tar.bz2
sci-da61776ce7660953c99199729afeffc2483b7eb4.zip
sci-misc/stanford-parser: version bump 4.2.0, EAPI bump
Package-Manager: Portage-3.0.16, Repoman-3.0.2 Signed-off-by: Andrew Ammerlaan <andrewammerlaan@riseup.net>
Diffstat (limited to 'sci-misc/stanford-parser/stanford-parser-1.6.ebuild')
-rw-r--r--sci-misc/stanford-parser/stanford-parser-1.6.ebuild44
1 files changed, 0 insertions, 44 deletions
diff --git a/sci-misc/stanford-parser/stanford-parser-1.6.ebuild b/sci-misc/stanford-parser/stanford-parser-1.6.ebuild
deleted file mode 100644
index 81b297db0..000000000
--- a/sci-misc/stanford-parser/stanford-parser-1.6.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-JAVA_PKG_IUSE="doc source"
-inherit eutils java-pkg-2 java-ant-2
-
-MY_PV=2007-08-19
-MY_P=${PN}-${MY_PV}
-
-DESCRIPTION="Stanfords statistical natural language parsers"
-HOMEPAGE="http://www-nlp.stanford.edu/software/"
-SRC_URI="http://www-nlp.stanford.edu/software/${MY_P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~x86"
-IUSE="${IUSE}"
-
-COMMON_DEP=""
-DEPEND=">=virtual/jdk-1.5
- ${COMMON_DEP}"
-RDEPEND=">=virtual/jre-1.5
- ${COMMON_DEP}"
-
-S="${WORKDIR}/${MY_P}"
-
-EANT_BUILD_TARGET="compile"
-
-src_install() {
- java-pkg_dojar stanford-parser.jar
- if use doc ; then
- java-pkg_dojavadoc javadoc
- fi
- if use source ; then
- java-pkg_dosrc src
- fi
- dodoc README.txt README_dependencies.txt cedict_readme.txt
- insinto /usr/share/${PN}
- doins *ser.gz
- java-pkg_dolauncher stanford-lexparser --java_args -Xmx200m --main edu.stanford.nlp.parser.lexparser.LexicalizedParser
- java-pkg_dolauncher stanford-lexparser-gui --java_args "-server -Xmx600m" --main edu.stanford.nlp.parser.ui.Parser
-}