summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChí-Thanh Christopher Nguyễn <chithanh@gentoo.org>2012-09-30 14:57:11 +0000
committerChí-Thanh Christopher Nguyễn <chithanh@gentoo.org>2012-09-30 14:57:11 +0000
commitc1452db2e7ff77ea284927eafe48f32f7ab1e98b (patch)
tree731d392cd92d788b34881521dfdac785ea320819 /net-wireless/gnuradio
parentstable ppc ppc64, bug #434756 (diff)
downloadgentoo-2-c1452db2e7ff77ea284927eafe48f32f7ab1e98b.tar.gz
gentoo-2-c1452db2e7ff77ea284927eafe48f32f7ab1e98b.tar.bz2
gentoo-2-c1452db2e7ff77ea284927eafe48f32f7ab1e98b.zip
Drop some obsolete versions.
(Portage version: 2.2.0_alpha132/cvs/Linux x86_64)
Diffstat (limited to 'net-wireless/gnuradio')
-rw-r--r--net-wireless/gnuradio/ChangeLog7
-rw-r--r--net-wireless/gnuradio/files/gnuradio-3.6.0-cmake-sysconfdir.patch79
-rw-r--r--net-wireless/gnuradio/gnuradio-3.6.0-r1.ebuild170
-rw-r--r--net-wireless/gnuradio/gnuradio-3.6.1-r1.ebuild182
-rw-r--r--net-wireless/gnuradio/gnuradio-3.6.1.ebuild172
5 files changed, 6 insertions, 604 deletions
diff --git a/net-wireless/gnuradio/ChangeLog b/net-wireless/gnuradio/ChangeLog
index 87088a401ad0..d6a666d9bcd3 100644
--- a/net-wireless/gnuradio/ChangeLog
+++ b/net-wireless/gnuradio/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for net-wireless/gnuradio
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-wireless/gnuradio/ChangeLog,v 1.17 2012/09/09 05:38:17 zerochaos Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-wireless/gnuradio/ChangeLog,v 1.18 2012/09/30 14:57:10 chithanh Exp $
+
+ 30 Sep 2012; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
+ -files/gnuradio-3.6.0-cmake-sysconfdir.patch, -gnuradio-3.6.0-r1.ebuild,
+ -gnuradio-3.6.1-r1.ebuild, -gnuradio-3.6.1.ebuild:
+ Drop some obsolete versions.
*gnuradio-9999 (09 Sep 2012)
diff --git a/net-wireless/gnuradio/files/gnuradio-3.6.0-cmake-sysconfdir.patch b/net-wireless/gnuradio/files/gnuradio-3.6.0-cmake-sysconfdir.patch
deleted file mode 100644
index 337a356485ca..000000000000
--- a/net-wireless/gnuradio/files/gnuradio-3.6.0-cmake-sysconfdir.patch
+++ /dev/null
@@ -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"
- )
-
diff --git a/net-wireless/gnuradio/gnuradio-3.6.0-r1.ebuild b/net-wireless/gnuradio/gnuradio-3.6.0-r1.ebuild
deleted file mode 100644
index 18447de34e7c..000000000000
--- a/net-wireless/gnuradio/gnuradio-3.6.0-r1.ebuild
+++ /dev/null
@@ -1,170 +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-r1.ebuild,v 1.2 2012/07/27 18:19:18 kensington Exp $
-
-EAPI=4
-PYTHON_DEPEND="2"
-
-inherit base cmake-utils 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/326/${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-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:4
- )
- 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
- )
-"
-
-# Add support for custom SYSCONFDIR, upstream bug #492
-PATCHES=(
- "${FILESDIR}"/${PN}-3.6.0-cmake-sysconfdir.patch
-)
-
-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
-
- # Remove bad shebangs that creep back in during install
- sed -i '\|#!/usr/bin/python|d' "${ED}"/usr/bin/* || die
-
- # 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
-}
diff --git a/net-wireless/gnuradio/gnuradio-3.6.1-r1.ebuild b/net-wireless/gnuradio/gnuradio-3.6.1-r1.ebuild
deleted file mode 100644
index 588db3dc7951..000000000000
--- a/net-wireless/gnuradio/gnuradio-3.6.1-r1.ebuild
+++ /dev/null
@@ -1,182 +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.1-r1.ebuild,v 1.3 2012/07/27 18:19:18 kensington Exp $
-
-EAPI=4
-PYTHON_DEPEND="2"
-
-inherit base cmake-utils 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/389/${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="alsa doc examples fcd grc jack oss portaudio qt4 sdl utils wavelet wxwidgets"
-
-# bug #348206
-# comedi? ( >=sci-electronics/comedilib-0.7 )
-# uhd? ( dev-libs/uhd )
-RDEPEND=">=dev-lang/orc-0.4.12
- dev-libs/boost
- dev-python/cheetah
- dev-util/cppunit
- sci-libs/fftw:3.0
- fcd? ( virtual/libusb:1 )
- alsa? (
- media-libs/alsa-lib
- )
- grc? (
- dev-python/lxml
- dev-python/numpy
- dev-python/pygtk:2
- )
- jack? (
- media-sound/jack-audio-connection-kit
- )
- portaudio? (
- >=media-libs/portaudio-19_pre
- )
- qt4? (
- dev-python/PyQt4[X,opengl]
- dev-python/pyqwt:5
- x11-libs/qt-gui:4
- )
- 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
- dev-python/sphinx
- )
- grc? (
- x11-misc/xdg-utils
- )
- oss? (
- virtual/os-headers
- )
-"
-
-# Add support for custom SYSCONFDIR, upstream bug #492
-PATCHES=(
- "${FILESDIR}"/${PN}-3.6.0-cmake-sysconfdir.patch
- "${FILESDIR}"/${PN}-3.6.1-automagic-audio.patch
-)
-
-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 alsa GR_AUDIO_ALSA)
- $(cmake-utils_use_enable doc DOXYGEN) \
- $(cmake-utils_use_enable doc SPHINX) \
- $(cmake-utils_use_enable fcd GR_FCD) \
- $(cmake-utils_use_enable grc GRC) \
- $(cmake-utils_use_enable jack GR_AUDIO_JACK)
- $(cmake-utils_use_enable oss GR_AUDIO_OSS)
- $(cmake-utils_use_enable portaudio GR_AUDIO_PORTAUDIO)
- $(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
-
- # Remove bad shebangs that creep back in during install
- sed -i '\|#!/usr/bin/python|d' "${ED}"/usr/bin/* || die
-
- # 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
-}
diff --git a/net-wireless/gnuradio/gnuradio-3.6.1.ebuild b/net-wireless/gnuradio/gnuradio-3.6.1.ebuild
deleted file mode 100644
index 55580008c2b9..000000000000
--- a/net-wireless/gnuradio/gnuradio-3.6.1.ebuild
+++ /dev/null
@@ -1,172 +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.1.ebuild,v 1.2 2012/07/27 18:19:18 kensington Exp $
-
-EAPI=4
-PYTHON_DEPEND="2"
-
-inherit base cmake-utils 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/389/${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-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:4
- )
- 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
- dev-python/sphinx
- )
- grc? (
- x11-misc/xdg-utils
- )
-"
-
-# Add support for custom SYSCONFDIR, upstream bug #492
-PATCHES=(
- "${FILESDIR}"/${PN}-3.6.0-cmake-sysconfdir.patch
-)
-
-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 doc SPHINX) \
- $(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
-
- # Remove bad shebangs that creep back in during install
- sed -i '\|#!/usr/bin/python|d' "${ED}"/usr/bin/* || die
-
- # 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
-}