commit: 489d16282e799fe32caa98ff9827993b7f1a7e2c Author: Michał Górny <mgorny <AT> gentoo <DOT> org> AuthorDate: Wed Aug 1 16:37:45 2018 +0000 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org> CommitDate: Wed Aug 1 20:53:18 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=489d1628
sys-devel/llvmgold: Add version 8 for trunk sys-devel/llvmgold/llvmgold-8.ebuild | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/sys-devel/llvmgold/llvmgold-8.ebuild b/sys-devel/llvmgold/llvmgold-8.ebuild new file mode 100644 index 00000000000..aa147f6824c --- /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" +}
