aboutsummaryrefslogtreecommitdiff
blob: dece95eb2c0e352866a623401118f735007deadd (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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

EAPI=4

PYTHON_DEPEND="2"

inherit python toolchain-funcs

DESCRIPTION="Graphical tool to construct chemical compound definitions for NMR"
HOMEPAGE="http://www.ccpn.ac.uk/software/chembuild"
SRC_URI="http://www2.ccpn.ac.uk/download/ccpnmr/${PN}${PV}_WithApi.tar.gz"

SLOT="0"
LICENSE="|| ( CCPN LGPL-2.1 )"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE=""

RDEPEND="dev-python/pyside[webkit]"
DEPEND=""

S="${WORKDIR}"/ccpnmr/ccpnmr3.0/

#TODO:
#install in sane place
#unbundle data model
#unbundle inchi
#parallel build

pkg_setup() {
	python_set_active_version 2
	python_pkg_setup
}

src_install() {
	local in_path=$(python_get_sitedir)/${PN}
	local _file

	find . -name "*.pyc" -type f -delete
	dodir /usr/bin
	sed \
	-e "s|gentoo_sitedir|${EPREFIX}$(python_get_sitedir)|g" \
	-e "s|gentoolibdir|${EPREFIX}/usr/${libdir}|g" \
	-e "s|gentootk|${EPREFIX}/usr/${libdir}/tk${tkver}|g" \
	-e "s|gentootcl|${EPREFIX}/usr/${libdir}/tclk${tkver}|g" \
	-e "s|gentoopython|$(PYTHON -a)|g" \
	-e "s|gentoousr|${EPREFIX}/usr|g" \
	-e "s|//|/|g" \
		"${FILESDIR}"/${PN} > "${ED}"/usr/bin/${PN} || die
	fperms 755 /usr/bin/${PN}

	insinto ${in_path}

	rm -rf cNg license || die

	ebegin "Installing main files"
		doins -r *
	eend
}

pkg_postinst() {
	python_mod_optimize ${PN}
}

pkg_postrm() {
	python_mod_cleanup ${PN}
}