Gentoo Archives: gentoo-commits

From: "Ryan Hill (dirtyepic)" <dirtyepic@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/cloog-ppl: ChangeLog cloog-ppl-0.15.10.ebuild
Date: Thu, 06 Jan 2011 23:37:23
Message-Id: 20110106233714.683AD20051@flycatcher.gentoo.org
1 dirtyepic 11/01/06 23:37:14
2
3 Modified: ChangeLog
4 Added: cloog-ppl-0.15.10.ebuild
5 Log:
6 Version bump allowing use of PPL 0.11. No other code changes. Ported to
7 EAPI 3 and autotools-utils eclass. Changed include path and etc. to avoid
8 collisions with upstream CLooG.
9
10 (Portage version: 2.2.0_alpha13/cvs/Linux x86_64)
11
12 Revision Changes Path
13 1.34 dev-libs/cloog-ppl/ChangeLog
14
15 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/cloog-ppl/ChangeLog?rev=1.34&view=markup
16 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/cloog-ppl/ChangeLog?rev=1.34&content-type=text/plain
17 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/cloog-ppl/ChangeLog?r1=1.33&r2=1.34
18
19 Index: ChangeLog
20 ===================================================================
21 RCS file: /var/cvsroot/gentoo-x86/dev-libs/cloog-ppl/ChangeLog,v
22 retrieving revision 1.33
23 retrieving revision 1.34
24 diff -u -r1.33 -r1.34
25 --- ChangeLog 6 Jan 2011 16:44:55 -0000 1.33
26 +++ ChangeLog 6 Jan 2011 23:37:14 -0000 1.34
27 @@ -1,6 +1,13 @@
28 # ChangeLog for dev-libs/cloog-ppl
29 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
30 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/cloog-ppl/ChangeLog,v 1.33 2011/01/06 16:44:55 armin76 Exp $
31 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/cloog-ppl/ChangeLog,v 1.34 2011/01/06 23:37:14 dirtyepic Exp $
32 +
33 +*cloog-ppl-0.15.10 (06 Jan 2011)
34 +
35 + 06 Jan 2011; Ryan Hill <dirtyepic@g.o> +cloog-ppl-0.15.10.ebuild:
36 + Version bump allowing use of PPL 0.11. No other code changes. Ported to
37 + EAPI 3 and autotools-utils eclass. Changed include path and etc. to avoid
38 + collisions with upstream CLooG.
39
40 06 Jan 2011; Raúl Porcel <armin76@g.o> cloog-ppl-0.15.9.ebuild:
41 ia64/s390/sh/sparc stable wrt #347239
42
43
44
45 1.1 dev-libs/cloog-ppl/cloog-ppl-0.15.10.ebuild
46
47 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/cloog-ppl/cloog-ppl-0.15.10.ebuild?rev=1.1&view=markup
48 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/cloog-ppl/cloog-ppl-0.15.10.ebuild?rev=1.1&content-type=text/plain
49
50 Index: cloog-ppl-0.15.10.ebuild
51 ===================================================================
52 # Copyright 1999-2011 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 # $Header: /var/cvsroot/gentoo-x86/dev-libs/cloog-ppl/cloog-ppl-0.15.10.ebuild,v 1.1 2011/01/06 23:37:14 dirtyepic Exp $
55
56 EAPI="3"
57
58 inherit autotools-utils
59
60 DESCRIPTION="Port of CLooG (Chunky LOOp Generator) to PPL (Parma Polyhedra Library)"
61 HOMEPAGE="http://repo.or.cz/w/cloog-ppl.git"
62 SRC_URI="ftp://gcc.gnu.org/pub/gcc/infrastructure/${P}.tar.gz"
63
64 LICENSE="GPL-2"
65 SLOT="0"
66 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd"
67 IUSE="static-libs"
68
69 RDEPEND="dev-libs/ppl
70 dev-libs/gmp"
71 DEPEND="${RDEPEND}"
72
73 src_prepare() {
74 mkdir m4
75 eautoreconf
76 }
77
78 src_configure() {
79 # set includedir to avoid conflicts w/ dev-libs/cloog
80 myeconfargs=(
81 --with-ppl
82 --includedir=/usr/include/cloog-ppl
83 )
84 autotools-utils_src_configure
85 }
86
87 src_install() {
88 autotools-utils_src_install
89 mv "${D}"usr/bin/cloog "${D}"usr/bin/cloog-ppl || die
90 mv "${D}"usr/share/info/cloog.info "${D}"usr/share/info/cloog-ppl.info || die
91 }