summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam James <sam@gentoo.org>2023-05-01 13:39:04 +0100
committerSam James <sam@gentoo.org>2023-05-01 13:48:43 +0100
commit953bf3d133df2954837858caa5bd37c8a3869188 (patch)
treebbd4254237c006d69fb8779ca7bf2d0e470bc195
parentmedia-tv/mythtv: Remove old (diff)
downloadgentoo-953bf3d133df2954837858caa5bd37c8a3869188.tar.gz
gentoo-953bf3d133df2954837858caa5bd37c8a3869188.tar.bz2
gentoo-953bf3d133df2954837858caa5bd37c8a3869188.zip
net-analyzer/argus-clients: drop 3.0.8.3
Signed-off-by: Sam James <sam@gentoo.org>
-rw-r--r--net-analyzer/argus-clients/Manifest1
-rw-r--r--net-analyzer/argus-clients/argus-clients-3.0.8.3.ebuild74
2 files changed, 0 insertions, 75 deletions
diff --git a/net-analyzer/argus-clients/Manifest b/net-analyzer/argus-clients/Manifest
index bec9030f51dc..e8b59fc9f84c 100644
--- a/net-analyzer/argus-clients/Manifest
+++ b/net-analyzer/argus-clients/Manifest
@@ -1,2 +1 @@
-DIST argus-clients-3.0.8.3.tar.gz 2753929 BLAKE2B 561b945ce5beb8d8d016579921417f405f421fd2afe2369ff0a4c5b8aaed44eca7591b43e64db00396cf963cc550753207c9b0e8d21d6b99d8c1ea0faaddb0e9 SHA512 ce6f6aaa21452f60c72498b5410cdc650eed6eec6d949daf7226e93f22d193db175e8051073cbfd258c127ed7cb445d6673ae38f386982dc19632ac55539960e
DIST argus-clients-3.0.8.4.tar.gz 2773840 BLAKE2B 0b5a24bc6a5c3163a0ac19a3a354e6573491e130c4b854bc4c9b19e6dfa1d27acea8338a88e589043b839994182756b04e205d9ef6815b2f7dc347fb51405c88 SHA512 5b6a03528c31b534d56370b4b8189d223691bb0d8f465349e7850bf54b4663e9851bddb54060a8bc263be3b80f4eab829413a7ff4da312e6640e2f7191d65473
diff --git a/net-analyzer/argus-clients/argus-clients-3.0.8.3.ebuild b/net-analyzer/argus-clients/argus-clients-3.0.8.3.ebuild
deleted file mode 100644
index 55425715a1ae..000000000000
--- a/net-analyzer/argus-clients/argus-clients-3.0.8.3.ebuild
+++ /dev/null
@@ -1,74 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-inherit autotools toolchain-funcs
-
-DESCRIPTION="Clients for net-analyzer/argus"
-HOMEPAGE="https://openargus.org/"
-SRC_URI="https://qosient.com/argus/dev/${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="amd64 ~ppc x86"
-IUSE="debug ft geoip mysql sasl tcpd"
-
-ARGUS_CDEPEND="
- net-analyzer/rrdtool[perl]
- net-libs/libpcap
- net-libs/libtirpc:=
- sys-libs/ncurses:=
- sys-libs/readline:=
- sys-libs/zlib
- ft? ( net-analyzer/flow-tools )
- geoip? ( dev-libs/geoip )
- mysql? ( dev-db/mysql-connector-c:0= )
- sasl? ( dev-libs/cyrus-sasl )
-"
-RDEPEND="
- ${ARGUS_CDEPEND}
-"
-DEPEND="
- ${ARGUS_CDEPEND}
- sys-devel/bison
- sys-devel/flex
- virtual/pkgconfig
-"
-PATCHES=(
- "${FILESDIR}"/${PN}-3.0.4.1-disable-tcp-wrappers-automagic.patch
- "${FILESDIR}"/${PN}-3.0.7.21-curses-readline.patch
- "${FILESDIR}"/${PN}-3.0.8.2-ar.patch
- "${FILESDIR}"/${PN}-3.0.8.2-curses-readline.patch
- "${FILESDIR}"/${PN}-3.0.8.2-my_bool.patch
-)
-
-src_prepare() {
- default
-
- eautoreconf
-}
-
-src_configure() {
- tc-export AR RANLIB
-
- use debug && touch .debug
- econf \
- $(use_with ft libft) \
- $(use_with geoip GeoIP /usr/) \
- $(use_with sasl) \
- $(use_with tcpd wrappers) \
- $(use_with mysql mysql /usr)
-}
-
-src_compile() {
- emake \
- CCOPT="${CFLAGS} ${LDFLAGS}" \
- RANLIB="$(tc-getRANLIB)" \
- CURSESLIB="$( $(tc-getPKG_CONFIG) --libs ncurses)"
-}
-
-src_install() {
- dobin bin/ra*
- dodoc ChangeLog CREDITS README CHANGES
- doman man/man{1,5}/*
-}