Magellan Linux

Annotation of /branches/R11-unstable/core/cloog/cloog-0.18.2-r2.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 24679 - (hide annotations) (download)
Tue Mar 3 14:12:34 2015 UTC (9 years, 2 months ago) by niro
Original Path: trunk/core/cloog/cloog-0.18.2-r2.smage2
File size: 995 byte(s)
-revert delete
1 niro 24679 # $Id$
2    
3     PNAME="cloog"
4     PVER="0.18.2"
5     PBUILD="r2"
6    
7     PCAT="dev-libs"
8    
9     DESCRIPTION="CLooG-ISL is a library to generate code for scanning Z-polyhedra."
10     HOMEPAGE="http://cloog.org/"
11    
12     # do not depend on glibc, as it depends ob libstdc++ and this wants mpc
13     # as SRCDEPEND -> this may generate loops
14     DEPEND=">= dev-libs/gmp-6.0
15     >= dev-libs/isl-0.12"
16    
17     SRCFILE="${PNAME}-${PVER}.tar.gz"
18     SRCDIR="${BUILDDIR}/${PNAME}-${PVER}"
19    
20     sminclude multilib
21     msetfeature "!check" # one check failes - fixme
22    
23     SRC_URI=(
24     http://www.bastoul.net/cloog/pages/download/count.php3?url=./${SRCFILE}
25     ftp://gcc.gnu.org/pub/gcc/infrastructure/${SRCFILE}
26     mirror://${PNAME}/${SRCFILE}
27     )
28    
29     UP2DATE="updatecmd 'http://www.bastoul.net/cloog/pages/download/?C=M;O=A' | grep ${PNAME}- | lasttarball gz"
30    
31     src_prepare()
32     {
33     munpack ${SRCFILE} || die
34    
35     # remove invalid files from Makefile
36     all-abis sed -i '/cmake/d' Makefile.{in,am} || die
37     }
38    
39     src_compile()
40     {
41     mconfigure --enable-shared --with-gmp --with-isl=system || die
42     mmake || die
43     }