diff options
author | Michał Górny <mgorny@gentoo.org> | 2018-08-01 18:37:45 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2018-08-01 22:53:18 +0200 |
commit | 489d16282e799fe32caa98ff9827993b7f1a7e2c (patch) | |
tree | e44b2e2e0f155160ac5b068912bf87c19c2d71dc /sys-devel/llvmgold | |
parent | sys-devel/llvm: 9999 is now 8.0 (diff) | |
download | gentoo-489d16282e799fe32caa98ff9827993b7f1a7e2c.tar.gz gentoo-489d16282e799fe32caa98ff9827993b7f1a7e2c.tar.bz2 gentoo-489d16282e799fe32caa98ff9827993b7f1a7e2c.zip |
sys-devel/llvmgold: Add version 8 for trunk
Diffstat (limited to 'sys-devel/llvmgold')
-rw-r--r-- | sys-devel/llvmgold/llvmgold-8.ebuild | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/sys-devel/llvmgold/llvmgold-8.ebuild b/sys-devel/llvmgold/llvmgold-8.ebuild new file mode 100644 index 000000000000..aa147f6824c1 --- /dev/null +++ b/sys-devel/llvmgold/llvmgold-8.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +DESCRIPTION="LLVMgold plugin symlink for autoloading" +HOMEPAGE="https://llvm.org/" +SRC_URI="" + +LICENSE="public-domain" +SLOT="0" +KEYWORDS="" +IUSE="" + +RDEPEND="sys-devel/llvm:${PV}[gold] + !sys-devel/llvm:0" + +S=${WORKDIR} + +src_install() { + dodir "/usr/${CHOST}/binutils-bin/lib/bfd-plugins" + dosym "../../../../lib/llvm/${PV}/$(get_libdir)/LLVMgold.so" \ + "/usr/${CHOST}/binutils-bin/lib/bfd-plugins/LLVMgold.so" +} |