diff options
author | Sebastien Fabbro <bicatali@gentoo.org> | 2009-07-14 16:54:14 +0000 |
---|---|---|
committer | Sebastien Fabbro <bicatali@gentoo.org> | 2009-07-14 16:54:14 +0000 |
commit | 6b2a42290c92a1082fa6be1d9bd5e8df578cd12a (patch) | |
tree | 5c97da8a82c09f5f0c26daba5ab1e009fce7bdf5 /sci-libs/libctl | |
parent | Automated update of use.local.desc (diff) | |
download | gentoo-2-6b2a42290c92a1082fa6be1d9bd5e8df578cd12a.tar.gz gentoo-2-6b2a42290c92a1082fa6be1d9bd5e8df578cd12a.tar.bz2 gentoo-2-6b2a42290c92a1082fa6be1d9bd5e8df578cd12a.zip |
Version bump
(Portage version: 2.2_rc33/cvs/Linux x86_64)
Diffstat (limited to 'sci-libs/libctl')
-rw-r--r-- | sci-libs/libctl/ChangeLog | 10 | ||||
-rw-r--r-- | sci-libs/libctl/libctl-3.1.ebuild | 36 | ||||
-rw-r--r-- | sci-libs/libctl/metadata.xml | 16 |
3 files changed, 49 insertions, 13 deletions
diff --git a/sci-libs/libctl/ChangeLog b/sci-libs/libctl/ChangeLog index 79a27f3be3ea..f8124208a7ae 100644 --- a/sci-libs/libctl/ChangeLog +++ b/sci-libs/libctl/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for sci-libs/libctl -# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/libctl/ChangeLog,v 1.12 2008/11/08 18:58:13 maekke Exp $ +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/libctl/ChangeLog,v 1.13 2009/07/14 16:54:14 bicatali Exp $ + +*libctl-3.1 (14 Jul 2009) + + 14 Jul 2009; Sébastien Fabbro <bicatali@gentoo.org> +libctl-3.1.ebuild, + metadata.xml: + Version bump 08 Nov 2008; Markus Meier <maekke@gentoo.org> libctl-3.0.3.ebuild: amd64/x86 stable, bug #245876 diff --git a/sci-libs/libctl/libctl-3.1.ebuild b/sci-libs/libctl/libctl-3.1.ebuild new file mode 100644 index 000000000000..610b26aa11f7 --- /dev/null +++ b/sci-libs/libctl/libctl-3.1.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/libctl/libctl-3.1.ebuild,v 1.1 2009/07/14 16:54:14 bicatali Exp $ + +EAPI=2 + +DESCRIPTION="Guile-based library for scientific simulations" +SRC_URI="http://ab-initio.mit.edu/libctl/${P}.tar.gz" +HOMEPAGE="http://ab-initio.mit.edu/libctl/" + +LICENSE="GPL-2" +KEYWORDS="~amd64 ~x86" + +SLOT="0" +IUSE="doc examples" + +DEPEND=">=dev-scheme/guile-1.6 + sci-libs/nlopt" +RDEPEND="${DEPEND}" + +src_configure() { + econf --enable-shared +} + +src_install() { + emake DESTDIR="${D}" install || die "emake failed" + dodoc NEWS AUTHORS COPYRIGHT ChangeLog + if use doc; then + dohtml doc/* || die + fi + if use examples; then + insinto /usr/share/doc/${PF}/examples + cd examples + doins Makefile.am README *.c *.h *.ctl *scm || die + fi +} diff --git a/sci-libs/libctl/metadata.xml b/sci-libs/libctl/metadata.xml index f3ee95a33ea6..83f990f73b91 100644 --- a/sci-libs/libctl/metadata.xml +++ b/sci-libs/libctl/metadata.xml @@ -3,16 +3,10 @@ <pkgmetadata> <herd>sci</herd> <longdescription lang="en"> -Scientific software for performing large computations is typically managed -using textual control files that specify the parameters of the computation. -Historically, these control files have typically consisted of long, -inflexible collections of numbers whose meaning and format is hard-coded -into the program. With libctl, we make it easy for programmers to support -a greatly superior control file structure, and with less effort than was -required for traditional input formats. -The "ctl" in "libctl" stands for Control Language (by convention, libctl -control files end with ".ctl" and are referred to as ctl files). Thus, -libctl is the Control Language Library (where the "lib" prefix follows the -Unix idiom). + libctl is the Control Language library implementing a control file + structure aimed at simplifying the control file writing in + scientific simulations. The "ctl" in "libctl" stands for Control + Language (by convention, libctl control files end with ".ctl" and + are referred to as ctl files). </longdescription> </pkgmetadata> |