blob: 82d774f32f182f2ed3e8ad4011ff23a6c61a80c3 (
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
99
100
101
102
103
104
105
106
107
108
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/pymol/pymol-1.2.2-r1.ebuild,v 1.1 2010/02/01 21:48:57 jlec Exp $
EAPI="2"
inherit distutils
PYTHON_MODNAME="chempy pmg_tk pymol"
REV="3859"
DESCRIPTION="A Python-extensible molecular graphics system."
HOMEPAGE="http://pymol.sourceforge.net/"
SRC_URI="http://pymol.svn.sourceforge.net/viewvc/pymol/trunk/pymol.tar.gz?view=tar&pathrev=${REV} -> ${P}.tar.gz"
LICENSE="PSF-2.2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="apbs numpy shaders vmd"
DEPEND=">=dev-lang/python-2.4[tk]
dev-python/numpy
dev-python/pmw
media-libs/freetype:2
media-libs/libpng
media-video/mpeg-tools
sys-libs/zlib
virtual/glut
apbs? (
dev-libs/maloc
sci-chemistry/apbs
sci-chemistry/pdb2pqr
sci-chemistry/pymol-apbs-plugin
)"
RDEPEND="${DEPEND}"
S="${WORKDIR}"/${PN}
pkg_setup(){
python_version
}
src_prepare() {
epatch "${FILESDIR}"/1.2.1/${PN}-1.2.1-data-path.patch \
|| die "Failed to apply data-path.patch"
# Turn off splash screen. Please do make a project contribution
# if you are able though. #299020
epatch "${FILESDIR}"/1.2.1/nosplash-gentoo.patch
# Respect CFLAGS
sed -i \
-e "s:\(ext_comp_args=\).*:\1[]:g" \
"${S}"/setup.py || die "Failed running sed on setup.py"
use shaders && epatch "${FILESDIR}"/${P}-shaders.patch
if use apbs; then
cp -f "${WORKDIR}"/apbs_tools.py.${APBS_PATCH} modules/pmg_tk/startup/apbs_tools.py \
|| die "Failed to copy apbs_tools.py"
sed "s:LIBANDPYTHON:$(python_get_libdir):g" \
-i modules/pmg_tk/startup/apbs_tools.py \
|| die "Failed running sed on apbs_tools.py"
fi
use vmd && epatch "${FILESDIR}"/${P}-vmd.patch
use numpy && \
sed \
-e '/PYMOL_NUMPY/s:^#::g' \
-i setup.py
}
src_configure() {
:
}
src_install() {
distutils_src_install
# These environment variables should not go in the wrapper script, or else
# it will be impossible to use the PyMOL libraries from Python.
cat >> "${T}"/20pymol <<- EOF
PYMOL_PATH=$(python_get_sitedir)/${PN}
PYMOL_DATA="/usr/share/pymol/data"
PYMOL_SCRIPTS="/usr/share/pymol/scripts"
EOF
doenvd "${T}"/20pymol || die "Failed to install env.d file."
cat >> "${T}"/pymol <<- EOF
#!/bin/sh
${python} -O \${PYMOL_PATH}/__init__.py \$*
EOF
dobin "${T}"/pymol || die "Failed to install wrapper."
insinto /usr/share/pymol
doins -r test data scripts || die "no shared data"
insinto /usr/share/pymol/examples
doins -r examples || die "Failed to install docs."
dodoc DEVELOPERS README || die "Failed to install docs."
rm "${D}"$(python_get_sitedir)/pmg_tk/startup/apbs_tools.py
}
|