blob: 749c910d2c8e33ca25bc1f3854ec8a3af4fd7737 (
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
109
110
111
112
113
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/pymol/pymol-1.4.1.ebuild,v 1.4 2012/02/26 06:10:49 patrick Exp $
EAPI="3"
PYTHON_DEPEND="2:2.6"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="2.4 2.5 3.* *-jython 2.7-pypy-*"
PYTHON_USE_WITH="tk"
PYTHON_MODNAME="${PN} chempy pmg_tk pmg_wx"
inherit eutils distutils prefix versionator
DESCRIPTION="A Python-extensible molecular graphics system"
HOMEPAGE="http://pymol.sourceforge.net/"
SRC_URI="http://dev.gentoo.org/~jlec/distfiles/${P}.tar.xz"
LICENSE="PSF-2.2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux"
IUSE="apbs numpy vmd web"
DEPEND="
dev-python/numpy
dev-python/pmw
media-libs/freetype:2
media-libs/glew
media-libs/libpng
media-video/mpeg-tools
sys-libs/zlib
media-libs/freeglut
apbs? (
dev-libs/maloc
sci-chemistry/apbs
sci-chemistry/pdb2pqr
sci-chemistry/pymol-apbs-plugin
)
web? ( !dev-python/webpy )"
RDEPEND="${DEPEND}"
src_prepare() {
epatch \
"${FILESDIR}"/${P}-data-path.patch \
"${FILESDIR}"/${P}-shaders.patch
use web || epatch "${FILESDIR}"/${P}-web.patch
epatch "${FILESDIR}"/${PN}-1.2.2-prefix.patch && \
eprefixify setup.py
# 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 vmd && epatch "${FILESDIR}"/${PN}-$(get_version_component_range 1-2)-vmd.patch
use numpy && \
sed \
-e '/PYMOL_NUMPY/s:^#::g' \
-i setup.py
rm ./modules/pmg_tk/startup/apbs_tools.py || die
# python 3.* fix
# sed '452,465d' -i setup.py
distutils_src_prepare
}
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="${EPREFIX}/$(python_get_sitedir -f)/${PN}"
PYMOL_DATA="${EPREFIX}/usr/share/pymol/data"
PYMOL_SCRIPTS="${EPREFIX}/usr/share/pymol/scripts"
EOF
doenvd "${T}"/20pymol || die "Failed to install env.d file."
cat >> "${T}"/pymol <<- EOF
#!/bin/sh
$(PYTHON -f) -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."
}
pkg_postinst() {
elog "\t USE=shaders was removed,"
elog "please use pymol config settings"
elog "\t set use_shaders, 1"
distutils_pkg_postinst
}
|