blob: 74cdfcf3f51b2ad52c358c2fb2b3837b66e526b4 (
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
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=5
PYTHON_COMPAT=( python{2_6,2_7} )
inherit distutils-r1 eutils
MY_PN="ViewerFramework"
MY_P="${MY_PN}-${PV/_rc3/}"
PYTHON_MODNAME="${MY_PN}"
DESCRIPTION="MGLTools Plugin -- ViewerFramework"
HOMEPAGE="http://mgltools.scripps.edu"
SRC_URI="http://mgltools.scripps.edu/downloads/tars/releases/REL${PV}/mgltools_source_${PV}.tar.gz"
LICENSE="MGLTOOLS MPL-1.1"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND=""
DEPEND="${RDEPEND}
dev-lang/swig"
S="${WORKDIR}"/${MY_P}
DOCS=( ViewerFramework/RELNOTES )
src_unpack() {
tar xzpf "${DISTDIR}"/${A} mgltools_source_${PV/_/}/MGLPACKS/${MY_P}.tar.gz
tar xzpf mgltools_source_${PV/_/}/MGLPACKS/${MY_P}.tar.gz
}
python_prepare_all() {
ecvs_clean
find "${S}" -name LICENSE -type f -delete || die
sed \
-e 's:^.*CVS:#&1:g' \
-e 's:^.*LICENSE:#&1:g' \
-i "${S}"/MANIFEST.in || die
sed \
-e '/__debug__/d' \
-i ViewerFramework/VF.py || die
distutils-r1_python_prepare_all
}
|