blob: 3b2d27bacd056bee70c641aa5f4a47b32faa9fcc (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/pymol/pymol-0.90.ebuild,v 1.2 2005/02/06 13:08:01 blubb Exp $
inherit distutils eutils
DESCRIPTION="A Python-extensible molecular graphics system."
HOMEPAGE="http://pymol.sourceforge.net/"
SRC_URI="mirror://sourceforge/pymol/${PN}-${PV/./_}-src.tgz"
LICENSE="PSF-2.2"
SLOT="0"
IUSE=""
KEYWORDS="x86 ~ppc"
DEPEND="dev-lang/python
dev-python/pmw
dev-python/numeric
dev-lang/tk
media-libs/libpng
sys-libs/zlib
media-libs/glut"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/setup.py-gentoo.patch
epatch ${FILESDIR}/setup2.py-gentoo.patch
# Turn off splash screen. Please do make a project contribution
# if you are able though.
[[ -n "$WANT_NOSPLASH" ]] && epatch ${FILESDIR}/nosplash-gentoo.patch
}
src_install() {
distutils_src_install
cd ${S}
${python} setup2.py
local sedexp="s:${D%/}::g"
sed -e ${sedexp} pymol.com > pymol
exeinto /usr/bin
doexe pymol
dodoc DEVELOPERS CHANGES
#install examples
mv examples ${D}/usr/share/doc/${PF}
}
|