commit: b38131d0700e9d31fdd15764cabf38ae74d56164 Author: Rick Farina <zerochaos <AT> gentoo <DOT> org> AuthorDate: Wed Jan 7 19:49:43 2026 +0000 Commit: Rick Farina <zerochaos <AT> gentoo <DOT> org> CommitDate: Wed Jan 7 19:52:06 2026 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b38131d0
net-wireless/limesuite: add 23.11.0_p20250714 Closes: https://bugs.gentoo.org/922785 Closes: https://bugs.gentoo.org/949521 Closes: https://bugs.gentoo.org/955761 Closes: https://bugs.gentoo.org/925491 Signed-off-by: Rick Farina <zerochaos <AT> gentoo.org> This commit should handle all of the currently open bugs. I suspect https://bugs.gentoo.org/922785 is caused by https://bugs.gentoo.org/925491 but I may be wrong. net-wireless/limesuite/Manifest | 1 + .../limesuite/limesuite-23.11.0_p20250714.ebuild | 49 ++++++++++++++++++++++ 2 files changed, 50 insertions(+) diff --git a/net-wireless/limesuite/Manifest b/net-wireless/limesuite/Manifest index f2fe713fcb25..9b28a28c9499 100644 --- a/net-wireless/limesuite/Manifest +++ b/net-wireless/limesuite/Manifest @@ -1 +1,2 @@ DIST limesuite-23.11.0.tar.gz 5202440 BLAKE2B da91e0463f47f51b42f4be74d07e7beb3289649b7075e2a3da9752f7222c035e823ea300e15f52bcaccfde81fbae97b44e03c3bcb0ae3ce38019e88472cecf58 SHA512 0f96f92952af4470d5a9cc407c2d25348123876eab8d589371ad6105f9871dfe6e2317e634509bfd950ffb9ae30338e6fc7936ad9030c1119be442080a5174e7 +DIST limesuite-23.11.0_p20250714.tar.gz 5203759 BLAKE2B 259c1ebc306b8a7a698971267643f170d26b6babb50cf1c380f80902632fe5fbfa8883955684a3ac39acc5fffb5b4bbcae8c1569226aa3392061b24a7cd1b8a2 SHA512 147385f90e6994dc73df96af6c26cb3e97a91b003e214ac203ebff361adb5142d78713b6222f99358e799656807d1b8a941dd249eaf7d69da0f8ba1bbdd03993 diff --git a/net-wireless/limesuite/limesuite-23.11.0_p20250714.ebuild b/net-wireless/limesuite/limesuite-23.11.0_p20250714.ebuild new file mode 100644 index 000000000000..5f13924b1987 --- /dev/null +++ b/net-wireless/limesuite/limesuite-23.11.0_p20250714.ebuild @@ -0,0 +1,49 @@ +# Copyright 2022-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +WX_GTK_VER="3.2-gtk3" +inherit desktop cmake wxwidgets xdg + +DESCRIPTION="Driver and GUI for LMS7002M-based SDR platforms" +HOMEPAGE="https://myriadrf.org/projects/component/limesdr/" +#SRC_URI="https://github.com/myriadrf/LimeSuite/archive/v${PV}.tar.gz -> ${P}.tar.gz" +COMMIT_HASH="524cd2e548b11084e6f739b2dfe0f958c2e30354" +SRC_URI="https://github.com/myriadrf/LimeSuite/archive/${COMMIT_HASH}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/LimeSuite-${COMMIT_HASH}" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +DEPEND=" + x11-libs/fltk:1=[opengl] + x11-libs/wxGTK:${WX_GTK_VER}= + net-wireless/soapysdr:= + virtual/opengl + virtual/libusb:1" +RDEPEND="${DEPEND}" + +src_configure() { + setup-wxwidgets + + local mycmakeargs=( + -DENABLE_OCTAVE=OFF + -DENABLE_EXAMPLES=OFF + ) + cmake_src_configure +} + +src_install() { + cmake_src_install + + # https://github.com/myriadrf/LimeSuite/issues/223 + # Upstream installs icon and desktop files to a central location and has + # a script to move them to the correct locations at postinst time. + for size in 16 22 32 48 64 128; do + newicon -s ${size} Desktop/lime-suite-${size}.png lime-suite.png + done + domenu Desktop/lime-suite.desktop + rm -r "${ED}"/usr/share/Lime/Desktop || die +}
