blob: 8dfcfb185d1b2e3d07cc1cc035a8e60b2a44cf4e (
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
34
35
36
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-sci/openbabel/openbabel-1.100.2.ebuild,v 1.1 2004/02/24 08:10:53 phosphan Exp $
DESCRIPTION="Open Babel interconverts file formats used in molecular modeling."
SRC_URI="mirror://sourceforge/openbabel/${P}.tar.gz"
HOMEPAGE="http://openbabel.sourceforge.net/"
KEYWORDS="~x86 ~sparc"
SLOT="0"
LICENSE="GPL-2"
IUSE=""
DEPEND="!app-sci/babel"
src_compile() {
econf || die "configure failed"
emake || die "make failed"
}
src_install () {
make DESTDIR=${D} install || die
dohtml doc/FAQ.html doc/Migration.html doc/dioxin.png
dodoc README \
doc/README.dioxin.pov \
doc/README.povray \
doc/babel31.inc \
doc/dioxin.inc \
doc/dioxin.mol2 \
doc/dioxin.pov
doman doc/babel.1
}
|