blob: 59d7d98ef1dec95782a3ae7a34b2644b405029fc (
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-wireless/gnuradio/gnuradio-3.5.3.ebuild,v 1.1 2012/04/17 13:38:48 chithanh Exp $
EAPI=4
PYTHON_DEPEND="2"
inherit eutils fdo-mime python
DESCRIPTION="Toolkit that provides signal processing blocks to implement software radios"
HOMEPAGE="http://gnuradio.org/"
SRC_URI="http://gnuradio.org/redmine/attachments/download/320/${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="audio doc dot examples fcd grc guile qt4 sdl utils wxwidgets"
REQUIRED_USE="utils? ( wxwidgets )
fcd? ( audio )"
# bug #348206
# comedi? ( >=sci-electronics/comedilib-0.7 )
# uhd? ( dev-libs/uhd )
RDEPEND="dev-libs/boost
dev-python/numpy
dev-util/cppunit
sci-libs/fftw:3.0
sci-libs/gsl
virtual/cblas
fcd? ( virtual/libusb:1 )
audio? (
media-libs/alsa-lib
media-sound/jack-audio-connection-kit
>=media-libs/portaudio-19_pre
)
grc? (
dev-python/cheetah
dev-python/lxml
dev-python/pygtk:2
)
guile? ( >=dev-scheme/guile-1.8.4 )
qt4? (
dev-python/PyQt4[X,opengl]
dev-python/pyqwt:5
x11-libs/qt-gui
)
sdl? ( media-libs/libsdl )
wxwidgets? (
dev-python/wxpython:2.8
dev-python/numpy
)
"
DEPEND="${RDEPEND}
dev-lang/swig
dev-util/pkgconfig
doc? (
>=app-doc/doxygen-1.5.7.1[dot?]
app-text/xmlto
)
grc? (
x11-misc/xdg-utils
)
"
pkg_setup() {
python_set_active_version 2
python_pkg_setup
}
src_prepare() {
python_convert_shebangs -q -r 2 "${S}"
# TODO: DEPDIR is not created, need to investigate why
mkdir "${S}"/gnuradio-core/src/lib/general/.deps || die
mkdir "${S}"/gnuradio-core/src/lib/gengen/.deps || die
mkdir "${S}"/gr-trellis/src/lib/.deps || die
}
src_configure() {
# --with-lv_arch=32 fails to build on amd64
# TODO: more elegant solution is required before keywording on other arches
# TODO: docs are installed to /usr/share/doc/${PN} not /usr/share/doc/${PF}
econf \
--enable-all-components \
--enable-gnuradio-core \
--enable-gruel \
--enable-python \
--disable-gr-comedi \
--disable-gr-shd \
--disable-gr-uhd \
--with-lv_arch="generic 64 3dnow abm popcount mmx sse sse2 sse3 ssse3 sse4_a sse4_1 sse4_2 avx" \
$(use_enable audio gr-audio) \
$(use_enable doc doxygen) \
$(use_enable doc docs) \
$(use_enable dot) \
$(use_enable examples gnuradio-examples) \
$(use_enable fcd gr-fcd) \
$(use_enable grc) \
$(use_enable guile) \
$(use_enable utils gr-utils) \
$(use_enable wxwidgets gr-wxgui) \
$(use_enable sdl gr-video-sdl) \
$(use sdl || echo "--disable-sdltest") \
$(use_enable qt4 gr-qtgui) \
$(use_with qt4 qwt-incdir "${EPREFIX}"/usr/include/qwt5)
}
src_install() {
emake DESTDIR="${ED}" install
python_clean_installation_image -q
# Install examples to /usr/share/doc/$PF
if use examples ; then
dodir /usr/share/doc/${PF}/
mv "${ED}"/usr/share/gnuradio/examples "${ED}"/usr/share/doc/${PF}/ || die "failed installing examples"
else
# It seems that the examples are installed whether configured or not
rm -rf "${ED}"/usr/share/gnuradio/examples || die
fi
# Remove useless files in the doc dir
if use doc; then
rm -f "${ED}"/usr/share/doc/${PN}/html/*.md5 || die
fi
# We install the mimetypes to the correct locations from the ebuild
rm -rf "${ED}"/usr/share/gnuradio/grc/freedesktop || die
rm -f "${ED}"/usr/bin/grc_setup_freedesktop || die
# Install icons, menu items and mime-types for GRC
if use grc ; then
local fd_path="${S}/grc/freedesktop"
insinto /usr/share/mime/packages
doins "${fd_path}/gnuradio-grc.xml"
domenu "${fd_path}/"*.desktop
doicon "${fd_path}/"*.png
fi
}
pkg_postinst()
{
local GRC_ICON_SIZES="32 48 64 128 256"
python_mod_optimize gnuradio
if use grc ; then
fdo-mime_desktop_database_update
fdo-mime_mime_database_update
for size in ${GRC_ICON_SIZES} ; do
xdg-icon-resource install --noupdate --context mimetypes --size ${size} \
"${ROOT}/usr/share/pixmaps/grc-icon-${size}.png" application-gnuradio-grc \
|| die "icon resource installation failed"
xdg-icon-resource install --noupdate --context apps --size ${size} \
"${ROOT}/usr/share/pixmaps/grc-icon-${size}.png" gnuradio-grc \
|| die "icon resource installation failed"
done
xdg-icon-resource forceupdate
fi
}
pkg_postrm()
{
local GRC_ICON_SIZES="32 48 64 128 256"
python_mod_cleanup gnuradio
if use grc ; then
fdo-mime_desktop_database_update
fdo-mime_mime_database_update
for size in ${GRC_ICON_SIZES} ; do
xdg-icon-resource uninstall --noupdate --context mimetypes --size ${size} \
application-gnuradio-grc || ewarn "icon uninstall failed"
xdg-icon-resource uninstall --noupdate --context apps --size ${size} \
gnuradio-grc || ewarn "icon uninstall failed"
done
xdg-icon-resource forceupdate
fi
}
|