blob: 386a3b0ba9fa8bf2f8bd065868df2a65bca0974c (
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-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
inherit versionator
DESCRIPTION="Software package to calibrate, image, and analyze radioastronomical data"
HOMEPAGE="http://casa.nrao.edu/"
MY_P=$(version_format_string '${PN%-bin}-$1$2.$3.$4-$5-${6#p}-64b')
SRC_URI="https://svn.cv.nrao.edu/casa/linux_distro/old/${MY_P}.tar.gz"
LICENSE="LGPL-2.1+"
SLOT="0"
KEYWORDS="~amd64"
IUSE=""
DEPEND=""
RDEPEND="
app-crypt/mit-krb5
dev-db/sqlite
dev-libs/glib
dev-libs/icu
dev-libs/libxslt
media-libs/alsa-lib
media-libs/fontconfig
media-libs/freetype
media-libs/gst-plugins-base
media-libs/libjpeg-turbo
media-libs/mesa
media-libs/tiff
sci-libs/gsl
sci-libs/pgplot
sys-apps/keyutils
sys-apps/util-linux
sys-devel/gcc[fortran]
virtual/libffi
x11-libs/libdrm
x11-libs/libSM
x11-libs/libXau
x11-libs/libXcursor
x11-libs/libXdmcp
x11-libs/libXi
x11-libs/libXinerama
x11-libs/libXrandr
"
S="${WORKDIR}/${MY_P}"
QA_PREBUILT="/opt/casapy/* /opt/casapy/sbin/* /opt/casapy/lib64/*"
src_compile() { :; }
src_install() {
dodir /opt/
cp -R "${S}" "${D}/opt/casapy" || die "Could not copy casapy into ${D}/opt"
dodir /opt/bin
cd "${D}/opt/casapy/bin"
for binary in `ls`
do
dosym ../casapy/$binary /opt/bin/$binary
done
}
pkg_postinst() {
einfo "CASA will use media-gfx/graphviz if this package is installed."
ewarn "Upstream warns that SElinux must be disabled, set to permissive, or configured to allow execheap."
}
|