blob: 5af2af113a850bfd6c05aaa1eeae024599902c48 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-libs/libctl/libctl-3.0.1.ebuild,v 1.1 2006/06/07 18:06:03 pbienst 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"
SLOT="0"
IUSE=""
DEPEND="dev-util/guile"
src_compile() {
#econf --prefix=${D}/usr --mandir=${D}/usr/man || die
econf || die "econf failed"
MAKEOPTS="-j1" emake || die # Note: emake gives strange errors.
}
src_install() {
einstall || die
dodoc COPYING NEWS AUTHORS COPYRIGHT ChangeLog
dodoc examples/*.h examples/*.c examples/*.scm examples/*.ctl
dodoc examples/README examples/Makefile.in examples/Makefile
}
|