summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDennis Lamm <expeditioneer@gentoo.org>2016-02-17 22:34:37 +0100
committerDennis Lamm <expeditioneer@gentoo.org>2016-02-17 22:34:51 +0100
commitf5f8ac640f14b6c95c7aff796ece44de6e79158f (patch)
tree23a242cea3e83f17e9810c411d9275796bac0cf7 /dev-libs/link-grammar
parentapp-editors/retext: Fix metadata (diff)
downloadgentoo-f5f8ac640f14b6c95c7aff796ece44de6e79158f.tar.gz
gentoo-f5f8ac640f14b6c95c7aff796ece44de6e79158f.tar.bz2
gentoo-f5f8ac640f14b6c95c7aff796ece44de6e79158f.zip
dev-libs/link-grammar:5.3.3: fixed bug #574872
Package-Manager: portage-2.2.26
Diffstat (limited to 'dev-libs/link-grammar')
-rw-r--r--dev-libs/link-grammar/link-grammar-5.3.3.ebuild13
1 files changed, 9 insertions, 4 deletions
diff --git a/dev-libs/link-grammar/link-grammar-5.3.3.ebuild b/dev-libs/link-grammar/link-grammar-5.3.3.ebuild
index 546f5cdd60fe..dbbbfc4efa8f 100644
--- a/dev-libs/link-grammar/link-grammar-5.3.3.ebuild
+++ b/dev-libs/link-grammar/link-grammar-5.3.3.ebuild
@@ -15,18 +15,21 @@ LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
-IUSE="aspell +hunspell java python static-libs threads"
+IUSE="aspell +hunspell +java python static-libs threads"
DEPEND="
aspell? ( app-text/aspell )
hunspell? ( app-text/hunspell )
- java? ( >=virtual/jdk-0:= dev-java/ant-core )
+ java? ( >=virtual/jdk-1.6:=
+ dev-java/ant-core )
${PYTHON_DEPS}"
RDEPEND="${DEPEND}"
pkg_setup() {
- java-pkg-opt-2_pkg_setup
+ if use java; then
+ java-pkg-opt-2_pkg_setup
+ fi
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"
@@ -40,7 +43,9 @@ src_unpack() {
}
src_prepare() {
- java-pkg-opt-2_src_prepare
+ if use java; then
+ java-pkg-opt-2_src_prepare
+ fi
./autogen.sh || die
}