You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
58 lines
1.5 KiB
58 lines
1.5 KiB
13 years ago
|
# Copyright 1999-2010 Gentoo Foundation
|
||
|
# Distributed under the terms of the GNU General Public License v2
|
||
|
# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/pymol-apbs-plugin/pymol-apbs-plugin-2.1_p24.ebuild,v 1.1 2010/11/11 16:19:09 jlec Exp $
|
||
|
|
||
|
EAPI="3"
|
||
|
|
||
|
PYTHON_DEPEND="2"
|
||
|
SUPPORT_PYTHON_ABIS="1"
|
||
|
|
||
|
inherit python
|
||
|
|
||
|
MY_PV="${PV##*_p}"
|
||
|
|
||
|
DESCRIPTION="APBS plugin for pymol"
|
||
|
HOMEPAGE="http://sourceforge.net/projects/pymolapbsplugin/"
|
||
|
SRC_URI="http://pymolapbsplugin.svn.sourceforge.net/viewvc/pymolapbsplugin/trunk/src/apbsplugin.py?revision=${MY_PV} -> ${P}.py"
|
||
|
|
||
|
SLOT="0"
|
||
|
KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux"
|
||
|
LICENSE="pymol"
|
||
|
IUSE=""
|
||
|
|
||
|
RDEPEND="
|
||
|
sci-chemistry/apbs
|
||
|
sci-chemistry/pdb2pqr
|
||
|
!<sci-chemistry/pymol-1.2.2-r1"
|
||
|
DEPEND="${RDEPEND}"
|
||
|
RESTRICT_PYTHON_ABIS="3.*"
|
||
|
|
||
|
src_unpack() {
|
||
|
mkdir "${S}"
|
||
|
cp "${DISTDIR}"/${P}.py "${S}"/
|
||
|
python_copy_sources
|
||
|
}
|
||
|
|
||
|
src_install() {
|
||
|
installation() {
|
||
|
sed \
|
||
|
-e "s:^APBS_BINARY_LOCATION.*:APBS_BINARY_LOCATION = \"${EPREFIX}/usr/bin/apbs\":g" \
|
||
|
-e "s:^APBS_PSIZE_LOCATION.*:APBS_PSIZE_LOCATION = \"${EPREFIX}/$(python_get_sitedir)/pdb2pqr/src/\":g" \
|
||
|
-e "s:^APBS_PDB2PQR_LOCATION.*:APBS_PDB2PQR_LOCATION = \"${EPREFIX}/$(python_get_sitedir)/pdb2pqr/\":g" \
|
||
|
-e "s:^TEMPORARY_FILE_DIR.*:TEMPORARY_FILE_DIR = \"./\":g" \
|
||
|
-i ${P}.py
|
||
|
|
||
|
insinto $(python_get_sitedir)/pmg_tk/startup/
|
||
|
newins ${P}.py apbs_tools.py || die
|
||
|
}
|
||
|
python_execute_function -s installation
|
||
|
}
|
||
|
|
||
|
pkg_postinst() {
|
||
|
python_mod_optimize pmg_tk/startup/apbs_tools.py
|
||
|
}
|
||
|
|
||
|
pkg_postrm() {
|
||
|
python_mod_cleanup pmg_tk/startup/apbs_tools.py
|
||
|
}
|