diff options
author | Donnie Berkholz <spyderous@gentoo.org> | 2006-05-14 06:12:45 +0000 |
---|---|---|
committer | Donnie Berkholz <spyderous@gentoo.org> | 2006-05-14 06:12:45 +0000 |
commit | ab13d1b7a2b1fa0ee48990a3d73ff4ef4bb7f77a (patch) | |
tree | 6924acdec41bae6717b2caf776db5c5cbf3d52bb /sci-chemistry/caver/caver-0.99.2.ebuild | |
parent | slang is a global flag, remove it for app-mobilephone/yaps (diff) | |
download | gentoo-2-ab13d1b7a2b1fa0ee48990a3d73ff4ef4bb7f77a.tar.gz gentoo-2-ab13d1b7a2b1fa0ee48990a3d73ff4ef4bb7f77a.tar.bz2 gentoo-2-ab13d1b7a2b1fa0ee48990a3d73ff4ef4bb7f77a.zip |
Bump. This version does a much better job of finding stuff, and the pymol plugin's a lot more capable.
(Portage version: 2.1_pre10-r5)
Diffstat (limited to 'sci-chemistry/caver/caver-0.99.2.ebuild')
-rw-r--r-- | sci-chemistry/caver/caver-0.99.2.ebuild | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/sci-chemistry/caver/caver-0.99.2.ebuild b/sci-chemistry/caver/caver-0.99.2.ebuild new file mode 100644 index 000000000000..7d6ea5374318 --- /dev/null +++ b/sci-chemistry/caver/caver-0.99.2.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/caver/caver-0.99.2.ebuild,v 1.1 2006/05/14 06:12:45 spyderous Exp $ + +inherit multilib python + +MY_PN="${PN}_unix" +MY_P="${MY_PN}_v${PV}" +PLUG_P="${MY_P/caver/caverPLUG}" +DESCRIPTION="Rapid, accurate and fully automated calculation of pathways leading from buried cavities to outside solvent in static and dynamic protein structures" +HOMEPAGE="http://viper.chemi.muni.cz/caver/" +SRC_URI="${MY_P}.tar.gz + pymol? ( ${PLUG_P}.tar.gz )" +LICENSE="CAVER" +SLOT="0" +KEYWORDS="~ppc ~x86" +IUSE="pymol" +RDEPEND="media-libs/qhull + pymol? ( sci-chemistry/pymol )" +DEPEND="${RDEPEND}" +RESTRICT="fetch" +S="${WORKDIR}/${MY_P}" + +pkg_nofetch() { + einfo "Download ${MY_P}.tar.gz" + if use pymol; then + einfo "and ${PLUG_P}.tar.gz" + fi + einfo "from ${HOMEPAGE}. This requires registration." + einfo "Place tarballs in ${DISTDIR}." +} + +src_install() { + make DESTDIR="${D}" install + if use pymol; then + python_version + sed -i \ + -e "s:^\(CAVER_BINARY_LOCATION\).*:\1 = \"${ROOT}usr/bin/caver\":g" \ + ${WORKDIR}/${PLUG_P}/caver.py + insinto /usr/$(get_libdir)/python${PYVER}/site-packages/pmg_tk/startup + doins ${WORKDIR}/${PLUG_P}/caver.py + fi +} + +pkg_postinst() { + if use pymol; then + python_mod_compile \ + /usr/$(get_libdir)/python${PYVER}/site-packages/pmg_tk/startup/caver.py + fi +} |