diff options
author | Sergei Trofimovich <slyfox@gentoo.org> | 2018-02-15 23:20:30 +0000 |
---|---|---|
committer | Sergei Trofimovich <slyfox@gentoo.org> | 2018-02-15 23:23:14 +0000 |
commit | 88aad581ffe6b94fa446a1768f71f85dab516171 (patch) | |
tree | 40d8e9b52789fb9d80a006f325fb61557ebd7a42 /dev-lang/elixir | |
parent | profiles/arch/amd64-fbsd: Mask net-libs/webkit-gtk[geoloc] too (diff) | |
download | gentoo-88aad581ffe6b94fa446a1768f71f85dab516171.tar.gz gentoo-88aad581ffe6b94fa446a1768f71f85dab516171.tar.bz2 gentoo-88aad581ffe6b94fa446a1768f71f85dab516171.zip |
dev-lang/elixir: block against sci-biology/phylip, bug #537514
Reported-by: Toralf Förster
Bug: https://bugs.gentoo.org/537514
Package-Manager: Portage-2.3.24, Repoman-2.3.6
Diffstat (limited to 'dev-lang/elixir')
-rw-r--r-- | dev-lang/elixir/elixir-1.6.1-r1.ebuild | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/dev-lang/elixir/elixir-1.6.1-r1.ebuild b/dev-lang/elixir/elixir-1.6.1-r1.ebuild new file mode 100644 index 000000000000..844bd80c8914 --- /dev/null +++ b/dev-lang/elixir/elixir-1.6.1-r1.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit multilib + +DESCRIPTION="Elixir programming language" +HOMEPAGE="https://elixir-lang.org" +SRC_URI="https://github.com/elixir-lang/elixir/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="Apache-2.0 ErlPL-1.1" +SLOT="0" +KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~sparc ~x86" +IUSE="" + +DEPEND=">=dev-lang/erlang-18[ssl]" +# 'mix' tool collides with sci-biology/phylip, bug #537514 +RDEPEND="${DEPEND} + !!sci-biology/phylip +" + +RESTRICT=test # needs debug symbols + +src_compile() { + emake Q="" +} + +src_install() { + emake DESTDIR="${D}" LIBDIR="$(get_libdir)" PREFIX="${EPREFIX}/usr" install + dodoc README.md CHANGELOG.md CODE_OF_CONDUCT.md +} |