ppl: update to 0.11, bump abi_depends.

This commit is contained in:
Juan RP 2010-10-28 00:41:40 +02:00
parent e8c6d5e9cb
commit ecf41a01b5
3 changed files with 10 additions and 24 deletions

View File

@ -1,2 +1,2 @@
abi_depends=">=0.10.2" abi_depends=">=0.11"
api_depends="${abi_depends}" api_depends="${abi_depends}"

View File

@ -8,18 +8,12 @@ long_desc="${long_desc}
Add_dependency run gmp-devel Add_dependency run gmp-devel
Add_dependency run ppl Add_dependency run ppl
revision=2
do_install() do_install()
{ {
mkdir -p ${DESTDIR}/usr/share/man/man1 ${DESTDIR}/usr/bin \ install -d ${DESTDIR}/usr/lib
${DESTDIR}/usr/lib
mv ${SRCPKGDESTDIR}/usr/bin/ppl-config ${DESTDIR}/usr/bin for d in bin include share; do
mv ${SRCPKGDESTDIR}/usr/share/man/man1/ppl-config.* \ mv ${SRCPKGDESTDIR}/usr/${d} ${DESTDIR}/usr
${DESTDIR}/usr/share/man/man1 done
mv ${SRCPKGDESTDIR}/usr/share/man/man3 ${DESTDIR}/usr/share/man
mv ${SRCPKGDESTDIR}/usr/include ${DESTDIR}/usr
mv ${SRCPKGDESTDIR}/usr/lib/*.a ${DESTDIR}/usr/lib mv ${SRCPKGDESTDIR}/usr/lib/*.a ${DESTDIR}/usr/lib
mv ${SRCPKGDESTDIR}/usr/share/aclocal ${DESTDIR}/usr/share
mv ${SRCPKGDESTDIR}/usr/share/doc ${DESTDIR}/usr/share
} }

View File

@ -1,16 +1,14 @@
# Template file for 'ppl' # Template file for 'ppl'
pkgname=ppl pkgname=ppl
version=0.10.2 version=0.11
revision=2 distfiles="http://www.cs.unipr.it/ppl/Download/ftp/releases/${version}/ppl-${version}.tar.bz2"
distfiles="http://www.cs.unipr.it/ppl/Download/ftp/releases/${version}/ppl-${version}.tar.gz"
build_style=gnu_configure build_style=gnu_configure
configure_args="--disable-rpath --enable-interfaces=c,cxx configure_args="--disable-rpath --enable-interfaces=c,cxx
--with-libgmp-prefix=${XBPS_MASTERDIR}/usr --with-bgmp-prefix=${XBPS_MASTERDIR}/usr
--with-libgmpxx-prefix=${XBPS_MASTERDIR}/usr
--with-gnu-ld --disable-debugging" --with-gnu-ld --disable-debugging"
short_desc="The Parma Polyhedra Library" short_desc="The Parma Polyhedra Library"
maintainer="Juan RP <xtraeme@gmail.com>" maintainer="Juan RP <xtraeme@gmail.com>"
checksum=d0389838575a7e003542fe996cce54bb0405f9a011424ba7384d12a634219e52 checksum=f4f28b75c95ed7f7adf8e5387ca4b012d9405ce0bc098629ea1653d711028cbc
long_desc=" long_desc="
The Parma Polyhedra Library (PPL) provides numerical abstractions especially The Parma Polyhedra Library (PPL) provides numerical abstractions especially
targeted at applications in the field of analysis and verification of complex targeted at applications in the field of analysis and verification of complex
@ -31,9 +29,3 @@ Add_dependency run glibc
Add_dependency run libstdc++ Add_dependency run libstdc++
Add_dependency run gmp Add_dependency run gmp
Add_dependency build gmp-devel Add_dependency build gmp-devel
pre_configure()
{
# 5.0.1 compatibility
sed -i -e "s|__GMP_BITS_PER_MP_LIMB|GMP_LIMB_BITS|g" ${wrksrc}/configure
}