blob: 321eee097a0f8c6699aea3ae229ef67c95e5e4dd (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel/openbabel-2.2.0.ebuild,v 1.1 2008/07/06 21:00:29 markusle Exp $
inherit eutils
DESCRIPTION="Open Babel interconverts file formats used in molecular modeling"
SRC_URI="mirror://sourceforge/openbabel/${P}.tar.gz"
HOMEPAGE="http://openbabel.sourceforge.net/"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
SLOT="0"
LICENSE="GPL-2"
IUSE=""
RDEPEND="!sci-chemistry/babel
dev-libs/libxml2"
DEPEND="${RDEPEND}
dev-libs/boost
dev-lang/perl"
src_install () {
make DESTDIR="${D}" install || die "make install failed."
dodoc AUTHORS ChangeLog NEWS README THANKS
cd doc
dohtml *.html *.png
dodoc *.inc README* *.inc *.mol2
}
|