Magellan Linux

Annotation of /trunk/core/cloog/cloog-0.18.2-r1.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 21953 - (hide annotations) (download)
Tue Aug 5 10:33:38 2014 UTC (9 years, 10 months ago) by niro
File size: 858 byte(s)
-ver bump to 0.18.2-r1
1 niro 21953 # $Id$
2    
3     PNAME="cloog"
4     PVER="0.18.2"
5     PBUILD="r1"
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_compile()
32     {
33     mconfigure --enable-shared --with-gmp --with-isl=system || die
34     mmake || die
35     }