diff options
author | 2012-08-26 18:41:28 +0000 | |
---|---|---|
committer | 2012-08-26 18:41:28 +0000 | |
commit | 2baa39547f27610fb7b0005d0e84689a436bcc8c (patch) | |
tree | ccccd3dac8505eacfd2d73614e7077ab0c9b0051 /dev-lang/ispc | |
parent | Drop alpha/ia64/sparc keywords (diff) | |
download | gentoo-2-2baa39547f27610fb7b0005d0e84689a436bcc8c.tar.gz gentoo-2-2baa39547f27610fb7b0005d0e84689a436bcc8c.tar.bz2 gentoo-2-2baa39547f27610fb7b0005d0e84689a436bcc8c.zip |
switch to vcs-snapshot
(Portage version: 2.2.0_alpha122/cvs/Linux i686)
Diffstat (limited to 'dev-lang/ispc')
-rw-r--r-- | dev-lang/ispc/ChangeLog | 5 | ||||
-rw-r--r-- | dev-lang/ispc/ispc-1.3.0.ebuild | 11 |
2 files changed, 8 insertions, 8 deletions
diff --git a/dev-lang/ispc/ChangeLog b/dev-lang/ispc/ChangeLog index c2d418817c5f..375bc68d8797 100644 --- a/dev-lang/ispc/ChangeLog +++ b/dev-lang/ispc/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-lang/ispc # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/ispc/ChangeLog,v 1.5 2012/07/20 19:58:21 ottxor Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/ispc/ChangeLog,v 1.6 2012/08/26 18:41:28 ottxor Exp $ + + 26 Aug 2012; Christoph Junghans <ottxor@gentoo.org> ispc-1.3.0.ebuild: + switch to vcs-snapshot 20 Jul 2012; Christoph Junghans <ottxor@gentoo.org> +files/ispc-1.3.0-gcc-4.7.patch, ispc-1.3.0.ebuild: diff --git a/dev-lang/ispc/ispc-1.3.0.ebuild b/dev-lang/ispc/ispc-1.3.0.ebuild index 737a2ec58149..9f89f175f418 100644 --- a/dev-lang/ispc/ispc-1.3.0.ebuild +++ b/dev-lang/ispc/ispc-1.3.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/ispc/ispc-1.3.0.ebuild,v 1.2 2012/07/20 19:58:21 ottxor Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/ispc/ispc-1.3.0.ebuild,v 1.3 2012/08/26 18:41:28 ottxor Exp $ EAPI=4 @@ -12,11 +12,10 @@ HOMEPAGE="http://ispc.github.com/" if [[ ${PV} = *9999 ]]; then inherit git-2 EGIT_REPO_URI="git://github.com/ispc/ispc.git" - SRC_URI="" else - SRC_URI="https://github.com/ispc/ispc/tarball/v${PV} -> ${PN}-git-${PV}.tgz" - GITHUB_ID="c6ec130" - S="${WORKDIR}/${PN}-${PN}-${GITHUB_ID}" + inherit vcs-snapshot + SRC_URI="https://github.com/${PN}/${PN}/tarball/v${PV} -> ${P}.tar.gz" + PATCHES=( "${FILESDIR}/${P}-gcc-4.7.patch" ) fi LICENSE="BSD BSD-2 UoI-NCSA" @@ -34,8 +33,6 @@ DEPEND=" sys-devel/flex " -PATCHES=( "${FILESDIR}/${P}-gcc-4.7.patch" ) - src_compile() { emake LDFLAGS="${LDFLAGS}" OPT="${CXXFLAGS}" CXX="$(tc-getCXX)" CPP="$(tc-getCPP)" } |