mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-04-21 14:21:02 +02:00
gnuradio: moved to gentoo
This commit is contained in:
parent
d40561b9ef
commit
3d58c50e50
3 changed files with 0 additions and 245 deletions
|
|
@ -1,2 +0,0 @@
|
|||
AUX gnuradio-3.6.0-cmake-sysconfdir.patch 3526 RMD160 2a750aeba2100a99445f3ca1bbaae670ef50830f SHA1 5c2be1b8bcf73c515715cd6a830caea26c3ebecd SHA256 3bc919327e0bb99591cb4ef1d5868dba5b5fe4acb37ecaf81fa7df202e166a2f
|
||||
EBUILD gnuradio-9999.ebuild 4403 RMD160 d0af307166e05b559939d4f9ba90cd05530dfd6d SHA1 a870e7de3c5b14e5feef606aba0c15576514b721 SHA256 53d00a1209806699ded45cdb8a3e1dac687de59a829021bc7aade2b72606041e
|
||||
|
|
@ -1,79 +0,0 @@
|
|||
diff -ur a/CMakeLists.txt b/CMakeLists.txt
|
||||
--- a/CMakeLists.txt 2012-04-21 21:00:33.000000000 +0200
|
||||
+++ b/CMakeLists.txt 2012-05-06 15:22:01.000000000 +0200
|
||||
@@ -107,6 +107,8 @@
|
||||
set(GR_LIBEXEC_DIR libexec)
|
||||
set(GR_PKG_LIBEXEC_DIR ${GR_LIBEXEC_DIR}/${CMAKE_PROJECT_NAME})
|
||||
set(GRC_BLOCKS_DIR ${GR_PKG_DATA_DIR}/grc/blocks)
|
||||
+set(SYSCONFDIR "${CMAKE_INSTALL_PREFIX}/${GR_CONF_DIR}" CACHE PATH "System configuration directory")
|
||||
+set(GR_PREFSDIR ${SYSCONFDIR}/${CMAKE_PROJECT_NAME}/conf.d)
|
||||
|
||||
########################################################################
|
||||
# Variables replaced when configuring the package config files
|
||||
@@ -115,6 +117,8 @@
|
||||
file(TO_NATIVE_PATH "\${prefix}" exec_prefix)
|
||||
file(TO_NATIVE_PATH "\${exec_prefix}/${GR_LIBRARY_DIR}" libdir)
|
||||
file(TO_NATIVE_PATH "\${prefix}/${GR_INCLUDE_DIR}" includedir)
|
||||
+file(TO_NATIVE_PATH "${SYSCONFDIR}" SYSCONFDIR)
|
||||
+file(TO_NATIVE_PATH "${GR_PREFSDIR}" GR_PREFSDIR)
|
||||
|
||||
########################################################################
|
||||
# Create uninstall target
|
||||
diff -ur a/gnuradio-core/CMakeLists.txt b/gnuradio-core/CMakeLists.txt
|
||||
--- a/gnuradio-core/CMakeLists.txt 2012-04-21 21:00:33.000000000 +0200
|
||||
+++ b/gnuradio-core/CMakeLists.txt 2012-05-05 20:05:52.000000000 +0200
|
||||
@@ -109,7 +109,7 @@
|
||||
|
||||
install(
|
||||
FILES gnuradio-core.conf
|
||||
- DESTINATION ${GR_PKG_CONF_DIR}
|
||||
+ DESTINATION ${GR_PREFSDIR}
|
||||
COMPONENT "core_runtime"
|
||||
)
|
||||
|
||||
diff -ur a/gnuradio-core/src/lib/general/CMakeLists.txt b/gnuradio-core/src/lib/general/CMakeLists.txt
|
||||
--- a/gnuradio-core/src/lib/general/CMakeLists.txt 2012-04-21 21:00:33.000000000 +0200
|
||||
+++ b/gnuradio-core/src/lib/general/CMakeLists.txt 2012-05-06 15:01:12.000000000 +0200
|
||||
@@ -48,9 +48,6 @@
|
||||
|
||||
message(STATUS "Loading version ${VERSION} into gr_constants...")
|
||||
|
||||
-file(TO_NATIVE_PATH "${CMAKE_INSTALL_PREFIX}/${GR_CONF_DIR}" SYSCONFDIR)
|
||||
-file(TO_NATIVE_PATH "${CMAKE_INSTALL_PREFIX}/${GR_PKG_CONF_DIR}" GR_PREFSDIR)
|
||||
-
|
||||
#double escape for windows backslash path separators
|
||||
string(REPLACE "\\" "\\\\" prefix ${prefix})
|
||||
string(REPLACE "\\" "\\\\" SYSCONFDIR ${SYSCONFDIR})
|
||||
diff -ur a/gr-audio/lib/CMakeLists.txt b/gr-audio/lib/CMakeLists.txt
|
||||
--- a/gr-audio/lib/CMakeLists.txt 2012-04-21 21:00:33.000000000 +0200
|
||||
+++ b/gr-audio/lib/CMakeLists.txt 2012-05-05 20:06:08.000000000 +0200
|
||||
@@ -150,4 +150,4 @@
|
||||
target_link_libraries(gnuradio-audio ${gr_audio_libs})
|
||||
GR_LIBRARY_FOO(gnuradio-audio RUNTIME_COMPONENT "audio_runtime" DEVEL_COMPONENT "audio_devel")
|
||||
|
||||
-install(FILES ${gr_audio_confs} DESTINATION ${GR_PKG_CONF_DIR} COMPONENT "audio_runtime")
|
||||
+install(FILES ${gr_audio_confs} DESTINATION ${GR_PREFSDIR} COMPONENT "audio_runtime")
|
||||
diff -ur a/grc/CMakeLists.txt b/grc/CMakeLists.txt
|
||||
--- a/grc/CMakeLists.txt 2012-04-21 21:00:33.000000000 +0200
|
||||
+++ b/grc/CMakeLists.txt 2012-05-05 20:05:16.000000000 +0200
|
||||
@@ -75,7 +75,7 @@
|
||||
|
||||
install(
|
||||
FILES ${CMAKE_CURRENT_BINARY_DIR}/grc.conf
|
||||
- DESTINATION ${GR_PKG_CONF_DIR}
|
||||
+ DESTINATION ${GR_PREFSDIR}
|
||||
COMPONENT "grc"
|
||||
)
|
||||
|
||||
diff -ur a/gr-wxgui/CMakeLists.txt b/gr-wxgui/CMakeLists.txt
|
||||
--- a/gr-wxgui/CMakeLists.txt 2012-04-21 21:00:33.000000000 +0200
|
||||
+++ b/gr-wxgui/CMakeLists.txt 2012-05-05 20:06:17.000000000 +0200
|
||||
@@ -76,7 +76,7 @@
|
||||
########################################################################
|
||||
install(
|
||||
FILES ${CMAKE_CURRENT_SOURCE_DIR}/gr-wxgui.conf
|
||||
- DESTINATION ${GR_PKG_CONF_DIR}
|
||||
+ DESTINATION ${GR_PREFSDIR}
|
||||
COMPONENT "wxgui"
|
||||
)
|
||||
|
||||
|
|
@ -1,164 +0,0 @@
|
|||
# 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.6.0.ebuild,v 1.3 2012/05/06 13:38:45 chithanh Exp $
|
||||
|
||||
EAPI=4
|
||||
PYTHON_DEPEND="2"
|
||||
|
||||
inherit base cmake-utils fdo-mime python git-2
|
||||
|
||||
DESCRIPTION="Toolkit that provides signal processing blocks to implement software radios"
|
||||
HOMEPAGE="http://gnuradio.org/"
|
||||
#SRC_URI="http://gnuradio.org/redmine/attachments/download/326/${P}.tar.gz"
|
||||
EGIT_REPO_URI="http://gnuradio.org/git/gnuradio.git"
|
||||
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
#KEYWORDS="~amd64 ~x86"
|
||||
KEYWORDS="-*"
|
||||
IUSE="audio doc examples fcd grc qt4 sdl utils wavelet wxwidgets"
|
||||
REQUIRED_USE="fcd? ( audio )"
|
||||
|
||||
# bug #348206
|
||||
# comedi? ( >=sci-electronics/comedilib-0.7 )
|
||||
# uhd? ( dev-libs/uhd )
|
||||
RDEPEND=">=dev-lang/orc-0.4.12
|
||||
dev-libs/boost
|
||||
dev-util/cppunit
|
||||
sci-libs/fftw:3.0
|
||||
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/numpy
|
||||
dev-python/pygtk:2
|
||||
)
|
||||
qt4? (
|
||||
dev-python/PyQt4[X,opengl]
|
||||
dev-python/pyqwt:5
|
||||
x11-libs/qt-gui
|
||||
)
|
||||
sdl? ( media-libs/libsdl )
|
||||
wavelet? (
|
||||
sci-libs/gsl
|
||||
)
|
||||
wxwidgets? (
|
||||
dev-python/wxpython:2.8
|
||||
dev-python/numpy
|
||||
)
|
||||
"
|
||||
DEPEND="${RDEPEND}
|
||||
dev-lang/swig
|
||||
virtual/pkgconfig
|
||||
doc? (
|
||||
>=app-doc/doxygen-1.5.7.1
|
||||
)
|
||||
grc? (
|
||||
x11-misc/xdg-utils
|
||||
)
|
||||
"
|
||||
|
||||
pkg_setup() {
|
||||
python_set_active_version 2
|
||||
python_pkg_setup
|
||||
}
|
||||
|
||||
src_prepare() {
|
||||
python_convert_shebangs -q -r 2 "${S}"
|
||||
# Useless UI element would require qt3support, bug #365019
|
||||
sed -i '/qPixmapFromMimeSource/d' "${S}"/gr-qtgui/lib/spectrumdisplayform.ui || die
|
||||
base_src_prepare
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
# TODO: docs are installed to /usr/share/doc/${PN} not /usr/share/doc/${PF}
|
||||
# SYSCONFDIR/GR_PREFSDIR default to install below CMAKE_INSTALL_PREFIX
|
||||
mycmakeargs=(
|
||||
$(cmake-utils_use_enable audio GR_AUDIO)
|
||||
$(cmake-utils_use_enable doc DOXYGEN) \
|
||||
$(cmake-utils_use_enable fcd GR_FCD) \
|
||||
$(cmake-utils_use_enable grc GRC) \
|
||||
$(cmake-utils_use_enable utils GR_UTILS) \
|
||||
$(cmake-utils_use_enable wavelet GR_WAVELET) \
|
||||
$(cmake-utils_use_enable wxwidgets GR_WXGUI) \
|
||||
$(cmake-utils_use_enable qt4 GR_QTGUI) \
|
||||
$(cmake-utils_use_enable sdl GR_VIDEO_SDL) \
|
||||
-DENABLE_GR_CORE=ON
|
||||
-DQWT_INCLUDE_DIRS="${EPREFIX}"/usr/include/qwt5
|
||||
-DSYSCONFDIR="${EPREFIX}"/etc
|
||||
)
|
||||
cmake-utils_src_configure
|
||||
}
|
||||
|
||||
src_install() {
|
||||
cmake-utils_src_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/${PN}/examples "${ED}"/usr/share/doc/${PF}/ || die
|
||||
else
|
||||
# It seems that the examples are always installed
|
||||
rm -rf "${ED}"/usr/share/${PN}/examples || die
|
||||
fi
|
||||
|
||||
# We install the mimetypes to the correct locations from the ebuild
|
||||
rm -rf "${ED}"/usr/share/${PN}/grc/freedesktop || die
|
||||
rm -f "${ED}"/usr/libexec/${PN}/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}/${PN}-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} \
|
||||
"${EROOT}/usr/share/pixmaps/grc-icon-${size}.png" application-gnuradio-grc \
|
||||
|| die "icon resource installation failed"
|
||||
xdg-icon-resource install --noupdate --context apps --size ${size} \
|
||||
"${EROOT}/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
|
||||
}
|
||||
Loading…
Reference in a new issue