blob: 8c35b9012141c0e793f974983ae09b783466a506 (
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
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
DESCRIPTION="Visualisation and analysis of processed NMR data"
HOMEPAGE="http://www.onemoonscientific.com/nmrview/"
SRC_URI="
${PN}${PV}.lib.tar.gz
${PN}${PV//./_}_01_linux.gz"
SLOT="0"
LICENSE="all-rights-reserved"
IUSE=""
KEYWORDS="-* ~amd64 ~x86 ~amd64-linux ~x86-linux"
RDEPEND="x11-libs/libX11"
DEPEND=""
RESTRICT="fetch"
S="${WORKDIR}"
INSTDIR="/opt/nmrview"
QA_PREBUILT="/opt/nmrview/nmrview5_2_2_01_linux"
pkg_nofetch() {
einfo "Please visit:"
einfo "\t${HOMEPAGE}"
echo
einfo "Complete the registration process, then download the following files:"
einfo "\t${A}"
echo
einfo "Place the downloaded files in your distfiles directory:"
einfo "\t${DISTDIR}"
echo
}
src_install() {
insinto ${INSTDIR}
sed \
-e "s:/opt:${EPREFIX}/opt:g" \
"${FILESDIR}"/${PN}.sh-r1 \
> "${T}"/${PN} || die
dobin "${T}"/${PN}
exeinto ${INSTDIR}
doexe ${PN}${PV//./_}_01_linux
DIRS="help html images nvtcl nvtclC nvtclExt reslib star tcl8.4 tk8.4 tools"
doins -r ${DIRS}
dodoc "${FILESDIR}"/README.Gentoo
doins README
dosym ${INSTDIR}/html /usr/share/doc/${PF}/html
dosym ${INSTDIR}/README /usr/share/doc/${PF}/README
}
|