summaryrefslogtreecommitdiff
blob: 3e50586518d34b9d9047f558198f3b625013c880 (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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/aqua/aqua-3.2-r1.ebuild,v 1.2 2010/07/19 06:33:52 jlec Exp $

EAPI="3"

inherit eutils prefix toolchain-funcs

DESCRIPTION="Program suite in this distribution calculates restraint violations"
HOMEPAGE="http://www.biochem.ucl.ac.uk/~roman/procheck/procheck.html"
SRC_URI="
	${PN}${PV}.tar.gz
	doc? ( ${P}-nmr_manual.tar.gz )"

SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
LICENSE="procheck"
IUSE="doc examples"

RDEPEND="sci-chemistry/procheck"
DEPEND=""

RESTRICT="fetch"

S="${WORKDIR}"/${PN}${PV}

pkg_nofetch() {
	elog "Please visit http://www.ebi.ac.uk/thornton-srv/software/PROCHECK/download.html"
	elog "And follow the instruction for downloading ${PN}${PV}.tar.gz ->  ${DISTDIR}/${PN}${PV}.tar.gz."
	if use doc; then
		elog "nmr_manual.tar.gz  ->  ${DISTDIR}/${P}-nmr_manual.tar.gz"
	fi
}

src_prepare() {
	sed 's:nwak:gawk:g' -i scripts/* || die
	epatch "${FILESDIR}"/${PV}-flags.patch
}

src_compile() {
	pushd src > /dev/null
	emake \
		MYROOT="${WORKDIR}" \
		CC="$(tc-getCC)" \
		FC="$(tc-getFC)" \
		CFLAGS="${CFLAGS} -I../sub/lib" \
		FFLAGS="${FFLAGS}" \
		LDFLAGS="${LDFLAGS}" \
		|| die
	popd
}

src_install() {
	rm -f scripts/conv* || die
	dobin bin/* scripts/* || die
	dosym AquaWhat /usr/bin/qwhat || die
	dosym AquaHow /usr/bin/qhow || die
	dosym AquaPseudo /usr/bin/qpseudo || die
	dosym AquaDist /usr/bin/qdist || die
	dosym AquaCalc /usr/bin/qcalc || die
	dosym AquaAssign /usr/bin/qassign || die
	dosym AquaRedun /usr/bin/qredun || die
	dosym AquaCompl /usr/bin/qcompl || die

	dodoc HISTORY HOW_TO_USE NEW README doc/* || die
	dohtml html/* || die

	insinto /usr/share/${PN}
	doins data/* || die
	if use examples; then
		doins -r exmpls || die
	fi

	if use doc; then
		dohtml -r manual || die
	fi

	cat >> "${T}"/34aqua <<- EOF
	AQUADATADIR="${EPREFIX}/usr/share/${PN}"
	EOF
	doenvd "${T}"/34aqua || die
}