Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-devel/llvmgold/
Date: Wed, 01 Aug 2018 20:53:37
Message-Id: 1533156798.489d16282e799fe32caa98ff9827993b7f1a7e2c.mgorny@gentoo
1 commit: 489d16282e799fe32caa98ff9827993b7f1a7e2c
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Aug 1 16:37:45 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Aug 1 20:53:18 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=489d1628
7
8 sys-devel/llvmgold: Add version 8 for trunk
9
10 sys-devel/llvmgold/llvmgold-8.ebuild | 24 ++++++++++++++++++++++++
11 1 file changed, 24 insertions(+)
12
13 diff --git a/sys-devel/llvmgold/llvmgold-8.ebuild b/sys-devel/llvmgold/llvmgold-8.ebuild
14 new file mode 100644
15 index 00000000000..aa147f6824c
16 --- /dev/null
17 +++ b/sys-devel/llvmgold/llvmgold-8.ebuild
18 @@ -0,0 +1,24 @@
19 +# Copyright 1999-2018 Gentoo Foundation
20 +# Distributed under the terms of the GNU General Public License v2
21 +
22 +EAPI=6
23 +
24 +DESCRIPTION="LLVMgold plugin symlink for autoloading"
25 +HOMEPAGE="https://llvm.org/"
26 +SRC_URI=""
27 +
28 +LICENSE="public-domain"
29 +SLOT="0"
30 +KEYWORDS=""
31 +IUSE=""
32 +
33 +RDEPEND="sys-devel/llvm:${PV}[gold]
34 + !sys-devel/llvm:0"
35 +
36 +S=${WORKDIR}
37 +
38 +src_install() {
39 + dodir "/usr/${CHOST}/binutils-bin/lib/bfd-plugins"
40 + dosym "../../../../lib/llvm/${PV}/$(get_libdir)/LLVMgold.so" \
41 + "/usr/${CHOST}/binutils-bin/lib/bfd-plugins/LLVMgold.so"
42 +}