dev-lang/rust: fix llvm dependency
authorDoug Goldstein <cardoe@gentoo.org>
Sat, 26 Mar 2016 14:48:49 +0000 (09:48 -0500)
committerDoug Goldstein <cardoe@gentoo.org>
Sat, 26 Mar 2016 14:48:49 +0000 (09:48 -0500)
Technically prior to LLVM 3.7, Gentoo still supports static linking which
is what the Rust build does by default so LLVM is not a run-time depend.

Package-Manager: portage-2.2.26
Signed-off-by: Doug Goldstein <cardoe@gentoo.org>
dev-lang/rust/rust-1.7.0.ebuild

index f2c2cb2699b18eb5964ce74d82ff9e30d4e868d5..c17bed8f61ac030632a2d9949d2b6b60df1c4dbd 100644 (file)
@@ -35,15 +35,14 @@ KEYWORDS="~amd64 ~x86"
 IUSE="clang debug doc libcxx +system-llvm"
 REQUIRED_USE="libcxx? ( clang )"
 
-RDEPEND="libcxx? ( sys-libs/libcxx )
-       system-llvm? ( >=sys-devel/llvm-3.6.0:=[multitarget]
-               <sys-devel/llvm-3.7.0:=[multitarget] )
-"
+RDEPEND="libcxx? ( sys-libs/libcxx )"
 
 DEPEND="${RDEPEND}
        ${PYTHON_DEPS}
        >=dev-lang/perl-5.0
        clang? ( sys-devel/clang )
+       system-llvm? ( >=sys-devel/llvm-3.6.0[multitarget]
+               <sys-devel/llvm-3.7.0[multitarget] )
 "
 
 PDEPEND=">=app-eselect/eselect-rust-0.3_pre20150425"