blob: 6eb49f3dcdf8caa43d085a8880ef1f247a011d06 (
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
30
31
32
33
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/app-sci/ghemical/ghemical-1.00.ebuild,v 1.5 2003/01/03 16:33:05 satai Exp $
DEPEND="gnome-base/gnome-libs
dev-libs/libf2c
x11-libs/gtkglext
app-sci/mpqc
x11-libs/gktglarea-1.2.3
media-libs/glub-3.7
dev-libs/libxml
gnome-base/libglade"
IUSE=""
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86"
DESCRIPTION="Ghemical supports both quantum-mechanics (semi-empirical and ab initio) models and molecular mechanics models (there is an experimental Tripos 5.2-like force field for organic molecules). Also a tool for reduced protein models is included. Geometry optimization, molecular dynamics and a large set of visualization tools are currently available."
HOMEPAGE="http://www.uku.fi/~thassine/ghemical/"
SRC_URI="http://www.uku.fi/~thassine/ghemical/download/${P}.tgz"
src_compile() {
./configure --prefix=/usr --enable-mpqc ||die
emake ||die
}
src_install() {
sed -e "s:^prefix=.*:prefix=${D}/usr:" Makefile > Makefile.foo
mv Makefile.foo Makefile
make install||die
}
|