From eab6768135f60dd4884b6cbc0fd4e7a51c3db74e Mon Sep 17 00:00:00 2001 From: Sebastien Fabbro Date: Thu, 8 Aug 2013 21:48:11 +0000 Subject: Version bump (Portage version: 2.2.01.22124-prefix/cvs/Linux x86_64, signed Manifest commit with key 0x13CB1360) --- sci-libs/matio/ChangeLog | 8 ++++++- sci-libs/matio/matio-1.5.0.ebuild | 48 --------------------------------------- sci-libs/matio/matio-1.5.2.ebuild | 47 ++++++++++++++++++++++++++++++++++++++ 3 files changed, 54 insertions(+), 49 deletions(-) delete mode 100644 sci-libs/matio/matio-1.5.0.ebuild create mode 100644 sci-libs/matio/matio-1.5.2.ebuild (limited to 'sci-libs') diff --git a/sci-libs/matio/ChangeLog b/sci-libs/matio/ChangeLog index 945a2e376a62..a8b5c801eca6 100644 --- a/sci-libs/matio/ChangeLog +++ b/sci-libs/matio/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for sci-libs/matio # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/matio/ChangeLog,v 1.6 2013/03/22 10:50:10 grozin Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/matio/ChangeLog,v 1.7 2013/08/08 21:48:11 bicatali Exp $ + +*matio-1.5.2 (08 Aug 2013) + + 08 Aug 2013; Sébastien Fabbro +matio-1.5.2.ebuild, + -matio-1.5.0.ebuild: + Version bump 22 Mar 2013; Andrey Grozin matio-1.5.1.ebuild: Fixed docs installation diff --git a/sci-libs/matio/matio-1.5.0.ebuild b/sci-libs/matio/matio-1.5.0.ebuild deleted file mode 100644 index 854ed4479a7c..000000000000 --- a/sci-libs/matio/matio-1.5.0.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/matio/matio-1.5.0.ebuild,v 1.2 2012/08/03 22:14:07 bicatali Exp $ - -EAPI=4 -inherit autotools eutils - -DESCRIPTION="Library for reading and writing matlab files" -HOMEPAGE="http://sourceforge.net/projects/matio/" -SLOT="0" -LICENSE="LGPL-2.1" -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" -IUSE="doc examples hdf5 sparse static-libs" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" -RDEPEND="sys-libs/zlib - hdf5? ( sci-libs/hdf5 )" -DEPEND="${RDEPEND} - doc? ( virtual/latex-base )" - -src_prepare() { - epatch "${FILESDIR}"/${P}-asneeded.patch - eautoreconf -} - -src_configure() { - econf \ - --docdir="${EPREFIX}/usr/share/doc/${PF}" \ - --enable-shared \ - $(use_enable hdf5 mat73) \ - $(use_enable sparse extended-sparse) \ - $(use_enable static-libs static) -} - -src_compile() { - emake - use doc && emake -C documentation pdf -} - -src_install() { - default - use doc && dodoc documentation/matio_user_guide.pdf - if use examples; then - insinto /usr/share/doc/${PF}/examples - doins test/test* - insinto /usr/share/${PN} - doins share/test* - fi -} diff --git a/sci-libs/matio/matio-1.5.2.ebuild b/sci-libs/matio/matio-1.5.2.ebuild new file mode 100644 index 000000000000..01819b7244ec --- /dev/null +++ b/sci-libs/matio/matio-1.5.2.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/matio/matio-1.5.2.ebuild,v 1.1 2013/08/08 21:48:11 bicatali Exp $ + +EAPI=5 + +AUTOTOOLS_AUTORECONF=1 +inherit autotools-utils eutils + +DESCRIPTION="Library for reading and writing matlab files" +HOMEPAGE="http://sourceforge.net/projects/matio/" +SLOT="0" +LICENSE="LGPL-2.1" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +IUSE="doc examples hdf5 sparse static-libs" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" +RDEPEND="sys-libs/zlib + hdf5? ( sci-libs/hdf5 )" +DEPEND="${RDEPEND} + doc? ( virtual/latex-base )" + +PATCHES=( "${FILESDIR}"/${PN}-1.5.0-asneeded.patch ) + +src_configure() { + local myeconfargs=( + --docdir="${EPREFIX}/usr/share/doc/${PF}" + $(use_enable hdf5 mat73) + $(use_enable sparse extended-sparse) + ) + autotools-utils_src_configure +} + +src_compile() { + autotools-utils_src_compile + use doc && autotools-utils_src_compile -C documentation pdf +} + +src_install() { + autotools-utils_src_install + use doc && dodoc "${WORKDIR}"/${P}_build/documentation/matio_user_guide.pdf + if use examples; then + insinto /usr/share/doc/${PF}/examples + doins test/test* + insinto /usr/share/${PN} + doins share/test* + fi +} -- cgit v1.2.3-65-gdbad