commit:     3b796cc233524f8ef026478c645777953883da23
Author:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
AuthorDate: Tue May 26 20:08:08 2020 +0000
Commit:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
CommitDate: Tue May 26 20:08:08 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b796cc2

dev-tcltk/tclreadline: fix dependency and add use tk

Closes: https://bugs.gentoo.org/724038
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org>

 dev-tcltk/tclreadline/tclreadline-2.3.8.ebuild | 12 ++++++++----
 1 file changed, 8 insertions(+), 4 deletions(-)

diff --git a/dev-tcltk/tclreadline/tclreadline-2.3.8.ebuild 
b/dev-tcltk/tclreadline/tclreadline-2.3.8.ebuild
index afd3eb3663d..9ebdb8473d8 100644
--- a/dev-tcltk/tclreadline/tclreadline-2.3.8.ebuild
+++ b/dev-tcltk/tclreadline/tclreadline-2.3.8.ebuild
@@ -11,16 +11,20 @@ 
SRC_URI="https://github.com/flightaware/tclreadline/archive/v${PV}.tar.gz
 LICENSE="BSD"
 SLOT="0"
 KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux"
-IUSE=""
+IUSE="tk"
 
 DEPEND="dev-lang/tcl:0=
-       sys-libs/readline:0="
+       sys-libs/readline:0=
+       tk? ( dev-lang/tk:0= )"
 RDEPEND="${DEPEND}"
 BDEPEND=""
 
 src_configure() {
-       econf \
-               --with-tcl="${EPREFIX}/usr/$(get_libdir)"
+       local myConf=--with-tcl="${EPREFIX}/usr/$(get_libdir)"
+       if ! use tk; then
+               myConf="$myConf --without-tk"
+       fi
+       econf $myConf
 }
 
 src_install() {

Reply via email to