diff options
author | 2023-12-08 13:29:50 +0100 | |
---|---|---|
committer | 2023-12-08 13:41:31 +0100 | |
commit | daa972beb773afaf3f35c319aa9d9a079903595e (patch) | |
tree | fb9304ad74eb188472c04f6c347f70a6d40f6c96 /sci-electronics/nvc | |
parent | sci-electronics/nvc: fix bash completion install (diff) | |
download | gentoo-daa972beb773afaf3f35c319aa9d9a079903595e.tar.gz gentoo-daa972beb773afaf3f35c319aa9d9a079903595e.tar.bz2 gentoo-daa972beb773afaf3f35c319aa9d9a079903595e.zip |
sci-electronics/nvc: remove jit, not available
Closes: https://bugs.gentoo.org/919451
Signed-off-by: Maciej Barć <xgqt@gentoo.org>
Diffstat (limited to 'sci-electronics/nvc')
-rw-r--r-- | sci-electronics/nvc/nvc-1.11.0.ebuild | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/sci-electronics/nvc/nvc-1.11.0.ebuild b/sci-electronics/nvc/nvc-1.11.0.ebuild index c1e70970c3cf..6dd03d3a04b4 100644 --- a/sci-electronics/nvc/nvc-1.11.0.ebuild +++ b/sci-electronics/nvc/nvc-1.11.0.ebuild @@ -11,8 +11,9 @@ DESCRIPTION="NVC is a VHDL compiler and simulator" HOMEPAGE="https://www.nickg.me.uk/nvc/ https://github.com/nickg/nvc/" -if [[ ${PV} == *9999* ]] ; then +if [[ "${PV}" == *9999* ]] ; then inherit git-r3 + EGIT_REPO_URI="https://github.com/nickg/nvc.git" NVC_SOURCEDIR="${WORKDIR}"/${PN}-${PV} @@ -26,8 +27,7 @@ fi LICENSE="GPL-3+" SLOT="0" -IUSE="debug jit llvm" -REQUIRED_USE="jit? ( llvm )" +IUSE="debug llvm" RESTRICT="test" # Some tests fail. RDEPEND=" @@ -89,7 +89,6 @@ src_configure() { --enable-vital --with-bash-completion="$(get_bashcompdir)" $(use_enable debug) - $(use_enable jit) $(use_enable llvm) ) econf "${myconf[@]}" |