blob: ea16b10d6b5c45d9cb3e1562b7d58e427c0547fb (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-radio/wspr/wspr-2.00.ebuild,v 1.2 2011/04/10 21:39:35 arfrever Exp $
EAPI="3"
PYTHON_DEPEND="2"
PYTHON_USE_WITH="tk"
inherit autotools distutils flag-o-matic multilib toolchain-funcs
MY_P=${P}.r1714
DESCRIPTION="Weak Signal Propagation Reporter"
HOMEPAGE="http://www.physics.princeton.edu/pulsar/K1JT/wspr.html"
SRC_URI="http://www.physics.princeton.edu/pulsar/K1JT/${MY_P}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND="dev-python/imaging[tk]
dev-python/numpy
dev-python/pmw
sci-libs/fftw:3.0
media-libs/hamlib
media-libs/portaudio
media-libs/libsamplerate"
DEPEND="${RDEPEND}"
S="${WORKDIR}/${MY_P}"
get_fcomp() {
case $(tc-getFC) in
*gfortran* )
FCOMP="gfortran" ;;
* )
FCOMP=$(tc-getFC) ;;
esac
}
pkg_setup() {
python_set_active_version 2
python_pkg_setup
}
src_prepare() {
tc-export FC
get_fcomp
export FC="${FCOMP}"
# upstream confused LIBDIRS with LDFLAGS in Makefile. f2py wants only
# LIBDIRS as parameter and takes LDFLAGS only from environment.
sed -i \
-e "s/LDFLAGS/LIBDIRS/g" \
Makefile.in || die "sed failed"
# drop hardcoded libdir path,
# switch LDFLAGS naming to LIBDIRS (see above comment).
sed -i -e "s/, f2py/, f2py$(python_get_version)/" \
-e "s:-L/usr/local/lib:-L/usr/$(get_libdir):" \
-e "s/LDFLAGS/LIBDIRS/g" \
configure.ac || die "sed failed"
eautoreconf
}
src_compile() {
# -shared is neded by f2py but cannot be set earlier as configure does
# not like it
append-ldflags -shared
emake || die "emake failed."
}
src_install() {
rm -rf build || die "removing build directory failed"
distutils_src_install
dobin wspr || die "dobin failed"
dodoc BUGS WSPR_*.TXT || die "dodoc failed"
insinto /usr/share/${PN}
doins hamlib_rig_numbers || die "doins failed"
}
|