diff options
author | Gluzskiy Alexandr <sss@sss.chaoslab.ru> | 2017-12-22 11:48:50 +0300 |
---|---|---|
committer | Gluzskiy Alexandr <sss@sss.chaoslab.ru> | 2017-12-22 11:48:50 +0300 |
commit | 3804ac39becf1496d369969dd440951c3f34287e (patch) | |
tree | 01f9b761802956539a147e768b60e73d64c56256 /sys-devel/llvm-common | |
parent | a1b540667138de3f7432ccdf193407216fa2b139 (diff) |
llvm-5-git from gentoo //they have removed 5x git ebuilds after release
Diffstat (limited to 'sys-devel/llvm-common')
-rw-r--r-- | sys-devel/llvm-common/llvm-common-5.0.9999.ebuild | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/sys-devel/llvm-common/llvm-common-5.0.9999.ebuild b/sys-devel/llvm-common/llvm-common-5.0.9999.ebuild new file mode 100644 index 0000000..cc7ed2a --- /dev/null +++ b/sys-devel/llvm-common/llvm-common-5.0.9999.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit git-r3 + +DESCRIPTION="Common files shared between multiple slots of LLVM" +HOMEPAGE="https://llvm.org/" +SRC_URI="" +EGIT_REPO_URI="https://git.llvm.org/git/llvm.git + https://github.com/llvm-mirror/llvm.git" +EGIT_BRANCH="release_50" + +LICENSE="UoI-NCSA" +SLOT="0" +KEYWORDS="" +IUSE="" + +RDEPEND="!sys-devel/llvm:0" + +src_unpack() { + git-r3_fetch + git-r3_checkout '' '' '' utils/vim +} + +src_configure() { :; } +src_compile() { :; } +src_test() { :; } + +src_install() { + insinto /usr/share/vim/vimfiles + doins -r utils/vim/*/ + # some users may find it useful + newdoc utils/vim/README README.vim + dodoc utils/vim/vimrc +} |