diff options
Diffstat (limited to 'dev-libs/link-grammar')
-rw-r--r-- | dev-libs/link-grammar/ChangeLog | 6 | ||||
-rw-r--r-- | dev-libs/link-grammar/link-grammar-4.7.8.ebuild | 51 | ||||
-rw-r--r-- | dev-libs/link-grammar/link-grammar-4.8.0.ebuild | 50 |
3 files changed, 5 insertions, 102 deletions
diff --git a/dev-libs/link-grammar/ChangeLog b/dev-libs/link-grammar/ChangeLog index 24940ceba3b3..b2d48df3016e 100644 --- a/dev-libs/link-grammar/ChangeLog +++ b/dev-libs/link-grammar/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-libs/link-grammar # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/link-grammar/ChangeLog,v 1.74 2014/03/28 02:20:57 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/link-grammar/ChangeLog,v 1.75 2014/04/26 06:59:31 pacho Exp $ + + 26 Apr 2014; Pacho Ramos <pacho@gentoo.org> -link-grammar-4.7.8.ebuild, + -link-grammar-4.8.0.ebuild: + drop old 28 Mar 2014; Jeroen Roovers <jer@gentoo.org> link-grammar-4.8.6.ebuild: Stable for HPPA (bug #499954). diff --git a/dev-libs/link-grammar/link-grammar-4.7.8.ebuild b/dev-libs/link-grammar/link-grammar-4.7.8.ebuild deleted file mode 100644 index 1021625cafd0..000000000000 --- a/dev-libs/link-grammar/link-grammar-4.7.8.ebuild +++ /dev/null @@ -1,51 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/link-grammar/link-grammar-4.7.8.ebuild,v 1.10 2013/04/01 18:24:10 ago Exp $ - -EAPI=4 -inherit java-pkg-opt-2 eutils - -DESCRIPTION="Link Grammar Parser is a syntactic English parser." -HOMEPAGE="http://www.abisource.com/projects/link-grammar/ http://www.link.cs.cmu.edu/link/" -SRC_URI="http://www.abisource.com/downloads/${PN}/${PV}/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="alpha amd64 ~arm hppa ia64 ppc ppc64 sparc x86" - -# Set the same default as used in app-text/enchant -IUSE="aspell +hunspell java static-libs threads" - -DEPEND="aspell? ( app-text/aspell ) - hunspell? ( app-text/hunspell ) - java? ( >=virtual/jdk-1.5 - dev-java/ant-core )" -RDEPEND="${DEPEND}" - -pkg_setup() { - java-pkg-opt-2_pkg_setup - if use aspell && use hunspell; then - ewarn "You have enabled 'aspell' and 'hunspell' support, but both cannot coexist," - ewarn "only aspell will be build. Press Ctrl+C and set only 'hunspell' USE flag if" - ewarn "you want hunspell support." - fi -} - -src_configure() { - local myconf - - use hunspell && myconf="${myconf} --with-hunspell-dictdir=/usr/share/myspell" - econf \ - --enable-shared \ - $(use_enable aspell) \ - $(use_enable hunspell) \ - $(use_enable java java-bindings) \ - $(use_enable static-libs static) \ - $(use_enable threads pthreads) \ - ${myconf} -} - -src_install() { - default - prune_libtool_files -} diff --git a/dev-libs/link-grammar/link-grammar-4.8.0.ebuild b/dev-libs/link-grammar/link-grammar-4.8.0.ebuild deleted file mode 100644 index cdd8c82bd4dd..000000000000 --- a/dev-libs/link-grammar/link-grammar-4.8.0.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/link-grammar/link-grammar-4.8.0.ebuild,v 1.4 2013/12/22 15:55:26 jer Exp $ - -EAPI=5 -GCONF_DEBUG="no" - -inherit gnome2 java-pkg-opt-2 eutils - -DESCRIPTION="A Syntactic English parser" -HOMEPAGE="http://www.abisource.com/projects/link-grammar/ http://www.link.cs.cmu.edu/link/" -SRC_URI="http://www.abisource.com/downloads/${PN}/${PV}/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~sparc x86" - -# Set the same default as used in app-text/enchant -IUSE="aspell +hunspell java static-libs threads" - -DEPEND=" - aspell? ( app-text/aspell ) - hunspell? ( app-text/hunspell ) - java? ( >=virtual/jdk-1.5 - dev-java/ant-core ) -" -RDEPEND="${DEPEND}" - -pkg_setup() { - java-pkg-opt-2_pkg_setup - if use aspell && use hunspell; then - ewarn "You have enabled 'aspell' and 'hunspell' support, but both cannot coexist," - ewarn "only aspell will be build. Press Ctrl+C and set only 'hunspell' USE flag if" - ewarn "you want hunspell support." - fi -} - -src_configure() { - local myconf - - use hunspell && myconf="${myconf} --with-hunspell-dictdir=/usr/share/myspell" - gnome2_src_configure \ - --enable-shared \ - $(use_enable aspell) \ - $(use_enable hunspell) \ - $(use_enable java java-bindings) \ - $(use_enable static-libs static) \ - $(use_enable threads pthreads) \ - ${myconf} -} |