blob: cd9ae26061064959fd6c4c68d8654745052e1d9e (
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel/openbabel-2.2.3.ebuild,v 1.10 2010/07/18 13:45:08 nixnut Exp $
EAPI="3"
PYTHON_DEPEND="python? 2"
SUPPORT_PYTHON_ABIS="1"
PYTHON_MODNAME="openbabel.py pybel.py"
inherit eutils distutils
DESCRIPTION="Interconverts file formats used in molecular modeling"
HOMEPAGE="http://openbabel.sourceforge.net/"
SRC_URI="mirror://sourceforge/openbabel/${P}.tar.gz"
KEYWORDS="amd64 hppa ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux"
SLOT="0"
LICENSE="GPL-2"
IUSE="doc python swig"
RDEPEND="
>=dev-libs/libxml2-2.6.5
!sci-chemistry/babel
sys-libs/zlib"
DEPEND="${RDEPEND}
dev-lang/perl
>=dev-libs/boost-1.35.0
python? ( swig? ( >=dev-lang/swig-1.3.38 ) )
doc? ( app-doc/doxygen )"
RESTRICT_PYTHON_ABIS="3.*"
src_prepare() {
epatch "${FILESDIR}/${PN}-2.2.0-doxyfile.patch"
if use python; then
cd "${S}/scripts/python"
distutils_src_prepare
fi
}
src_configure() {
local swigconf=""
if use swig; then
swigconf="--enable-maintainer-mode"
fi
econf ${swigconf} || die "econf failed"
}
src_compile() {
emake || die "emake failed"
if use doc ; then
emake docs || die "make docs failed"
fi
if use swig; then
emake scripts/python/openbabel_python.cpp \
|| die "Failed to make SWIG python bindings"
fi
if use python; then
cd "${S}/scripts/python"
distutils_src_compile
fi
}
src_test() {
emake check || die "make check failed"
}
src_install() {
dodoc AUTHORS ChangeLog NEWS README THANKS doc/{*.inc,README*,*.inc,*.mol2} || die
dohtml doc/{*.html,*.png} || die
if use doc ; then
insinto /usr/share/doc/${PF}/API/html
doins doc/API/html/* || die
fi
emake DESTDIR="${D}" install || die "make install failed"
# Now to install the Python bindings if necessary
if use python; then
cd "${S}/scripts/python"
distutils_src_install
if use doc; then
docinto python
dodoc README || die
docinto python/html
dodoc *.html || die
fi
fi
}
pkg_postinst() {
use python && distutils_pkg_postinst
}
pkg_postrm() {
use python && distutils_pkg_postrm
}
|