diff options
Diffstat (limited to 'sci-libs/libctl/libctl-3.1.ebuild')
-rw-r--r-- | sci-libs/libctl/libctl-3.1.ebuild | 36 |
1 files changed, 36 insertions, 0 deletions
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 +} |