* [gentoo-commits] gentoo-x86 commit in sci-libs/arpack: ChangeLog arpack-3.1.1.ebuild
@ 2012-05-30 19:02 Justin Lecher (jlec)
0 siblings, 0 replies; 2+ messages in thread
From: Justin Lecher (jlec) @ 2012-05-30 19:02 UTC (permalink / raw
To: gentoo-commits
jlec 12/05/30 19:02:55
Modified: ChangeLog
Added: arpack-3.1.1.ebuild
Log:
sci-libs/arpack: Version BUmp
(Portage version: 2.2.0_alpha108/cvs/Linux x86_64)
Revision Changes Path
1.39 sci-libs/arpack/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/arpack/ChangeLog?rev=1.39&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/arpack/ChangeLog?rev=1.39&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/arpack/ChangeLog?r1=1.38&r2=1.39
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/arpack/ChangeLog,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -r1.38 -r1.39
--- ChangeLog 4 May 2012 08:22:53 -0000 1.38
+++ ChangeLog 30 May 2012 19:02:55 -0000 1.39
@@ -1,6 +1,11 @@
# ChangeLog for sci-libs/arpack
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/arpack/ChangeLog,v 1.38 2012/05/04 08:22:53 jdhore Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/arpack/ChangeLog,v 1.39 2012/05/30 19:02:55 jlec Exp $
+
+*arpack-3.1.1 (30 May 2012)
+
+ 30 May 2012; Justin Lecher <jlec@gentoo.org> +arpack-3.1.1.ebuild:
+ Version BUmp
04 May 2012; Jeff Horelick <jdhore@gentoo.org> arpack-3.0.2.ebuild,
arpack-96-r2.ebuild, arpack-96-r3.ebuild:
1.1 sci-libs/arpack/arpack-3.1.1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/arpack/arpack-3.1.1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/arpack/arpack-3.1.1.ebuild?rev=1.1&content-type=text/plain
Index: arpack-3.1.1.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-libs/arpack/arpack-3.1.1.ebuild,v 1.1 2012/05/30 19:02:55 jlec Exp $
EAPI=4
AUTOTOOLS_AUTORECONF=true
inherit autotools-utils eutils flag-o-matic fortran-2 toolchain-funcs
DESCRIPTION="Arnoldi package library to solve large scale eigenvalue problems"
HOMEPAGE="http://www.caam.rice.edu/software/ARPACK/"
SRC_URI="
http://forge.scilab.org/upload/arpack-ng/files/${PN}-ng_${PV}.tar.gz
doc? (
http://www.caam.rice.edu/software/ARPACK/SRC/ug.ps.gz
http://www.caam.rice.edu/software/ARPACK/DOCS/tutorial.ps.gz )"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
IUSE="doc examples mpi static-libs"
RDEPEND="
virtual/fortran
virtual/blas
virtual/lapack
mpi? ( virtual/mpi[fortran] )"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
S="${WORKDIR}/${PN}-ng_${PV}"
src_prepare() {
# fix examples library paths
sed \
-e '/^include/d' \
-e "s:\$(ALIBS):-larpack $(pkg-config --libs blas lapack):g" \
-e 's:$(FFLAGS):$(FFLAGS) $(LDFLAGS):g' \
-i EXAMPLES/*/makefile || die "sed failed"
sed \
-e '/^include/d' \
-e "s:\$(PLIBS):-larpack -lparpack $(pkg-config --libs blas lapack):g" \
-e 's:_$(PLAT)::g' \
-e 's:$(PFC):mpif77:g' \
-e 's:$(PFFLAGS):$(FFLAGS) $(LDFLAGS) $(EXTOBJS):g' \
-i PARPACK/EXAMPLES/MPI/makefile || die "sed failed"
# bug #354993
rm -f PARPACK/{SRC,UTIL,EXAMPLES}/MPI/mpif.h
#ln -s "${EPREFIX}"/usr/include/mpif*.h PARPACK/SRC/MPI/
autotools-utils_src_prepare
}
src_configure() {
local myeconfargs=(
--with-blas="$(pkg-config --libs blas)"
--with-lapack="$(pkg-config --libs lapack)"
$(use_enable mpi)
)
autotools-utils_src_configure
}
src_test() {
pushd EXAMPLES/SIMPLE
emake simple FC=$(tc-getFC) LDFLAGS="${LDFLAGS} -L${AUTOTOOLS_BUILD_DIR}/.libs"
local prog=
for p in ss ds sn dn cn zn; do
prog=${p}simp
LD_LIBRARY_PATH="${AUTOTOOLS_BUILD_DIR}/.libs" ./${prog} \
|| die "${prog} test failed"
rm -f ${prog} *.o || die
done
popd
if use mpi; then
pushd PARPACK/EXAMPLES/MPI
emake \
FC=mpif77 \
LDFLAGS="${LDFLAGS} -L${AUTOTOOLS_BUILD_DIR}/.libs -L${AUTOTOOLS_BUILD_DIR}/PARPACK/.libs ${LIBS}" \
pdndrv
for p in 1 3; do
prog=pdndrv${p}
LD_LIBRARY_PATH="${AUTOTOOLS_BUILD_DIR}/.libs:${AUTOTOOLS_BUILD_DIR}/PARPACK/.libs" \
./${prog} || die "${prog} test failed"
rm -f ${prog} *.o || die
done
popd
fi
}
src_install() {
autotools-utils_src_install
dodoc DOCUMENTS/*.doc
newdoc DOCUMENTS/README README.doc
use doc && dodoc "${WORKDIR}"/*.ps
if use examples; then
insinto /usr/share/doc/${PF}
doins -r EXAMPLES
if use mpi; then
insinto /usr/share/doc/${PF}/EXAMPLES/PARPACK
doins -r PARPACK/EXAMPLES/MPI
fi
fi
}
^ permalink raw reply [flat|nested] 2+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sci-libs/arpack: ChangeLog arpack-3.1.1.ebuild
@ 2012-05-30 19:03 Justin Lecher (jlec)
0 siblings, 0 replies; 2+ messages in thread
From: Justin Lecher (jlec) @ 2012-05-30 19:03 UTC (permalink / raw
To: gentoo-commits
jlec 12/05/30 19:03:49
Modified: ChangeLog arpack-3.1.1.ebuild
Log:
sci-libs/arpack: dev-util/pkgconfig -> virtual/pkgconfig
(Portage version: 2.2.0_alpha108/cvs/Linux x86_64)
Revision Changes Path
1.40 sci-libs/arpack/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/arpack/ChangeLog?rev=1.40&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/arpack/ChangeLog?rev=1.40&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/arpack/ChangeLog?r1=1.39&r2=1.40
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/arpack/ChangeLog,v
retrieving revision 1.39
retrieving revision 1.40
diff -u -r1.39 -r1.40
--- ChangeLog 30 May 2012 19:02:55 -0000 1.39
+++ ChangeLog 30 May 2012 19:03:49 -0000 1.40
@@ -1,6 +1,9 @@
# ChangeLog for sci-libs/arpack
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/arpack/ChangeLog,v 1.39 2012/05/30 19:02:55 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/arpack/ChangeLog,v 1.40 2012/05/30 19:03:49 jlec Exp $
+
+ 30 May 2012; Justin Lecher <jlec@gentoo.org> arpack-3.1.1.ebuild:
+ dev-util/pkgconfig -> virtual/pkgconfig
*arpack-3.1.1 (30 May 2012)
1.2 sci-libs/arpack/arpack-3.1.1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/arpack/arpack-3.1.1.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/arpack/arpack-3.1.1.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/arpack/arpack-3.1.1.ebuild?r1=1.1&r2=1.2
Index: arpack-3.1.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/arpack/arpack-3.1.1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- arpack-3.1.1.ebuild 30 May 2012 19:02:55 -0000 1.1
+++ arpack-3.1.1.ebuild 30 May 2012 19:03:49 -0000 1.2
@@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/arpack/arpack-3.1.1.ebuild,v 1.1 2012/05/30 19:02:55 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/arpack/arpack-3.1.1.ebuild,v 1.2 2012/05/30 19:03:49 jlec Exp $
EAPI=4
@@ -27,7 +27,7 @@
virtual/lapack
mpi? ( virtual/mpi[fortran] )"
DEPEND="${RDEPEND}
- dev-util/pkgconfig"
+ virtual/pkgconfig"
S="${WORKDIR}/${PN}-ng_${PV}"
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2012-05-30 19:04 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-05-30 19:03 [gentoo-commits] gentoo-x86 commit in sci-libs/arpack: ChangeLog arpack-3.1.1.ebuild Justin Lecher (jlec)
-- strict thread matches above, loose matches on Subject: below --
2012-05-30 19:02 Justin Lecher (jlec)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox