Magellan Linux

Contents of /branches/R11-stable/core/cloog/cloog-0.18.1-r1.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 20776 - (show annotations) (download)
Tue Feb 11 09:45:58 2014 UTC (10 years, 2 months ago) by niro
File size: 858 byte(s)
-release branches/R11-stable
1 # $Id$
2
3 PNAME="cloog"
4 PVER="0.18.1"
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-5.1
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 }