diff options
author | 2024-01-17 21:23:50 -0500 | |
---|---|---|
committer | 2024-01-17 21:39:11 -0500 | |
commit | ee41bed1221f5e370a6334115a7fa00119975513 (patch) | |
tree | e3613ed8a3763a8f426b095452e0378708af242c /net-analyzer/multimon-ng | |
parent | net-analyzer/multimon-ng: add 1.3.0 (diff) | |
download | gentoo-ee41bed1221f5e370a6334115a7fa00119975513.tar.gz gentoo-ee41bed1221f5e370a6334115a7fa00119975513.tar.bz2 gentoo-ee41bed1221f5e370a6334115a7fa00119975513.zip |
net-analyzer/multimon-ng: drop 1.2.0
Signed-off-by: Rick Farina <zerochaos@gentoo.org>
Diffstat (limited to 'net-analyzer/multimon-ng')
-rw-r--r-- | net-analyzer/multimon-ng/Manifest | 1 | ||||
-rw-r--r-- | net-analyzer/multimon-ng/multimon-ng-1.2.0.ebuild | 32 |
2 files changed, 0 insertions, 33 deletions
diff --git a/net-analyzer/multimon-ng/Manifest b/net-analyzer/multimon-ng/Manifest index a2f6443c44eb..a52bf29cdaf9 100644 --- a/net-analyzer/multimon-ng/Manifest +++ b/net-analyzer/multimon-ng/Manifest @@ -1,2 +1 @@ -DIST multimon-ng-1.2.0.tar.gz 2447522 BLAKE2B bd229a2198996a7f4de2fd7a7bb8afa33c2dbb74b1d7d0ba364c687870c5064b384314151cdc449dc01fa3f5c1115ea854fa2135ed144550da70a2f720accde3 SHA512 927006703e1a6592cbde6539cedd9c1258378f258eb27ed93f1c367cb0db2a6da890fb8f4f19b7abf3cba44f1a8273f32333c66dfd353ec41d0f93491fc9988b DIST multimon-ng-1.3.0.tar.gz 2447632 BLAKE2B 6607c53677e746fc22baaca708cffab97bd1a411032e8bd6ec15410571a7c5dfaa92a2ab5d61199859acc8ffa63ee6ac97f54dde966daf4984d62ae1dfedc902 SHA512 1dad367d6de1c84c22523b7bdffff2835de496b2250a6642b6da950f1dc6d64b0c5e8e3ab7729032a8a386740d6c1c64afcd5514e131777df0123e4a29f33827 diff --git a/net-analyzer/multimon-ng/multimon-ng-1.2.0.ebuild b/net-analyzer/multimon-ng/multimon-ng-1.2.0.ebuild deleted file mode 100644 index 8144bfe94435..000000000000 --- a/net-analyzer/multimon-ng/multimon-ng-1.2.0.ebuild +++ /dev/null @@ -1,32 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit cmake - -DESCRIPTION="a fork of multimon, decodes multiple digital transmission modes" -HOMEPAGE="https://github.com/EliasOenal/multimon-ng" - -if [[ ${PV} == 9999* ]]; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/EliasOenal/multimon-ng.git" -else - SRC_URI="https://github.com/EliasOenal/multimonNG/archive/${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64 ~arm ~x86" -fi - -LICENSE="GPL-2" -SLOT="0" -IUSE="pulseaudio X" - -DEPEND="pulseaudio? ( media-libs/libpulse ) - X? ( x11-libs/libX11 )" -RDEPEND="${DEPEND} - media-sound/sox" - -src_prepare() { - use pulseaudio || sed -i '/find_package( PulseAudio )/d' CMakeLists.txt - use X || sed -i '/find_package( X11 )/d' CMakeLists.txt - cmake_src_prepare -} |