diff options
-rw-r--r-- | dev-lang/ispc/ChangeLog | 3 | ||||
-rw-r--r-- | dev-lang/ispc/ispc-9999.ebuild | 14 |
2 files changed, 13 insertions, 4 deletions
diff --git a/dev-lang/ispc/ChangeLog b/dev-lang/ispc/ChangeLog index 6a9e82ee1..e81a15906 100644 --- a/dev-lang/ispc/ChangeLog +++ b/dev-lang/ispc/ChangeLog @@ -2,6 +2,9 @@ # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 # $Header: $ + 12 May 2014; Christoph Junghans <ottxor@gentoo.org> ispc-9999.ebuild: + sync with gx86 + 06 Jan 2014; Justin Lecher <jlec@gentoo.org> ispc-9999.ebuild: Switch from git-2 to git-r3 diff --git a/dev-lang/ispc/ispc-9999.ebuild b/dev-lang/ispc/ispc-9999.ebuild index afb92c36e..c859a817b 100644 --- a/dev-lang/ispc/ispc-9999.ebuild +++ b/dev-lang/ispc/ispc-9999.ebuild @@ -6,17 +6,23 @@ EAPI=5 PYTHON_COMPAT=( python{2_6,2_7} ) -inherit git-r3 toolchain-funcs python-any-r1 +inherit toolchain-funcs python-any-r1 DESCRIPTION="Intel SPMD Program Compiler" HOMEPAGE="http://ispc.github.com/" -SRC_URI="" -EGIT_REPO_URI="git://github.com/ispc/ispc.git" + +if [[ ${PV} = *9999 ]]; then + inherit git-r3 + EGIT_REPO_URI="git://github.com/ispc/ispc.git" + KEYWORDS="" +else + SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~x86" +fi LICENSE="BSD BSD-2 UoI-NCSA" SLOT="0" IUSE="examples" -KEYWORDS="" RDEPEND=" >=sys-devel/clang-3.0 |