From d1f1f3bc630772e7197391e85311655e2b6e7fa2 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Fri, 21 Apr 2023 12:02:15 +0100 Subject: gentoo auto-resync : 21:04:2023 - 12:02:15 --- net-wireless/spectools/Manifest | 5 -- .../spectools-2011.08.1_p20140618-tinfo.patch | 41 ---------- net-wireless/spectools/metadata.xml | 19 ----- .../spectools/spectools-2016.01.1-r1.ebuild | 91 ---------------------- net-wireless/spectools/spectools-9999.ebuild | 91 ---------------------- 5 files changed, 247 deletions(-) delete mode 100644 net-wireless/spectools/Manifest delete mode 100644 net-wireless/spectools/files/spectools-2011.08.1_p20140618-tinfo.patch delete mode 100644 net-wireless/spectools/metadata.xml delete mode 100644 net-wireless/spectools/spectools-2016.01.1-r1.ebuild delete mode 100644 net-wireless/spectools/spectools-9999.ebuild (limited to 'net-wireless/spectools') diff --git a/net-wireless/spectools/Manifest b/net-wireless/spectools/Manifest deleted file mode 100644 index 1bae678af3e3..000000000000 --- a/net-wireless/spectools/Manifest +++ /dev/null @@ -1,5 +0,0 @@ -AUX spectools-2011.08.1_p20140618-tinfo.patch 1502 BLAKE2B fb7e02e1218525173fac88fadd43ff0f545d2ce1f83e79f000c84a358117dbb673c106f7d67f3bc09cffd280ce0b66a2e7016cf6bf514255c41eaa37d0d4f09d SHA512 5e36ba51f10bd37dbfd2f5b398d3e1eaad5851cfff49767919136fd59516926a5a313ca23b205c281ccab722d304b533fc2baf8646d2127e7198a47b99071723 -DIST spectools-2016-01-R1.tar.xz 120732 BLAKE2B ad937d7fc737729314ebce3c2615981ee33abee052778c7acebb15d7d33667062fce01515a8b41e18a15f3ca6214d0a818c79efe3b85929f67b18f1a06a78536 SHA512 59da488e08114018cd756d45f48541a26f643a3618bfbaec0e72c434c80e6cbc8b4f930476206c66af84ee574807e011489f884e96c7291c626b1b4e69619fad -EBUILD spectools-2016.01.1-r1.ebuild 1884 BLAKE2B 3ac27be0c23570f8546a068f80328ec0de78c8defb82169835753f7385164f8a8932428ca9d133d8ede88bd6e0e94a6d03470619e969adb36b4a7cad22704557 SHA512 6b75fb91d7fb9e63bd6aa4e88cdd15e9e8c9be564be578cb89b96441d03c92db5e35a89a2cdd88d9a1ac7607a5299345fb52708ecdc14cfa81182a148d4c542e -EBUILD spectools-9999.ebuild 1887 BLAKE2B 71c5e41c1a9b3d576b664e178ba766002049e480b49b2f1a81b76128698b1dffc81972fa3c0325ba5a3443a0f320aaa7b7aac691e178a2905192aec1e6443a97 SHA512 3d2a5396a2cf4e22e6def27fb105bd7226ecdc400a9ab5c61dc48090718530dcb2c565603f764e555f7ae1a5d75cad1173630c147fa9e10dc907b4bd59ad5d89 -MISC metadata.xml 764 BLAKE2B c7e90129ed5b3016c12f1c5ea7b9c623a432f11ff7e5fce393485bae4d6ba828529193bebf8d21d76129f2241bf55e7eef728fb91bd1e3b547750a8536f13ffb SHA512 981d60c8aeac6a7065561e7b408443b35c26d568cde253343c46302284cc52da04e8e8afd83cb2313f1ea2b95449871df81b58af3e69c754450d20c332fd79da diff --git a/net-wireless/spectools/files/spectools-2011.08.1_p20140618-tinfo.patch b/net-wireless/spectools/files/spectools-2011.08.1_p20140618-tinfo.patch deleted file mode 100644 index c5ef3480d01c..000000000000 --- a/net-wireless/spectools/files/spectools-2011.08.1_p20140618-tinfo.patch +++ /dev/null @@ -1,41 +0,0 @@ - configure.in | 21 +++++++++++---------- - 1 file changed, 11 insertions(+), 10 deletions(-) - -diff --git a/configure.in b/configure.in -index a15258c..af4ae57 100644 ---- a/configure.in -+++ b/configure.in -@@ -131,22 +131,23 @@ AC_CHECK_LIB([usb], [usb_init], AC_DEFINE(HAVE_LIBUSB, 1, LibUSB) LIBS="$LIBS -l - dnl Look for curses/libcurses - termcontrol="none"; - --AC_CHECK_LIB([ncurses], [initscr], -+PKG_CHECK_MODULES([NCURSES], [ncurses], [foundhcurses=yesyes curseaux="${NCURSES_LIBS}" termcontrol="ncurses"], [ -+ AC_CHECK_LIB([ncurses], [initscr], - AC_DEFINE(HAVE_LIBNCURSES, 1, NCurses terminal lib) \ - foundlcurses=yes curseaux="-lncurses" termcontrol="ncurses" ) - --if test "$foundlcurses" != "yes"; then -- AC_CHECK_LIB([curses], [initscr], -+ if test "$foundlcurses" != "yes"; then -+ AC_CHECK_LIB([curses], [initscr], - AC_DEFINE(HAVE_LIBCURSES, 1, Curses terminal lib) \ - foundlcurses=yes curseaux="-lcurses" termcontrol="curses" ) --fi -- --if test "$termcontrol" = "ncurses"; then -- AC_CHECK_HEADER([ncurses.h], [foundhcurses=yes]) --elif test "$termcontrol" = "curses"; then -- AC_CHECK_HEADER([curses.h], [foundhcurses=yes]) --fi -+ fi - -+ if test "$termcontrol" = "ncurses"; then -+ AC_CHECK_HEADER([ncurses.h], [foundhcurses=yes]) -+ elif test "$termcontrol" = "curses"; then -+ AC_CHECK_HEADER([curses.h], [foundhcurses=yes]) -+ fi -+]) - if test "$foundhcurses$foundlcurses" != "yesyes"; then - AC_MSG_WARN(*** Could not find curses library. Curses grapher will not be built.) - else diff --git a/net-wireless/spectools/metadata.xml b/net-wireless/spectools/metadata.xml deleted file mode 100644 index 3d6d7f4d06fd..000000000000 --- a/net-wireless/spectools/metadata.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - zerochaos@gentoo.org - Rick Farina - maintainer, has access to all hardware as needed - - - robbat2@gentoo.org - Robin H. Johnson - Maintainer, has 1st gen WiSpy hardware for testing - - - Build the raw output client for spectools. (for developers) - Build the ncurses based client for spectools - Build the gtk-2 based client for spectools - - diff --git a/net-wireless/spectools/spectools-2016.01.1-r1.ebuild b/net-wireless/spectools/spectools-2016.01.1-r1.ebuild deleted file mode 100644 index c925e2952a44..000000000000 --- a/net-wireless/spectools/spectools-2016.01.1-r1.ebuild +++ /dev/null @@ -1,91 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit autotools udev flag-o-matic - -MY_PN=${PN} -MY_PV=${PV/\./-} -MY_PV=${MY_PV/./-R} -MY_P="${MY_PN}-${MY_PV}" -S=${WORKDIR}/${MY_P} - -if [[ ${PV} == "9999" ]] ; then - EGIT_REPO_URI="https://www.kismetwireless.net/git/${PN}.git" - inherit git-r3 -else - SRC_URI="https://www.kismetwireless.net/code/${MY_P}.tar.xz" - KEYWORDS="amd64 arm ~arm64 ~ppc x86" -fi - -DESCRIPTION="Spectrum Analyzer for Meta-Geek Wi-Spy and GSG Ubertooth hardware" -HOMEPAGE="https://www.kismetwireless.net/spectools/" - -LICENSE="GPL-2" -SLOT="0" -IUSE="debug +ncurses +gtk" - -RDEPEND=" - virtual/libusb:0 - ncurses? ( sys-libs/ncurses:0= ) - gtk? ( x11-libs/gtk+:2 - x11-libs/cairo - x11-libs/gdk-pixbuf:2 - x11-libs/pango - dev-libs/glib:2 )" -DEPEND="${RDEPEND} - virtual/pkgconfig" -# Upstream has still not migrated to the libusb-1 line. -# Maemo: Add hildon and bbus - -src_prepare() { - eapply "${FILESDIR}"/${PN}-2011.08.1_p20140618-tinfo.patch - mv configure.{in,ac} || die - eautoreconf - # fix bug 577466 by restoring pre-GCC5 inline semantics - append-cflags -std=gnu89 - default -} - -# Please note that upstream removed the --with-gtk-version option -# and GTK is now automagical. GTK1 support was also removed. -src_compile() { - emake depend - - emake spectool_net - - use debug && emake spectool_raw - - use ncurses && emake spectool_curses - - use gtk && emake spectool_gtk - - #if use maemo; then - # emake spectool_hildon usbcontrol \ - # || die "emake spectool_hildon usbcontrol failed" - #fi -} - -src_install() { - dobin spectool_net - use debug && dobin spectool_raw - use ncurses && dobin spectool_curses - use gtk && dobin spectool_gtk - - udev_dorules 99-wispy.rules - dodoc README - - #if use maemo; then - # dobin spectool_hildon - # dosbin usbcontrol - #fi -} - -pkg_postinst() { - udev_reload -} - -pkg_postrm() { - udev_reload -} diff --git a/net-wireless/spectools/spectools-9999.ebuild b/net-wireless/spectools/spectools-9999.ebuild deleted file mode 100644 index 28f1597bb1ca..000000000000 --- a/net-wireless/spectools/spectools-9999.ebuild +++ /dev/null @@ -1,91 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit autotools udev flag-o-matic - -MY_PN=${PN} -MY_PV=${PV/\./-} -MY_PV=${MY_PV/./-R} -MY_P="${MY_PN}-${MY_PV}" -S=${WORKDIR}/${MY_P} - -if [[ ${PV} == "9999" ]] ; then - EGIT_REPO_URI="https://www.kismetwireless.net/git/${PN}.git" - inherit git-r3 -else - SRC_URI="https://www.kismetwireless.net/code/${MY_P}.tar.xz" - KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~x86" -fi - -DESCRIPTION="Spectrum Analyzer for Meta-Geek Wi-Spy and GSG Ubertooth hardware" -HOMEPAGE="https://www.kismetwireless.net/spectools/" - -LICENSE="GPL-2" -SLOT="0" -IUSE="debug +ncurses +gtk" - -RDEPEND=" - virtual/libusb:0 - ncurses? ( sys-libs/ncurses:0= ) - gtk? ( x11-libs/gtk+:2 - x11-libs/cairo - x11-libs/gdk-pixbuf:2 - x11-libs/pango - dev-libs/glib:2 )" -DEPEND="${RDEPEND} - virtual/pkgconfig" -# Upstream has still not migrated to the libusb-1 line. -# Maemo: Add hildon and bbus - -src_prepare() { - eapply "${FILESDIR}"/${PN}-2011.08.1_p20140618-tinfo.patch - mv configure.{in,ac} || die - eautoreconf - # fix bug 577466 by restoring pre-GCC5 inline semantics - append-cflags -std=gnu89 - default -} - -# Please note that upstream removed the --with-gtk-version option -# and GTK is now automagical. GTK1 support was also removed. -src_compile() { - emake depend - - emake spectool_net - - use debug && emake spectool_raw - - use ncurses && emake spectool_curses - - use gtk && emake spectool_gtk - - #if use maemo; then - # emake spectool_hildon usbcontrol \ - # || die "emake spectool_hildon usbcontrol failed" - #fi -} - -src_install() { - dobin spectool_net - use debug && dobin spectool_raw - use ncurses && dobin spectool_curses - use gtk && dobin spectool_gtk - - udev_dorules 99-wispy.rules - dodoc README - - #if use maemo; then - # dobin spectool_hildon - # dosbin usbcontrol - #fi -} - -pkg_postinst() { - udev_reload -} - -pkg_postrm() { - udev_reload -} -- cgit v1.2.3