diff options
author | Sébastien Fabbro <bicatali@gentoo.org> | 2016-02-23 17:44:05 +0000 |
---|---|---|
committer | Sébastien Fabbro <bicatali@gentoo.org> | 2016-02-23 17:44:33 +0000 |
commit | f2fb1a2fcf3dba3c60979819a04caa4b91a3eeab (patch) | |
tree | 6d565eba1aca0d841d70884c8d4c8b7a7fa7df2a /sci-libs | |
parent | media-video/ffmpeg: convert to virtual/jack (diff) | |
download | gentoo-f2fb1a2fcf3dba3c60979819a04caa4b91a3eeab.tar.gz gentoo-f2fb1a2fcf3dba3c60979819a04caa4b91a3eeab.tar.bz2 gentoo-f2fb1a2fcf3dba3c60979819a04caa4b91a3eeab.zip |
sci-libs/pastix: re-add smp flag with patch and set it as default
Package-Manager: portage-2.2.27
Diffstat (limited to 'sci-libs')
-rw-r--r-- | sci-libs/pastix/files/pastix-5.2.2.22-nosmp-undefined-variable.patch | 15 | ||||
-rw-r--r-- | sci-libs/pastix/pastix-5.2.2.22-r1.ebuild (renamed from sci-libs/pastix/pastix-5.2.2.22.ebuild) | 56 |
2 files changed, 45 insertions, 26 deletions
diff --git a/sci-libs/pastix/files/pastix-5.2.2.22-nosmp-undefined-variable.patch b/sci-libs/pastix/files/pastix-5.2.2.22-nosmp-undefined-variable.patch new file mode 100644 index 000000000000..c01b02bb8f72 --- /dev/null +++ b/sci-libs/pastix/files/pastix-5.2.2.22-nosmp-undefined-variable.patch @@ -0,0 +1,15 @@ +--- ./sopalin/src/updo.c.orig 2016-02-23 01:42:00.000000000 +0000 ++++ ./sopalin/src/updo.c 2016-02-23 01:42:10.000000000 +0000 +@@ -940,8 +940,10 @@ + i = TASK_CBLKNUM(i); + # define END_LOOP(a) } SMP_END_LOOP(a) + # else /* SMP_SOPALIN */ +-# define START_LOOP for (i=0;i<SYMB_CBLKNBR;i++) +-# define END_LOOP ++# define START_LOOP \ ++ int bubnum = me; \ ++ for (i=0;i<SYMB_CBLKNBR;i++) ++# define END_LOOP(a) a + # endif + + /* Xi=(Dii)-1Xi; */ diff --git a/sci-libs/pastix/pastix-5.2.2.22.ebuild b/sci-libs/pastix/pastix-5.2.2.22-r1.ebuild index 19e3f2487f39..de59c9a71479 100644 --- a/sci-libs/pastix/pastix-5.2.2.22.ebuild +++ b/sci-libs/pastix/pastix-5.2.2.22-r1.ebuild @@ -4,7 +4,7 @@ EAPI=6 -inherit eutils fortran-2 toolchain-funcs multilib +inherit fortran-2 toolchain-funcs # TODO: # testing: emake examples? @@ -14,13 +14,14 @@ inherit eutils fortran-2 toolchain-funcs multilib # static libs building without pic # metis? -# commit id: change every version -CID= # package id: change every version, see the link on inriaforge PID=35070 +# commit id: change every version +#CID=351ef60 # leave empty if this is not a post release bug fix -PPV=bugfix10_ -MYPN=pastix_release +#PPV=bugfix9_ +#MYPN=pastix_release +#SRC_URI="https://gforge.inria.fr/frs/download.php/${PID}/${MYPN}_${PPV}${CID}.tar.bz2" DESCRIPTION="Parallel solver for very large sparse linear systems" HOMEPAGE="http://pastix.gforge.inria.fr" @@ -29,8 +30,7 @@ SRC_URI="https://gforge.inria.fr/frs/download.php/${PID}/${PN}_${PV}.tar.bz2" LICENSE="CeCILL-C" SLOT="0" KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" -#IUSE="doc int64 mpi smp starpu static-libs" -IUSE="doc int64 mpi starpu static-libs" +IUSE="doc int64 mpi +smp starpu static-libs" RDEPEND=" sci-libs/scotch:0=[int64?,mpi?] @@ -44,6 +44,8 @@ DEPEND="${RDEPEND} S="${WORKDIR}/${PN}_${PV}/src" src_prepare() { + default + epatch "${FILESDIR}"/${P}-nosmp-undefined-variable.patch sed -e 's/^\(HOSTARCH\s*=\).*/\1 ${HOST}/' \ -e "s:^\(CCPROG\s*=\).*:\1 $(tc-getCC):" \ -e "s:^\(CFPROG\s*=\).*:\1 $(tc-getFC):" \ @@ -72,42 +74,39 @@ src_prepare() { -e "s:^\s*\(SCOTCH_INC\s*?=.*\):\1/scotch:" \ -e "s:^\s*\(SCOTCH_LIB\s*?=.*\)lib:\1$(get_libdir):" \ config/LINUX-GNU.in > config.in || die - sed -i -e 's/__SO_NAME__,$@/__SO_NAME__,$(notdir $@)/g' Makefile || die - default + sed -e 's/__SO_NAME__,$@/__SO_NAME__,$(notdir $@)/g' -i Makefile || die } src_configure() { if use amd64; then - sed -i \ - -e 's/^\(VERSIONBIT\s*=\).*/\1 _64bit/' config.in || die + sed -e 's/^\(VERSIONBIT\s*=\).*/\1 _64bit/' \ + -i config.in || die fi if use int64; then - sed -i \ - -e '/VERSIONINT.*_int64/s/#//' \ - -e '/CCTYPES.*INTSSIZE64/s/#//' config.in || die + sed -e '/VERSIONINT.*_int64/s/#//' \ + -e '/CCTYPES.*INTSSIZE64/s/#//' \ + -i config.in || die fi if ! use mpi; then - sed -i \ - -e '/VERSIONMPI.*_nompi/s/#//' \ + sed -e '/VERSIONMPI.*_nompi/s/#//' \ -e '/CCTYPES.*NOMPI/s/#//' \ -e '/MPCCPROG\s*= $(CCPROG)/s/#//' \ -e '/MCFPROG\s*= $(CFPROG)/s/#//' \ -e 's/-DDISTRIBUTED//' \ -e 's/-lptscotch/-lscotch/g' \ - config.in || die + -i config.in || die fi -# if ! use smp; then -# sed \ -# -e '/VERSIONSMP.*_nosmp/s/#//' \ -# -e '/CCTYPES.*NOSMP/s/#//' \ -# -i config.in || die -# fi + if ! use smp; then + sed -e '/VERSIONSMP.*_nosmp/s/#//' \ + -e '/CCTYPES.*NOSMP/s/#//' \ + -i config.in || die + fi if use starpu; then - sed -i -e '/libstarpu/s/#//g' config.in || die + sed -e '/libstarpu/s/#//g' -i config.in || die fi } @@ -115,10 +114,15 @@ src_compile() { emake all drivers } +src_test() { + # both test and tests targets are defined and do not work + echo +} + src_install() { default - sed -i -e "s:${D}::g" "${ED}"/usr/bin/pastix-conf || die + sed -e "s:${D}::g" -i "${ED}"/usr/bin/pastix-conf || die # quick and dirty (static libs should really be built without pic) - cd .. || die + cd .. || die dodoc README.txt doc/refcard/refcard.pdf } |