From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 3BE3B1388BF for ; Wed, 17 Feb 2016 21:35:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2F95721C001; Wed, 17 Feb 2016 21:35:01 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BE92621C001 for ; Wed, 17 Feb 2016 21:35:00 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9AD51340817 for ; Wed, 17 Feb 2016 21:34:59 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EFF05CEB for ; Wed, 17 Feb 2016 21:34:57 +0000 (UTC) From: "Dennis Lamm" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Dennis Lamm" Message-ID: <1455744891.f5f8ac640f14b6c95c7aff796ece44de6e79158f.expeditioneer@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/link-grammar/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/link-grammar/link-grammar-5.3.3.ebuild X-VCS-Directories: dev-libs/link-grammar/ X-VCS-Committer: expeditioneer X-VCS-Committer-Name: Dennis Lamm X-VCS-Revision: f5f8ac640f14b6c95c7aff796ece44de6e79158f X-VCS-Branch: master Date: Wed, 17 Feb 2016 21:34:57 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 32e82cde-62e2-48a0-8bcf-e9b06c35e2c0 X-Archives-Hash: cffd6a94376444aae5554944d1caecbf commit: f5f8ac640f14b6c95c7aff796ece44de6e79158f Author: Dennis Lamm gentoo org> AuthorDate: Wed Feb 17 21:34:37 2016 +0000 Commit: Dennis Lamm gentoo org> CommitDate: Wed Feb 17 21:34:51 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f5f8ac64 dev-libs/link-grammar:5.3.3: fixed bug #574872 Package-Manager: portage-2.2.26 dev-libs/link-grammar/link-grammar-5.3.3.ebuild | 13 +++++++++---- 1 file 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 546f5cd..dbbbfc4 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 }