* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/argus/, net-analyzer/argus/files/
@ 2015-10-31 6:04 Jeroen Roovers
0 siblings, 0 replies; 3+ messages in thread
From: Jeroen Roovers @ 2015-10-31 6:04 UTC (permalink / raw
To: gentoo-commits
commit: 33dc96b7a44275f0defabb7033b8fb2f527f6c39
Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
AuthorDate: Sat Oct 31 05:58:05 2015 +0000
Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
CommitDate: Sat Oct 31 05:58:05 2015 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=33dc96b7
net-analyzer/argus: Old.
Package-Manager: portage-2.2.23
net-analyzer/argus/Manifest | 1 -
net-analyzer/argus/argus-3.0.8.ebuild | 79 ----------------------
...rgus-3.0.4-disable-tcp-wrappers-automagic.patch | 22 ------
3 files changed, 102 deletions(-)
diff --git a/net-analyzer/argus/Manifest b/net-analyzer/argus/Manifest
index de07ceb..1e8051f 100644
--- a/net-analyzer/argus/Manifest
+++ b/net-analyzer/argus/Manifest
@@ -1,2 +1 @@
DIST argus-3.0.8.1.tar.gz 523375 SHA256 1fb921104c8bd843fb9f5a1c32b57b20bfe8cd8a103b3f1d9bb686b9e6c490a4 SHA512 d96332849df7ce2297aa0d81a9f22c12763d04b2936ffaffc0e4b1942535846cfbc41dadf28791eb88d1ffd0429bdc280d16dff44369c415c713064849b158f7 WHIRLPOOL 2c9495d585c2297b3f9951e74a8fd28840941be6b298c0178d44801242d1abda4bd08f9469e2dd1a4b802735611c9ff82bc028d838628b1ccb184ba80d5dc529
-DIST argus-3.0.8.tar.gz 1193140 SHA256 335d889d288763487ad3545c09b944d7d6aa2538630d1fd72eea3704a57bf6e3 SHA512 e4211bb09f442f4dc5c210b878d0f5a9527ff9c95030570e20520f2ca5c3053cc603aa3f0c4aad33363fee6ce02c3d5262bbfdecd2e2157dc00a34f333f14232 WHIRLPOOL 0a07f7f2e57bf7082af0d1ec203463cf0bedf0b682db89ae484e2162bb79f24b084a7c3d30da447d998885458444bc3799bb401c86e1a2b2dc6a7643127da0c9
diff --git a/net-analyzer/argus/argus-3.0.8.ebuild b/net-analyzer/argus/argus-3.0.8.ebuild
deleted file mode 100644
index 1010dcf..0000000
--- a/net-analyzer/argus/argus-3.0.8.ebuild
+++ /dev/null
@@ -1,79 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-inherit autotools eutils user
-
-DESCRIPTION="network Audit Record Generation and Utilization System"
-HOMEPAGE="http://www.qosient.com/argus/"
-SRC_URI="http://qosient.com/argus/src/${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="amd64 ppc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
-IUSE="debug sasl tcpd"
-
-RDEPEND="
- net-libs/libpcap
- sys-libs/zlib
- sasl? ( dev-libs/cyrus-sasl )
- tcpd? ( >=sys-apps/tcp-wrappers-7.6 )
-"
-
-DEPEND="
- ${RDEPEND}
- >=sys-devel/bison-1.28
- >=sys-devel/flex-2.4.6
-"
-
-src_prepare() {
- sed -e 's:/etc/argus.conf:/etc/argus/argus.conf:' \
- -i argus/argus.c \
- -i support/Config/argus.conf \
- -i man/man8/argus.8 \
- -i man/man5/argus.conf.5 || die
-
- sed -e 's:#\(ARGUS_SETUSER_ID=\).*:\1argus:' \
- -e 's:#\(ARGUS_SETGROUP_ID=\).*:\1argus:' \
- -e 's:\(#ARGUS_CHROOT_DIR=\).*:\1/var/lib/argus:' \
- -i support/Config/argus.conf || die
- epatch \
- "${FILESDIR}"/${PN}-3.0.4-disable-tcp-wrappers-automagic.patch \
- "${FILESDIR}"/${PN}-3.0.5-Makefile.patch \
- "${FILESDIR}"/${PN}-3.0.7.3-DLT_IPNET.patch
- eautoreconf
-}
-
-src_configure() {
- use debug && touch .debug # enable debugging
- econf $(use_with tcpd wrappers) $(use_with sasl)
-}
-
-src_compile() {
- emake CCOPT="${CFLAGS} ${LDFLAGS}"
-}
-
-src_install () {
- doman man/man5/*.5 man/man8/*.8
-
- dosbin bin/argus{,bug}
-
- dodoc ChangeLog CREDITS README
-
- insinto /etc/argus
- doins support/Config/argus.conf
-
- newinitd "${FILESDIR}/argus.initd" argus
- keepdir /var/lib/argus
-}
-
-pkg_preinst() {
- enewgroup argus
- enewuser argus -1 -1 /var/lib/argus argus
-}
-
-pkg_postinst() {
- elog "Note, if you modify ARGUS_DAEMON value in argus.conf it's quite"
- elog "possible that the init script will fail to work."
-}
diff --git a/net-analyzer/argus/files/argus-3.0.4-disable-tcp-wrappers-automagic.patch b/net-analyzer/argus/files/argus-3.0.4-disable-tcp-wrappers-automagic.patch
deleted file mode 100644
index 77bde43..0000000
--- a/net-analyzer/argus/files/argus-3.0.4-disable-tcp-wrappers-automagic.patch
+++ /dev/null
@@ -1,22 +0,0 @@
---- a/configure.ac
-+++ b/configure.ac
-@@ -270,6 +270,11 @@
- LIBS="$LIBS $V_PCAPDEP"
- fi
-
-+AC_ARG_WITH(wrappers,
-+ [ --with-wrappers build with libwrappers suuport],
-+ with_wrappers="$withval",
-+ with_wrappers="yes")
-+if test "x$with_wrappers" != "xno"; then
- AC_QOSIENT_TCPWRAP(V_WRAPDEP, V_INCLS)
- if test ! -z "$V_WRAPDEP"; then
- if test -f $V_WRAPDEP; then
-@@ -293,6 +298,7 @@
- AC_DEFINE([HAVE_TCP_WRAPPER], [], [Using Tcp wrappers])
- WRAPLIBS="$V_WRAPDEP"
- fi
-+fi
-
- AC_CHECK_FUNCS(xdrmem_create)
- if test "$ac_cv_func_xdrmem_create" = yes; then
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/argus/, net-analyzer/argus/files/
@ 2020-08-29 11:13 Jeroen Roovers
0 siblings, 0 replies; 3+ messages in thread
From: Jeroen Roovers @ 2020-08-29 11:13 UTC (permalink / raw
To: gentoo-commits
commit: e61f4b1adb000e97187c5eeefb8854dfaa60f853
Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
AuthorDate: Sat Aug 29 11:13:23 2020 +0000
Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
CommitDate: Sat Aug 29 11:13:43 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e61f4b1a
net-analyzer/argus: Version 3.0.8.3
Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Jeroen Roovers <jer <AT> gentoo.org>
net-analyzer/argus/Manifest | 1 +
net-analyzer/argus/argus-3.0.8.3.ebuild | 95 ++++++++++++++++++++++
net-analyzer/argus/files/argus-3.0.8.3-ar.patch | 11 +++
.../argus/files/argus-3.0.8.3-as-needed.patch | 11 +++
4 files changed, 118 insertions(+)
diff --git a/net-analyzer/argus/Manifest b/net-analyzer/argus/Manifest
index 17d6ac24042..960cce267b5 100644
--- a/net-analyzer/argus/Manifest
+++ b/net-analyzer/argus/Manifest
@@ -1 +1,2 @@
DIST argus-3.0.8.2.tar.gz 524749 BLAKE2B 4d93fd8acd71b198da712961d75f0e813f5ed3fde841e77b8a10c3a9b89571902b7597969a4be12437c97ffc69ba5ebefaee8b684c5d2d4ce4f1309c1cfd1199 SHA512 146795880d8697e065ed23d2fbab226846d55db0b71945c5a4cab2896e48ceb6e1671ccb4e00dc3b0f984525bac4ced3773f3b9e70c3ea5f7c6972fe9bd94313
+DIST argus-3.0.8.3.tar.gz 524549 BLAKE2B f905784c12d28d4440a7a6954441ce4f0865125a87e3d740edd5785e729f8b5b45967d97aef4f72802d2166b76176e15c6f15ec99b87ae1d14849ae92c65ad76 SHA512 f66db5b3bb1305825b76a7eda413d5805d65182aabef647e27716cfd629327b3aab8c299bc8af419199ac655cef4ac3bfcb83c059080e98b042e09f79f01d82a
diff --git a/net-analyzer/argus/argus-3.0.8.3.ebuild b/net-analyzer/argus/argus-3.0.8.3.ebuild
new file mode 100644
index 00000000000..8092871dded
--- /dev/null
+++ b/net-analyzer/argus/argus-3.0.8.3.ebuild
@@ -0,0 +1,95 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit autotools user
+
+DESCRIPTION="network Audit Record Generation and Utilization System"
+HOMEPAGE="https://openargus.org/"
+SRC_URI="https://www.qosient.com/argus/dev/${P/_rc/.rc.}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
+IUSE="debug sasl tcpd"
+
+RDEPEND="
+ net-libs/libnsl:=
+ net-libs/libpcap
+ net-libs/libtirpc
+ sys-libs/zlib
+ sasl? ( dev-libs/cyrus-sasl )
+ tcpd? ( >=sys-apps/tcp-wrappers-7.6 )
+"
+
+DEPEND="
+ ${RDEPEND}
+ >=sys-devel/bison-1.28
+ >=sys-devel/flex-2.4.6
+"
+PATCHES=(
+ "${FILESDIR}"/${PN}-3.0.8.1-disable-tcp-wrappers-automagic.patch
+ "${FILESDIR}"/${PN}-3.0.5-Makefile.patch
+ "${FILESDIR}"/${PN}-3.0.7.3-DLT_IPNET.patch
+ "${FILESDIR}"/${PN}-3.0.8.3-ar.patch
+ "${FILESDIR}"/${PN}-3.0.8.3-as-needed.patch
+)
+S=${WORKDIR}/${P/_rc/.rc.}
+
+pkg_setup() {
+ enewgroup argus
+ enewuser argus -1 -1 /var/lib/argus argus
+}
+
+src_prepare() {
+ find . -type f -execdir chmod +w {} \; #561360
+ sed -e 's:/etc/argus.conf:/etc/argus/argus.conf:' \
+ -i argus/argus.c \
+ -i support/Config/argus.conf \
+ -i man/man8/argus.8 \
+ -i man/man5/argus.conf.5 || die
+
+ sed -e 's:#\(ARGUS_SETUSER_ID=\).*:\1argus:' \
+ -e 's:#\(ARGUS_SETGROUP_ID=\).*:\1argus:' \
+ -e 's:\(#ARGUS_CHROOT_DIR=\).*:\1/var/lib/argus:' \
+ -i support/Config/argus.conf || die
+
+ default
+ eautoreconf
+}
+
+src_configure() {
+ use debug && touch .debug # enable debugging
+
+ econf \
+ $(use_with sasl) \
+ $(use_with tcpd wrappers)
+}
+
+src_compile() {
+ emake CCOPT="${CFLAGS} ${LDFLAGS}"
+}
+
+src_install() {
+ doman man/man5/*.5 man/man8/*.8
+
+ dosbin bin/argus{,bug}
+
+ dodoc ChangeLog CREDITS README
+
+ insinto /etc/argus
+ doins support/Config/argus.conf
+
+ newinitd "${FILESDIR}/argus.initd" argus
+ keepdir /var/lib/argus
+}
+
+pkg_preinst() {
+ enewgroup argus
+ enewuser argus -1 -1 /var/lib/argus argus
+}
+
+pkg_postinst() {
+ elog "Note, if you modify ARGUS_DAEMON value in argus.conf it's quite"
+ elog "possible that the init script will fail to work."
+}
diff --git a/net-analyzer/argus/files/argus-3.0.8.3-ar.patch b/net-analyzer/argus/files/argus-3.0.8.3-ar.patch
new file mode 100644
index 00000000000..d17a1d3ff06
--- /dev/null
+++ b/net-analyzer/argus/files/argus-3.0.8.3-ar.patch
@@ -0,0 +1,11 @@
+--- a/common/Makefile.in
++++ b/common/Makefile.in
+@@ -87,7 +87,7 @@
+ all: $(LIBS)
+
+ @INSTALL_LIB@/argus_common.a: $(COMMONOBJ)
+- rm -f $@; ar qc $@ $(COMMONOBJ)
++ rm -f $@; $(AR) qc $@ $(COMMONOBJ)
+ -$(RANLIB) $@
+
+ scanner.c: scanner.l
diff --git a/net-analyzer/argus/files/argus-3.0.8.3-as-needed.patch b/net-analyzer/argus/files/argus-3.0.8.3-as-needed.patch
new file mode 100644
index 00000000000..b9616d305e0
--- /dev/null
+++ b/net-analyzer/argus/files/argus-3.0.8.3-as-needed.patch
@@ -0,0 +1,11 @@
+--- a/argus/Makefile.in
++++ b/argus/Makefile.in
+@@ -85,7 +85,7 @@
+
+ OBJ = $(SRC:.c=.o)
+
+-LIB = @LIBS@ @V_THREADS@ $(WRAPLIBS) $(SASLLIBS) $(XDRLIBS) $(COMPATLIB) ../lib/argus_common.a -lm
++LIB = ../lib/argus_common.a @LIBS@ @V_THREADS@ $(WRAPLIBS) $(SASLLIBS) $(XDRLIBS) $(COMPATLIB) -lm
+
+ HDR = pcap.h pcap-int.h pcap-namedb.h pcap-nit.h pcap-pf.h \
+ ethertype.h gencode.h gnuc.h
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/argus/, net-analyzer/argus/files/
@ 2021-03-15 21:39 Sam James
0 siblings, 0 replies; 3+ messages in thread
From: Sam James @ 2021-03-15 21:39 UTC (permalink / raw
To: gentoo-commits
commit: 45047b95bd51f4e6626278282c4ed8471dff0830
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Mar 15 21:32:41 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Mar 15 21:38:36 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=45047b95
net-analyzer/argus: drop 3.0.8.2-r3, 3.0.8.2-r4
Bug: https://bugs.gentoo.org/776508
Signed-off-by: Sam James <sam <AT> gentoo.org>
net-analyzer/argus/Manifest | 1 -
net-analyzer/argus/argus-3.0.8.2-r3.ebuild | 84 ---------------------
net-analyzer/argus/argus-3.0.8.2-r4.ebuild | 85 ----------------------
.../argus/files/argus-3.0.8.2-fno-common.patch | 45 ------------
net-analyzer/argus/files/argus-3.0.8.2-rpc.patch | 45 ------------
5 files changed, 260 deletions(-)
diff --git a/net-analyzer/argus/Manifest b/net-analyzer/argus/Manifest
index 960cce267b5..196e3c62193 100644
--- a/net-analyzer/argus/Manifest
+++ b/net-analyzer/argus/Manifest
@@ -1,2 +1 @@
-DIST argus-3.0.8.2.tar.gz 524749 BLAKE2B 4d93fd8acd71b198da712961d75f0e813f5ed3fde841e77b8a10c3a9b89571902b7597969a4be12437c97ffc69ba5ebefaee8b684c5d2d4ce4f1309c1cfd1199 SHA512 146795880d8697e065ed23d2fbab226846d55db0b71945c5a4cab2896e48ceb6e1671ccb4e00dc3b0f984525bac4ced3773f3b9e70c3ea5f7c6972fe9bd94313
DIST argus-3.0.8.3.tar.gz 524549 BLAKE2B f905784c12d28d4440a7a6954441ce4f0865125a87e3d740edd5785e729f8b5b45967d97aef4f72802d2166b76176e15c6f15ec99b87ae1d14849ae92c65ad76 SHA512 f66db5b3bb1305825b76a7eda413d5805d65182aabef647e27716cfd629327b3aab8c299bc8af419199ac655cef4ac3bfcb83c059080e98b042e09f79f01d82a
diff --git a/net-analyzer/argus/argus-3.0.8.2-r3.ebuild b/net-analyzer/argus/argus-3.0.8.2-r3.ebuild
deleted file mode 100644
index 47656c47be5..00000000000
--- a/net-analyzer/argus/argus-3.0.8.2-r3.ebuild
+++ /dev/null
@@ -1,84 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit autotools epatch
-
-DESCRIPTION="network Audit Record Generation and Utilization System"
-HOMEPAGE="https://www.qosient.com/argus/"
-SRC_URI="https://www.qosient.com/argus/dev/${P/_rc/.rc.}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="amd64 ppc x86 ~amd64-linux ~x86-linux ~ppc-macos"
-IUSE="debug +libtirpc sasl tcpd"
-
-RDEPEND="
- acct-group/argus
- acct-user/argus
- net-libs/libnsl:=
- net-libs/libpcap
- sys-libs/zlib
- !libtirpc? ( sys-libs/glibc[rpc(-)] )
- libtirpc? ( net-libs/libtirpc )
- sasl? ( dev-libs/cyrus-sasl )
- tcpd? ( >=sys-apps/tcp-wrappers-7.6 )
-"
-DEPEND="
- ${RDEPEND}
- >=sys-devel/bison-1.28
- >=sys-devel/flex-2.4.6
-"
-
-S=${WORKDIR}/${P/_rc/.rc.}
-
-src_prepare() {
- find . -type f -execdir chmod +w {} \; #561360
- sed -e 's:/etc/argus.conf:/etc/argus/argus.conf:' \
- -i argus/argus.c \
- -i support/Config/argus.conf \
- -i man/man8/argus.8 \
- -i man/man5/argus.conf.5 || die
-
- sed -e 's:#\(ARGUS_SETUSER_ID=\).*:\1argus:' \
- -e 's:#\(ARGUS_SETGROUP_ID=\).*:\1argus:' \
- -e 's:\(#ARGUS_CHROOT_DIR=\).*:\1/var/lib/argus:' \
- -i support/Config/argus.conf || die
- epatch \
- "${FILESDIR}"/${PN}-3.0.8.1-disable-tcp-wrappers-automagic.patch \
- "${FILESDIR}"/${PN}-3.0.5-Makefile.patch \
- "${FILESDIR}"/${PN}-3.0.7.3-DLT_IPNET.patch \
- "${FILESDIR}"/${PN}-3.0.8.2-rpc.patch
-
- epatch_user
- eautoreconf
-}
-
-src_configure() {
- use debug && touch .debug # enable debugging
- econf $(use_with libtirpc) $(use_with tcpd wrappers) $(use_with sasl)
-}
-
-src_compile() {
- emake CCOPT="${CFLAGS} ${LDFLAGS}"
-}
-
-src_install() {
- doman man/man5/*.5 man/man8/*.8
-
- dosbin bin/argus{,bug}
-
- dodoc ChangeLog CREDITS README
-
- insinto /etc/argus
- doins support/Config/argus.conf
-
- newinitd "${FILESDIR}/argus.initd" argus
- keepdir /var/lib/argus
-}
-
-pkg_postinst() {
- elog "Note, if you modify ARGUS_DAEMON value in argus.conf it's quite"
- elog "possible that the init script will fail to work."
-}
diff --git a/net-analyzer/argus/argus-3.0.8.2-r4.ebuild b/net-analyzer/argus/argus-3.0.8.2-r4.ebuild
deleted file mode 100644
index dd6e555ef54..00000000000
--- a/net-analyzer/argus/argus-3.0.8.2-r4.ebuild
+++ /dev/null
@@ -1,85 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools
-
-DESCRIPTION="network Audit Record Generation and Utilization System"
-HOMEPAGE="https://openargus.org/"
-SRC_URI="https://www.qosient.com/argus/dev/${P/_rc/.rc.}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
-IUSE="debug +libtirpc sasl tcpd"
-
-RDEPEND="
- acct-group/argus
- acct-user/argus
- net-libs/libnsl:=
- net-libs/libpcap
- sys-libs/zlib
- !libtirpc? ( sys-libs/glibc[rpc(-)] )
- libtirpc? ( net-libs/libtirpc )
- sasl? ( dev-libs/cyrus-sasl )
- tcpd? ( >=sys-apps/tcp-wrappers-7.6 )
-"
-DEPEND="${RDEPEND}"
-BDEPEND="
- >=sys-devel/bison-1.28
- >=sys-devel/flex-2.4.6
-"
-PATCHES=(
- "${FILESDIR}"/${PN}-3.0.8.1-disable-tcp-wrappers-automagic.patch
- "${FILESDIR}"/${PN}-3.0.5-Makefile.patch
- "${FILESDIR}"/${PN}-3.0.7.3-DLT_IPNET.patch
- "${FILESDIR}"/${PN}-3.0.8.2-rpc.patch
- "${FILESDIR}"/${PN}-3.0.8.2-fno-common.patch
-)
-S=${WORKDIR}/${P/_rc/.rc.}
-
-src_prepare() {
- find . -type f -execdir chmod +w {} \; #561360
- sed -e 's:/etc/argus.conf:/etc/argus/argus.conf:' \
- -i argus/argus.c \
- -i support/Config/argus.conf \
- -i man/man8/argus.8 \
- -i man/man5/argus.conf.5 || die
-
- sed -e 's:#\(ARGUS_SETUSER_ID=\).*:\1argus:' \
- -e 's:#\(ARGUS_SETGROUP_ID=\).*:\1argus:' \
- -e 's:\(#ARGUS_CHROOT_DIR=\).*:\1/var/lib/argus:' \
- -i support/Config/argus.conf || die
-
- default
- eautoreconf
-}
-
-src_configure() {
- use debug && touch .debug # enable debugging
- econf $(use_with libtirpc) $(use_with tcpd wrappers) $(use_with sasl)
-}
-
-src_compile() {
- emake CCOPT="${CFLAGS} ${LDFLAGS}"
-}
-
-src_install() {
- doman man/man5/*.5 man/man8/*.8
-
- dosbin bin/argus{,bug}
-
- dodoc ChangeLog CREDITS README
-
- insinto /etc/argus
- doins support/Config/argus.conf
-
- newinitd "${FILESDIR}/argus.initd" argus
- keepdir /var/lib/argus
-}
-
-pkg_postinst() {
- elog "Note, if you modify ARGUS_DAEMON value in argus.conf it's quite"
- elog "possible that the init script will fail to work."
-}
diff --git a/net-analyzer/argus/files/argus-3.0.8.2-fno-common.patch b/net-analyzer/argus/files/argus-3.0.8.2-fno-common.patch
deleted file mode 100644
index 66f950d0c04..00000000000
--- a/net-analyzer/argus/files/argus-3.0.8.2-fno-common.patch
+++ /dev/null
@@ -1,45 +0,0 @@
---- a/include/argus/bootp.h
-+++ b/include/argus/bootp.h
-@@ -45,6 +45,8 @@
- unsigned char bp_vend[64]; /* vendor-specific area */
- };
-
-+extern struct bootp *bp;
-+
- /*
- * UDP port numbers, server and client.
- */
---- a/argus/ArgusUdp.c
-+++ b/argus/ArgusUdp.c
-@@ -40,9 +40,6 @@
- #include <argus_compat.h>
- #include <ArgusModeler.h>
-
--#include <argus/bootp.h>
--struct bootp *bp;
--
- void ArgusUpdateUDPState (struct ArgusModelerStruct *, struct ArgusFlowStruct *, unsigned char *);
-
- void
---- a/argus/ArgusUdt.c
-+++ b/argus/ArgusUdt.c
-@@ -40,9 +40,6 @@
- #include <argus_compat.h>
- #include <ArgusModeler.h>
-
--#include <argus/bootp.h>
--struct bootp *bp;
--
- struct ArgusSystemFlow *
- ArgusCreateUDTFlow (struct ArgusModelerStruct *model, struct udt_header *udt)
- {
---- a/argus/ArgusModeler.c
-+++ b/argus/ArgusModeler.c
-@@ -43,7 +43,6 @@
-
- #include <argus.h>
-
--#include <argus/bootp.h>
- #include <signal.h>
-
- #include <sched.h>
diff --git a/net-analyzer/argus/files/argus-3.0.8.2-rpc.patch b/net-analyzer/argus/files/argus-3.0.8.2-rpc.patch
deleted file mode 100644
index 96af0caf140..00000000000
--- a/net-analyzer/argus/files/argus-3.0.8.2-rpc.patch
+++ /dev/null
@@ -1,45 +0,0 @@
---- a/common/Makefile.in
-+++ b/common/Makefile.in
-@@ -35,12 +35,12 @@
-
- CC = @CC@
- CCOPT = @V_CCOPT@
--INCLS = -I$(srcdir) @V_INCLS@ -I$(srcdir)/../include -I$(srcdir)/../argus
-+INCLS = -I$(srcdir) @V_INCLS@ @RPC_CFLAGS@ -I$(srcdir)/../include -I$(srcdir)/../argus
- DEFS = @DEFS@
-
- # Standard CFLAGS
- CFLAGS = $(CCOPT) $(INCLS) $(DEFS)
--LDFLAGS = @LDFLAGS@
-+LDFLAGS = @LDFLAGS@ @RPC_LIBS@
-
- INSTALL = @INSTALL@
- RANLIB = @V_RANLIB@
---- a/configure.ac
-+++ b/configure.ac
-@@ -120,6 +120,25 @@
- AC_CHECK_FUNCS(floorf remainderf)
- AC_CHECK_FUNCS(timegm)
-
-+AC_ARG_WITH([libtirpc],
-+ AS_HELP_STRING([--with-libtirpc], [Use libtirpc as RPC implementation (instead of sunrpc)]),
-+ [], [ with_libtirpc=no ])
-+
-+AS_IF([test "x$with_libtirpc" != xno],
-+ [PKG_CHECK_MODULES([TIRPC],
-+ [libtirpc],
-+ [RPC_CFLAGS=$TIRPC_CFLAGS; RPC_LIBS=$TIRPC_LIBS;],
-+ [AC_MSG_ERROR([libtirpc requested, but library not found.])]
-+ )],
-+ [AC_CHECK_HEADER(rpc/rpc.h,
-+ [RPC_CFLAGS=""; RPC_LIBS="";],
-+ [AC_MSG_ERROR([sunrpc requested, but headers are not present.])]
-+ )]
-+)
-+
-+AC_SUBST(RPC_CFLAGS)
-+AC_SUBST(RPC_LIBS)
-+
- AC_CHECK_FUNCS(xdrmem_create)
- if test "$ac_cv_func_xdrmem_create" = yes ; then
- AC_DEFINE([HAVE_XDR], [], [Using system XDR library])
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2021-03-15 21:39 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-08-29 11:13 [gentoo-commits] repo/gentoo:master commit in: net-analyzer/argus/, net-analyzer/argus/files/ Jeroen Roovers
-- strict thread matches above, loose matches on Subject: below --
2021-03-15 21:39 Sam James
2015-10-31 6:04 Jeroen Roovers
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox