diff options
Diffstat (limited to 'sci-libs/libctl/libctl-3.0.2.ebuild')
-rw-r--r-- | sci-libs/libctl/libctl-3.0.2.ebuild | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/sci-libs/libctl/libctl-3.0.2.ebuild b/sci-libs/libctl/libctl-3.0.2.ebuild new file mode 100644 index 000000000000..56e0dd8823e1 --- /dev/null +++ b/sci-libs/libctl/libctl-3.0.2.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/libctl/libctl-3.0.2.ebuild,v 1.1 2007/08/16 13:01:25 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 +} |