diff options
author | Sebastien Fabbro <bicatali@gentoo.org> | 2008-07-07 09:38:36 +0000 |
---|---|---|
committer | Sebastien Fabbro <bicatali@gentoo.org> | 2008-07-07 09:38:36 +0000 |
commit | a1224724001b79b95541a55762a58b9230afa70f (patch) | |
tree | 66a1c5fc89a779aa50d202e5825ee529a1f91e04 /sci-libs/libctl | |
parent | Version bump, closing bug #231003 (diff) | |
download | gentoo-2-a1224724001b79b95541a55762a58b9230afa70f.tar.gz gentoo-2-a1224724001b79b95541a55762a58b9230afa70f.tar.bz2 gentoo-2-a1224724001b79b95541a55762a58b9230afa70f.zip |
Version bump. Close bug #230980
(Portage version: 2.1.4.4)
Diffstat (limited to 'sci-libs/libctl')
-rw-r--r-- | sci-libs/libctl/ChangeLog | 7 | ||||
-rw-r--r-- | sci-libs/libctl/libctl-3.0.3.ebuild | 26 |
2 files changed, 32 insertions, 1 deletions
diff --git a/sci-libs/libctl/ChangeLog b/sci-libs/libctl/ChangeLog index bd36811f5b12..8beac106bcd6 100644 --- a/sci-libs/libctl/ChangeLog +++ b/sci-libs/libctl/ChangeLog @@ -1,6 +1,11 @@ # 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.10 2008/01/18 14:15:40 markusle Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/libctl/ChangeLog,v 1.11 2008/07/07 09:38:36 bicatali Exp $ + +*libctl-3.0.3 (07 Jul 2008) + + 07 Jul 2008; Sébastien Fabbro <bicatali@gentoo.org> +libctl-3.0.3.ebuild: + Version bump. Close bug #230980 18 Jan 2008; Markus Dittrich <markusle@gentoo.org> libctl-2.2.ebuild, libctl-3.0.1.ebuild, libctl-3.0.2.ebuild: diff --git a/sci-libs/libctl/libctl-3.0.3.ebuild b/sci-libs/libctl/libctl-3.0.3.ebuild new file mode 100644 index 000000000000..d850a971fff8 --- /dev/null +++ b/sci-libs/libctl/libctl-3.0.3.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/libctl/libctl-3.0.3.ebuild,v 1.1 2008/07/07 09:38:36 bicatali Exp $ + +DESCRIPTION="Guile-based library implementing flexible control files 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="~x86 ~amd64" + +SLOT="0" +IUSE="examples" + +DEPEND=">=dev-scheme/guile-1.6" + +src_compile() { + econf --enable-shared || die "econf failed" + emake || die "emake failed" +} + +src_install() { + einstall || die "einstall failed" + dodoc NEWS AUTHORS COPYRIGHT ChangeLog + use examples && doins -r examples +} |