zerochaos 15/05/01 01:49:12 Modified: metadata.xml gr-baz-9999.ebuild ChangeLog Log: update, get working, still the worst kind of automagic deps with no possible way to override anything (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key DD11F94A)
Revision Changes Path 1.2 net-wireless/gr-baz/metadata.xml file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/gr-baz/metadata.xml?rev=1.2&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/gr-baz/metadata.xml?rev=1.2&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/gr-baz/metadata.xml?r1=1.1&r2=1.2 Index: metadata.xml =================================================================== RCS file: /var/cvsroot/gentoo-x86/net-wireless/gr-baz/metadata.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- metadata.xml 10 Sep 2012 02:30:22 -0000 1.1 +++ metadata.xml 1 May 2015 01:49:12 -0000 1.2 @@ -8,5 +8,10 @@ </maintainer> <longdescription lang="en"> </longdescription> +<use> + <flag name='armadillo'>install MUSIC DOA estimator block</flag> + <flag name='rtlsdr'>install rtlsdr source block</flag> + <flag name='uhd'>install UHD aware blocks</flag> +</use> </pkgmetadata> 1.2 net-wireless/gr-baz/gr-baz-9999.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/gr-baz/gr-baz-9999.ebuild?rev=1.2&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/gr-baz/gr-baz-9999.ebuild?rev=1.2&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/gr-baz/gr-baz-9999.ebuild?r1=1.1&r2=1.2 Index: gr-baz-9999.ebuild =================================================================== RCS file: /var/cvsroot/gentoo-x86/net-wireless/gr-baz/gr-baz-9999.ebuild,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- gr-baz-9999.ebuild 10 Sep 2012 02:30:22 -0000 1.1 +++ gr-baz-9999.ebuild 1 May 2015 01:49:12 -0000 1.2 @@ -1,42 +1,42 @@ -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-wireless/gr-baz/gr-baz-9999.ebuild,v 1.1 2012/09/10 02:30:22 zerochaos Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-wireless/gr-baz/gr-baz-9999.ebuild,v 1.2 2015/05/01 01:49:12 zerochaos Exp $ -EAPI=4 +EAPI=5 -PYTHON_DEPEND="2" +PYTHON_COMPAT=( python2_7 ) -#inherit autotools subversion python -inherit autotools git-2 python +inherit cmake-utils git-r3 python-single-r1 DESCRIPTION="Gnuradio baz" HOMEPAGE="http://wiki.spench.net/wiki/Gr-baz" -#ESVN_REPO_URI="http://svn.spench.net/main/gr-baz/" EGIT_REPO_URI="https://github.com/balint256/gr-baz.git" LICENSE="GPL-3" SLOT="0" KEYWORDS="" -IUSE="" +IUSE="armadillo doc rtlsdr uhd" -DEPEND="net-wireless/gnuradio" -RDEPEND="${DEPEND}" +REQUIRED_USE="${PYTHON_REQUIRED_USE}" -pkg_setup() { - python_set_active_version 2 - python_pkg_setup -} - -src_prepare() { - eautoreconf -} +RDEPEND="dev-libs/boost[threads,${PYTHON_USEDEP}] + >=net-wireless/gnuradio-3.7.0[${PYTHON_USEDEP}] + armadillo? ( sci-libs/armadillo ) + rtlsdr? ( virtual/libusb:1 ) + uhd? ( net-wireless/uhd[${PYTHON_USEDEP}] ) + ${PYTHON_DEPS}" +DEPEND="${RDEPEND} + doc? ( app-doc/doxygen ) + virtual/pkgconfig" src_configure() { - econf --enable-dependency-tracking + mycmakeargs=( + -DPYTHON_EXECUTABLE="${PYTHON}" + ) + cmake-utils_src_configure } - src_install() { - default_src_install + cmake-utils_src_install insinto /usr/share/${PN} - doins samples/*.grc + doins -r samples/* } 1.2 net-wireless/gr-baz/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/gr-baz/ChangeLog?rev=1.2&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/gr-baz/ChangeLog?rev=1.2&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/gr-baz/ChangeLog?r1=1.1&r2=1.2 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/net-wireless/gr-baz/ChangeLog,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- ChangeLog 10 Sep 2012 02:30:22 -0000 1.1 +++ ChangeLog 1 May 2015 01:49:12 -0000 1.2 @@ -1,6 +1,11 @@ # ChangeLog for net-wireless/gr-baz -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-wireless/gr-baz/ChangeLog,v 1.1 2012/09/10 02:30:22 zerochaos Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-wireless/gr-baz/ChangeLog,v 1.2 2015/05/01 01:49:12 zerochaos Exp $ + + 01 May 2015; Rick Farina <[email protected]> gr-baz-9999.ebuild, + metadata.xml: + update, get working, still the worst kind of automagic deps with no possible + way to override anything *gr-baz-9999 (10 Sep 2012)
