diff options
author | Markus Dittrich <markusle@gentoo.org> | 2007-12-05 14:45:21 +0000 |
---|---|---|
committer | Markus Dittrich <markusle@gentoo.org> | 2007-12-05 14:45:21 +0000 |
commit | f546e2b7304dc3bbb8c36d4bd9c0dbf5d544d522 (patch) | |
tree | 755a0d022f68cde58ee3fe9f16a52ff8e326b8bf /sci-libs/hdf5/hdf5-1.6.5-r1.ebuild | |
parent | alpha/ia64 stable wrt #201249 (diff) | |
download | gentoo-2-f546e2b7304dc3bbb8c36d4bd9c0dbf5d544d522.tar.gz gentoo-2-f546e2b7304dc3bbb8c36d4bd9c0dbf5d544d522.tar.bz2 gentoo-2-f546e2b7304dc3bbb8c36d4bd9c0dbf5d544d522.zip |
Removed quotes around myconf since they confuse configure (fixes bug #201205).
(Portage version: 2.1.4_rc4)
Diffstat (limited to 'sci-libs/hdf5/hdf5-1.6.5-r1.ebuild')
-rw-r--r-- | sci-libs/hdf5/hdf5-1.6.5-r1.ebuild | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/sci-libs/hdf5/hdf5-1.6.5-r1.ebuild b/sci-libs/hdf5/hdf5-1.6.5-r1.ebuild index 40d8049abec8..f4ae9f8521d0 100644 --- a/sci-libs/hdf5/hdf5-1.6.5-r1.ebuild +++ b/sci-libs/hdf5/hdf5-1.6.5-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/hdf5/hdf5-1.6.5-r1.ebuild,v 1.4 2007/12/03 07:21:53 nerdboy Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/hdf5/hdf5-1.6.5-r1.ebuild,v 1.5 2007/12/05 14:45:21 markusle Exp $ inherit fortran eutils toolchain-funcs @@ -134,7 +134,7 @@ src_compile() { src_test() { # make test is not reliable, and the mpi tests have a weird failure export HDF5_Make_Ignore=yes - install -g portage -o portage -m 0600 ${FILESDIR}/mpd.conf ${HOME}/.mpd.conf + install -g portage -o portage -m 0600 "${FILESDIR}"/mpd.conf ${HOME}/.mpd.conf /usr/bin/mpd --daemon make check || die "make test failed" /usr/bin/mpdallexit @@ -143,36 +143,36 @@ src_test() { src_install() { make \ - prefix=${D}usr \ - mandir=${D}usr/share/man \ - docdir=${D}usr/share/doc/${PF} \ - libdir=${D}usr/$(get_libdir) \ - infodir=${D}usr/share/info \ + prefix="${D}"usr \ + mandir="${D}"usr/share/man \ + docdir="${D}"usr/share/doc/${PF} \ + libdir="${D}"usr/$(get_libdir) \ + infodir="${D}"usr/share/info \ install || die "make install failed" - dolib.so ${S}/test/.libs/lib*so* || die "dolib.so failed" + dolib.so "${S}"/test/.libs/lib*so* || die "dolib.so failed" if use static ; then - dolib.a ${S}/tools/lib/.libs/libh5tools.a \ - ${S}/test/.libs/libh5test.a || die "dolib.a failed" + dolib.a "${S}"/tools/lib/.libs/libh5tools.a \ + "${S}"/test/.libs/libh5test.a || die "dolib.a failed" insinto /usr/$(get_libdir) - doins ${S}/tools/lib/libh5tools.la \ - ${S}/test/libh5test.la || die "doins failed" + doins "${S}"/tools/lib/libh5tools.la \ + "${S}"/test/libh5test.la || die "doins failed" fi - dobin ${S}/bin/iostats || die "dobin failed" + dobin "${S}"/bin/iostats || die "dobin failed" dodoc README.txt MANIFEST dohtml doc/html/* if use mpi ; then - mv ${D}usr/bin/h5pcc ${D}usr/bin/h5cc + mv "${D}"usr/bin/h5pcc "${D}"usr/bin/h5cc fi if use fortran ; then - mv ${D}usr/bin/h5pfc ${D}usr/bin/h5fc + mv "${D}"usr/bin/h5pfc "${D}"usr/bin/h5fc fi # change the SHLIB default for C if ! use static ; then - dosed "s/SHLIB:-no/SHLIB:-yes/g" ${D}usr/bin/h5cc || die "dosed failed" + dosed "s/SHLIB:-no/SHLIB:-yes/g" "${D}"usr/bin/h5cc || die "dosed failed" fi } |