Gentoo Archives: gentoo-commits

From: "Christoph Junghans (ottxor)" <ottxor@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-lang/ispc: ChangeLog ispc-1.3.0.ebuild
Date: Sat, 07 Jul 2012 00:48:50
Message-Id: 20120707004831.4116A2004B@flycatcher.gentoo.org
1 ottxor 12/07/07 00:48:30
2
3 Modified: ChangeLog
4 Added: ispc-1.3.0.ebuild
5 Log:
6 version bump
7
8 (Portage version: 2.2.0_alpha116/cvs/Linux i686)
9
10 Revision Changes Path
11 1.4 dev-lang/ispc/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ispc/ChangeLog?rev=1.4&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ispc/ChangeLog?rev=1.4&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ispc/ChangeLog?r1=1.3&r2=1.4
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-lang/ispc/ChangeLog,v
20 retrieving revision 1.3
21 retrieving revision 1.4
22 diff -u -r1.3 -r1.4
23 --- ChangeLog 19 Jun 2012 12:22:33 -0000 1.3
24 +++ ChangeLog 7 Jul 2012 00:48:30 -0000 1.4
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-lang/ispc
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/ispc/ChangeLog,v 1.3 2012/06/19 12:22:33 ago Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/ispc/ChangeLog,v 1.4 2012/07/07 00:48:30 ottxor Exp $
30 +
31 +*ispc-1.3.0 (07 Jul 2012)
32 +
33 + 07 Jul 2012; Christoph Junghans <ottxor@g.o> +ispc-1.3.0.ebuild:
34 + version bump
35
36 19 Jun 2012; Agostino Sarubbo <ago@g.o> ispc-1.2.2.ebuild:
37 Add ~amd64
38
39
40
41 1.1 dev-lang/ispc/ispc-1.3.0.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ispc/ispc-1.3.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ispc/ispc-1.3.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: ispc-1.3.0.ebuild
47 ===================================================================
48 # Copyright 1999-2012 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-lang/ispc/ispc-1.3.0.ebuild,v 1.1 2012/07/07 00:48:30 ottxor Exp $
51
52 EAPI=4
53
54 inherit toolchain-funcs
55
56 DESCRIPTION="Intel SPMD Program Compiler"
57 HOMEPAGE="http://ispc.github.com/"
58
59 if [[ ${PV} = *9999 ]]; then
60 inherit git-2
61 EGIT_REPO_URI="git://github.com/ispc/ispc.git"
62 SRC_URI=""
63 else
64 SRC_URI="https://github.com/ispc/ispc/tarball/v${PV} -> ${PN}-git-${PV}.tgz"
65 GITHUB_ID="c6ec130"
66 S="${WORKDIR}/${PN}-${PN}-${GITHUB_ID}"
67 fi
68
69 LICENSE="BSD BSD-2 UoI-NCSA"
70 SLOT="0"
71 KEYWORDS="~amd64 ~x86"
72 IUSE="examples"
73
74 RDEPEND="
75 >=sys-devel/clang-3.0
76 >=sys-devel/llvm-3.0
77 "
78 DEPEND="
79 ${RDEPEND}
80 sys-devel/bison
81 sys-devel/flex
82 "
83
84 DOCS=( README.rst )
85
86 src_compile() {
87 emake LDFLAGS="${LDFLAGS}" OPT="${CXXFLAGS}" CXX="$(tc-getCXX)" CPP="$(tc-getCPP)"
88 }
89
90 src_install() {
91 dobin ispc
92
93 if use examples; then
94 insinto "/usr/share/doc/${PF}/examples"
95 docompress -x "/usr/share/doc/${PF}/examples"
96 doins -r examples/*
97 fi
98 }