blob: 6edf6afec46b291f6dec9caf9fe6713f4cd9a520 (
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
|
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=6
PYTHON_COMPAT=( python2_7 )
inherit distutils-r1 git-r3 versionator
DESCRIPTION="Python module for structural bioinformatics"
HOMEPAGE="http://p3d.fufezan.net/"
SRC_URI=""
EGIT_REPO_URI="https://github.com/fu/p3d.git"
SLOT="0"
KEYWORDS=""
LICENSE="GPL-3"
IUSE="examples"
src_install() {
distutils-r1_src_install
if use examples; then
insinto /usr/share/${PN}
doins -r pdbs exampleScripts || die
fi
}
|