commit: 999442c8634ebe97e3d0824772c1d4b34528fa11 Author: Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de> AuthorDate: Sun May 31 14:24:23 2015 +0000 Commit: Justin Lecher <jlec <AT> gentoo <DOT> org> CommitDate: Sun May 31 14:24:23 2015 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=999442c8
sci-libs/matc: Version bump Package-Manager: portage-2.2.18 sci-libs/matc/ChangeLog | 5 +++++ sci-libs/matc/matc-8.0.ebuild | 42 ++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 47 insertions(+) diff --git a/sci-libs/matc/ChangeLog b/sci-libs/matc/ChangeLog index 60cdf89..ea77050 100644 --- a/sci-libs/matc/ChangeLog +++ b/sci-libs/matc/ChangeLog @@ -2,6 +2,11 @@ # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 # $Header: $ +*matc-8.0 (31 May 2015) + + 31 May 2015; Marius Brehler <[email protected]> +matc-8.0.ebuild: + Version bump + 31 May 2015; Marius Brehler <[email protected]> matc-9999.ebuild: Source moved from sf.net to github; Fix LICENSE diff --git a/sci-libs/matc/matc-8.0.ebuild b/sci-libs/matc/matc-8.0.ebuild new file mode 100644 index 0000000..5659624 --- /dev/null +++ b/sci-libs/matc/matc-8.0.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=5 + +AUTOTOOLS_AUTORECONF=true + +inherit autotools-utils + +DESCRIPTION="Finite element programs, libraries, and visualization tools - math C library" +HOMEPAGE="http://www.csc.fi/english/pages/elmer" +SRC_URI=" + https://github.com/ElmerCSC/elmerfem/archive/release-${PV}.tar.gz -> ${P}.tar.gz + doc? ( http://www.nic.funet.fi/pub/sci/physics/elmer/doc/MATCManual.pdf )" + +LICENSE="GPL-2 LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="doc debug static-libs" + +RDEPEND=" + sys-libs/ncurses + sys-libs/readline:0" +DEPEND="${RDEPEND}" + +S="${WORKDIR}/elmerfem-release-${PV}/${PN}" + +#PATCHES=( "${FILESDIR}"/${P}-shared.patch ) + +src_configure() { + local myeconfargs=( + --enable-shared + $(use_with debug) + ) + autotools-utils_src_configure +} + +src_install() { + use doc && DOCS=( "${DISTDIR}"/MATCManual.pdf ) + autotools-utils_src_install +}
