* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/nsat/
@ 2017-09-17 9:22 Jeroen Roovers
0 siblings, 0 replies; 9+ messages in thread
From: Jeroen Roovers @ 2017-09-17 9:22 UTC (permalink / raw
To: gentoo-commits
commit: 9925c286b8d709ed6a8071edf8f70a907a5a4864
Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 17 09:13:55 2017 +0000
Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
CommitDate: Sun Sep 17 09:22:30 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9925c286
net-analyzer/nsat: Revert stable changes.
Package-Manager: Portage-2.3.8, Repoman-2.3.3
net-analyzer/nsat/nsat-1.5-r3.ebuild | 8 --------
1 file changed, 8 deletions(-)
diff --git a/net-analyzer/nsat/nsat-1.5-r3.ebuild b/net-analyzer/nsat/nsat-1.5-r3.ebuild
index a320fe17fbc..67ce3ebbb2b 100644
--- a/net-analyzer/nsat/nsat-1.5-r3.ebuild
+++ b/net-analyzer/nsat/nsat-1.5-r3.ebuild
@@ -20,13 +20,6 @@ RDEPEND="
)
dev-libs/libmix
net-libs/libpcap
- || ( <sys-libs/glibc-2.26
- (
- net-libs/libtirpc
- net-libs/libnsl
- net-libs/rpcsvc-proto
- )
- )
"
DEPEND="$RDEPEND"
@@ -38,7 +31,6 @@ src_prepare() {
epatch "${FILESDIR}"/${P}-strip.patch
epatch "${FILESDIR}"/${P}-misc.patch
epatch "${FILESDIR}"/${P}-va_list.patch
- epatch "${FILESDIR}"/${P}-libtirpc.patch
use amd64 && epatch "${FILESDIR}"/${P}-amd64-compat.patch
sed -i \
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/nsat/
@ 2017-09-17 9:22 Jeroen Roovers
0 siblings, 0 replies; 9+ messages in thread
From: Jeroen Roovers @ 2017-09-17 9:22 UTC (permalink / raw
To: gentoo-commits
commit: 421a6ee1583bb50f2caaea4173d79055916675cf
Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 17 09:22:02 2017 +0000
Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
CommitDate: Sun Sep 17 09:22:33 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=421a6ee1
net-analyzer/nsat: Reintroduce sys-libs/glibc-2.26 (bug #371025) compat changes in a new ebuild instead of STRAIGHT TO STABLE.
Package-Manager: Portage-2.3.8, Repoman-2.3.3
net-analyzer/nsat/nsat-1.5-r4.ebuild | 79 ++++++++++++++++++++++++++++++++++++
1 file changed, 79 insertions(+)
diff --git a/net-analyzer/nsat/nsat-1.5-r4.ebuild b/net-analyzer/nsat/nsat-1.5-r4.ebuild
new file mode 100644
index 00000000000..52381d75fcf
--- /dev/null
+++ b/net-analyzer/nsat/nsat-1.5-r4.ebuild
@@ -0,0 +1,79 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit autotools toolchain-funcs
+
+DESCRIPTION="Network Security Analysis Tool, an application-level network security scanner"
+HOMEPAGE="http://nsat.sourceforge.net/"
+SRC_URI="mirror://sourceforge/nsat/${P}.tgz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+IUSE="X"
+
+RDEPEND="
+ dev-libs/libmix
+ net-libs/libpcap
+ X? (
+ dev-lang/tk:*
+ x11-libs/libX11
+ )
+ || ( <sys-libs/glibc-2.26
+ (
+ net-libs/libnsl
+ net-libs/libtirpc
+ net-libs/rpcsvc-proto
+ )
+ )
+"
+DEPEND="$RDEPEND"
+S="${WORKDIR}/${PN}"
+PATCHES=(
+ "${FILESDIR}"/${P}-configure.patch
+ "${FILESDIR}"/${P}-lvalue-gcc4.patch
+ "${FILESDIR}"/${P}-strip.patch
+ "${FILESDIR}"/${P}-misc.patch
+ "${FILESDIR}"/${P}-va_list.patch
+ "${FILESDIR}"/${P}-libtirpc.patch
+ "${FILESDIR}"/${P}-amd64-compat.patch
+)
+
+src_prepare() {
+ default
+
+ sed -i \
+ -e "s:^#CGIFile /usr/local/share/nsat/nsat.cgi$:#CGIFile /usr/share/nsat/nsat.cgi:g" \
+ nsat.conf || die
+ sed -i -e "s:/usr/local:/usr:g" tools/xnsat || die
+ sed -i \
+ -e "s:/usr/local/share/nsat/nsat.conf:/etc/nsat/nsat.conf:g" \
+ -e "s:/usr/local/share/nsat/nsat.cgi:/usr/share/nsat/nsat.cgi:g" \
+ src/lang.h || die
+
+ eautoreconf
+}
+
+src_configure() {
+ tc-export CC
+ econf $(use_with X x)
+}
+
+src_compile() {
+ emake MIXOBJ=-lmix++
+}
+
+src_install () {
+ dobin nsat smb-ns
+ use X && dobin tools/xnsat
+
+ insinto /usr/share/nsat
+ doins nsat.cgi
+
+ insinto /etc/nsat
+ doins nsat.conf
+
+ dodoc README doc/CHANGES
+ doman doc/nsat.8
+}
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/nsat/
@ 2017-11-01 11:50 Andreas Hüttel
0 siblings, 0 replies; 9+ messages in thread
From: Andreas Hüttel @ 2017-11-01 11:50 UTC (permalink / raw
To: gentoo-commits
commit: 32986faf6b192eb16f013b6e7bfe5c479f8c4499
Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
AuthorDate: Wed Nov 1 11:50:26 2017 +0000
Commit: Andreas Hüttel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Wed Nov 1 11:50:26 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=32986faf
net-analyzer/nsat: Depend unconditionally on libnsl
Package-Manager: Portage-2.3.13, Repoman-2.3.4
net-analyzer/nsat/nsat-1.5-r4.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-analyzer/nsat/nsat-1.5-r4.ebuild b/net-analyzer/nsat/nsat-1.5-r4.ebuild
index 52381d75fcf..71f484cf127 100644
--- a/net-analyzer/nsat/nsat-1.5-r4.ebuild
+++ b/net-analyzer/nsat/nsat-1.5-r4.ebuild
@@ -15,6 +15,7 @@ IUSE="X"
RDEPEND="
dev-libs/libmix
+ net-libs/libnsl:0=
net-libs/libpcap
X? (
dev-lang/tk:*
@@ -22,7 +23,6 @@ RDEPEND="
)
|| ( <sys-libs/glibc-2.26
(
- net-libs/libnsl
net-libs/libtirpc
net-libs/rpcsvc-proto
)
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/nsat/
@ 2018-03-02 22:22 Andreas Hüttel
0 siblings, 0 replies; 9+ messages in thread
From: Andreas Hüttel @ 2018-03-02 22:22 UTC (permalink / raw
To: gentoo-commits
commit: 3e087566f12985f32416c815e864d7bff867059d
Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 2 22:22:00 2018 +0000
Commit: Andreas Hüttel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Fri Mar 2 22:22:30 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e087566
net-analyzer/nsat: Remove libtirpc automagic and depend on it instead
Bug: https://bugs.gentoo.org/371025
Package-Manager: Portage-2.3.24, Repoman-2.3.6
net-analyzer/nsat/nsat-1.5-r5.ebuild | 75 ++++++++++++++++++++++++++++++++++++
1 file changed, 75 insertions(+)
diff --git a/net-analyzer/nsat/nsat-1.5-r5.ebuild b/net-analyzer/nsat/nsat-1.5-r5.ebuild
new file mode 100644
index 00000000000..87d30b46c18
--- /dev/null
+++ b/net-analyzer/nsat/nsat-1.5-r5.ebuild
@@ -0,0 +1,75 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit autotools toolchain-funcs
+
+DESCRIPTION="Network Security Analysis Tool, an application-level network security scanner"
+HOMEPAGE="http://nsat.sourceforge.net/"
+SRC_URI="mirror://sourceforge/nsat/${P}.tgz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+IUSE="X"
+
+RDEPEND="
+ dev-libs/libmix
+ net-libs/libnsl:0=
+ net-libs/libpcap
+ net-libs/libtirpc
+ net-libs/rpcsvc-proto
+ X? (
+ dev-lang/tk:*
+ x11-libs/libX11
+ )
+"
+DEPEND="$RDEPEND"
+S="${WORKDIR}/${PN}"
+PATCHES=(
+ "${FILESDIR}"/${P}-configure.patch
+ "${FILESDIR}"/${P}-lvalue-gcc4.patch
+ "${FILESDIR}"/${P}-strip.patch
+ "${FILESDIR}"/${P}-misc.patch
+ "${FILESDIR}"/${P}-va_list.patch
+ "${FILESDIR}"/${P}-libtirpc.patch
+ "${FILESDIR}"/${P}-amd64-compat.patch
+)
+
+src_prepare() {
+ default
+
+ sed -i \
+ -e "s:^#CGIFile /usr/local/share/nsat/nsat.cgi$:#CGIFile /usr/share/nsat/nsat.cgi:g" \
+ nsat.conf || die
+ sed -i -e "s:/usr/local:/usr:g" tools/xnsat || die
+ sed -i \
+ -e "s:/usr/local/share/nsat/nsat.conf:/etc/nsat/nsat.conf:g" \
+ -e "s:/usr/local/share/nsat/nsat.cgi:/usr/share/nsat/nsat.cgi:g" \
+ src/lang.h || die
+
+ eautoreconf
+}
+
+src_configure() {
+ tc-export CC
+ econf $(use_with X x)
+}
+
+src_compile() {
+ emake MIXOBJ=-lmix++
+}
+
+src_install () {
+ dobin nsat smb-ns
+ use X && dobin tools/xnsat
+
+ insinto /usr/share/nsat
+ doins nsat.cgi
+
+ insinto /etc/nsat
+ doins nsat.conf
+
+ dodoc README doc/CHANGES
+ doman doc/nsat.8
+}
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/nsat/
@ 2018-04-12 20:54 Thomas Deutschmann
0 siblings, 0 replies; 9+ messages in thread
From: Thomas Deutschmann @ 2018-04-12 20:54 UTC (permalink / raw
To: gentoo-commits
commit: 89ba4e004596658364b016f49350d9933b2a3565
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Thu Apr 12 20:44:24 2018 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Thu Apr 12 20:53:38 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89ba4e00
net-analyzer/nsat: x86 stable (bug #649412)
Package-Manager: Portage-2.3.28, Repoman-2.3.9
net-analyzer/nsat/nsat-1.5-r5.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-analyzer/nsat/nsat-1.5-r5.ebuild b/net-analyzer/nsat/nsat-1.5-r5.ebuild
index 87d30b46c18..c2decc6abfc 100644
--- a/net-analyzer/nsat/nsat-1.5-r5.ebuild
+++ b/net-analyzer/nsat/nsat-1.5-r5.ebuild
@@ -10,7 +10,7 @@ SRC_URI="mirror://sourceforge/nsat/${P}.tgz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
+KEYWORDS="~amd64 ~ppc x86"
IUSE="X"
RDEPEND="
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/nsat/
@ 2018-04-22 13:58 Andreas Hüttel
0 siblings, 0 replies; 9+ messages in thread
From: Andreas Hüttel @ 2018-04-22 13:58 UTC (permalink / raw
To: gentoo-commits
commit: 64990164e074c0accad2dcca6942ed62cc4dbbb2
Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 22 13:57:26 2018 +0000
Commit: Andreas Hüttel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Sun Apr 22 13:57:26 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=64990164
net-analyzer/nsat: Remove old
Closes: https://bugs.gentoo.org/371025
Package-Manager: Portage-2.3.31, Repoman-2.3.9
net-analyzer/nsat/nsat-1.5-r3.ebuild | 69 -------------------------------
net-analyzer/nsat/nsat-1.5-r4.ebuild | 79 ------------------------------------
2 files changed, 148 deletions(-)
diff --git a/net-analyzer/nsat/nsat-1.5-r3.ebuild b/net-analyzer/nsat/nsat-1.5-r3.ebuild
deleted file mode 100644
index 67ce3ebbb2b..00000000000
--- a/net-analyzer/nsat/nsat-1.5-r3.ebuild
+++ /dev/null
@@ -1,69 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit autotools eutils toolchain-funcs
-
-DESCRIPTION="Network Security Analysis Tool, an application-level network security scanner"
-HOMEPAGE="http://nsat.sourceforge.net/"
-SRC_URI="mirror://sourceforge/nsat/${P}.tgz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc x86"
-IUSE="X"
-
-RDEPEND="
- X? (
- x11-libs/libX11
- dev-lang/tk
- )
- dev-libs/libmix
- net-libs/libpcap
-"
-DEPEND="$RDEPEND"
-
-S="${WORKDIR}/${PN}"
-
-src_prepare() {
- epatch "${FILESDIR}"/${P}-configure.patch
- epatch "${FILESDIR}"/${P}-lvalue-gcc4.patch
- epatch "${FILESDIR}"/${P}-strip.patch
- epatch "${FILESDIR}"/${P}-misc.patch
- epatch "${FILESDIR}"/${P}-va_list.patch
- use amd64 && epatch "${FILESDIR}"/${P}-amd64-compat.patch
-
- sed -i \
- -e "s:^#CGIFile /usr/local/share/nsat/nsat.cgi$:#CGIFile /usr/share/nsat/nsat.cgi:g" \
- nsat.conf || die
- sed -i -e "s:/usr/local:/usr:g" tools/xnsat || die
- sed -i \
- -e "s:/usr/local/share/nsat/nsat.conf:/etc/nsat/nsat.conf:g" \
- -e "s:/usr/local/share/nsat/nsat.cgi:/usr/share/nsat/nsat.cgi:g" \
- src/lang.h || die
-
- eautoreconf
-}
-
-src_configure() {
- tc-export CC
- econf $(use_with X x)
-}
-
-src_compile() {
- emake MIXOBJ=-lmix++
-}
-
-src_install () {
- dobin nsat smb-ns
- use X && dobin tools/xnsat
-
- insinto /usr/share/nsat
- doins nsat.cgi
-
- insinto /etc/nsat
- doins nsat.conf
-
- dodoc README doc/CHANGES
- doman doc/nsat.8
-}
diff --git a/net-analyzer/nsat/nsat-1.5-r4.ebuild b/net-analyzer/nsat/nsat-1.5-r4.ebuild
deleted file mode 100644
index 71f484cf127..00000000000
--- a/net-analyzer/nsat/nsat-1.5-r4.ebuild
+++ /dev/null
@@ -1,79 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit autotools toolchain-funcs
-
-DESCRIPTION="Network Security Analysis Tool, an application-level network security scanner"
-HOMEPAGE="http://nsat.sourceforge.net/"
-SRC_URI="mirror://sourceforge/nsat/${P}.tgz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
-IUSE="X"
-
-RDEPEND="
- dev-libs/libmix
- net-libs/libnsl:0=
- net-libs/libpcap
- X? (
- dev-lang/tk:*
- x11-libs/libX11
- )
- || ( <sys-libs/glibc-2.26
- (
- net-libs/libtirpc
- net-libs/rpcsvc-proto
- )
- )
-"
-DEPEND="$RDEPEND"
-S="${WORKDIR}/${PN}"
-PATCHES=(
- "${FILESDIR}"/${P}-configure.patch
- "${FILESDIR}"/${P}-lvalue-gcc4.patch
- "${FILESDIR}"/${P}-strip.patch
- "${FILESDIR}"/${P}-misc.patch
- "${FILESDIR}"/${P}-va_list.patch
- "${FILESDIR}"/${P}-libtirpc.patch
- "${FILESDIR}"/${P}-amd64-compat.patch
-)
-
-src_prepare() {
- default
-
- sed -i \
- -e "s:^#CGIFile /usr/local/share/nsat/nsat.cgi$:#CGIFile /usr/share/nsat/nsat.cgi:g" \
- nsat.conf || die
- sed -i -e "s:/usr/local:/usr:g" tools/xnsat || die
- sed -i \
- -e "s:/usr/local/share/nsat/nsat.conf:/etc/nsat/nsat.conf:g" \
- -e "s:/usr/local/share/nsat/nsat.cgi:/usr/share/nsat/nsat.cgi:g" \
- src/lang.h || die
-
- eautoreconf
-}
-
-src_configure() {
- tc-export CC
- econf $(use_with X x)
-}
-
-src_compile() {
- emake MIXOBJ=-lmix++
-}
-
-src_install () {
- dobin nsat smb-ns
- use X && dobin tools/xnsat
-
- insinto /usr/share/nsat
- doins nsat.cgi
-
- insinto /etc/nsat
- doins nsat.conf
-
- dodoc README doc/CHANGES
- doman doc/nsat.8
-}
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/nsat/
@ 2021-04-29 1:52 Sam James
0 siblings, 0 replies; 9+ messages in thread
From: Sam James @ 2021-04-29 1:52 UTC (permalink / raw
To: gentoo-commits
commit: 3114a34395710e2dffda17fa1b8690973848f48e
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Apr 29 01:39:42 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Apr 29 01:51:53 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3114a343
net-analyzer/nsat: fix variable reference style
Package-Manager: Portage-3.0.18-prefix, Repoman-3.0.3
Signed-off-by: Sam James <sam <AT> gentoo.org>
net-analyzer/nsat/nsat-1.5-r5.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/net-analyzer/nsat/nsat-1.5-r5.ebuild b/net-analyzer/nsat/nsat-1.5-r5.ebuild
index 0b60e57866f..4e71eb08de6 100644
--- a/net-analyzer/nsat/nsat-1.5-r5.ebuild
+++ b/net-analyzer/nsat/nsat-1.5-r5.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@@ -24,7 +24,7 @@ RDEPEND="
x11-libs/libX11
)
"
-DEPEND="$RDEPEND"
+DEPEND="${RDEPEND}"
S="${WORKDIR}/${PN}"
PATCHES=(
"${FILESDIR}"/${P}-configure.patch
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/nsat/
@ 2023-12-24 23:16 Conrad Kostecki
0 siblings, 0 replies; 9+ messages in thread
From: Conrad Kostecki @ 2023-12-24 23:16 UTC (permalink / raw
To: gentoo-commits
commit: a3b0e45700c1d241e638721a7ec15dd4d95c7c41
Author: Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at>
AuthorDate: Fri Dec 22 21:15:23 2023 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Sun Dec 24 23:16:28 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a3b0e457
net-analyzer/nsat: use https, fix LICENSE
Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at>
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
net-analyzer/nsat/nsat-1.5-r6.ebuild | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/net-analyzer/nsat/nsat-1.5-r6.ebuild b/net-analyzer/nsat/nsat-1.5-r6.ebuild
index 0817289a2e6c..af4492f250c8 100644
--- a/net-analyzer/nsat/nsat-1.5-r6.ebuild
+++ b/net-analyzer/nsat/nsat-1.5-r6.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -6,11 +6,11 @@ EAPI=7
inherit autotools toolchain-funcs
DESCRIPTION="Network Security Analysis Tool, an application-level network security scanner"
-HOMEPAGE="http://nsat.sourceforge.net/"
+HOMEPAGE="https://nsat.sourceforge.net/"
SRC_URI="mirror://sourceforge/nsat/${P}.tgz"
S="${WORKDIR}/${PN}"
-LICENSE="GPL-2"
+LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="~amd64 ~ppc x86"
IUSE="X"
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/nsat/
@ 2024-11-07 9:12 Sam James
0 siblings, 0 replies; 9+ messages in thread
From: Sam James @ 2024-11-07 9:12 UTC (permalink / raw
To: gentoo-commits
commit: b778b9c1bae96b41ad994b8647eb739e48bb8811
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 7 09:12:12 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Nov 7 09:12:12 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b778b9c1
net-analyzer/nsat: update EAPI 7 -> 8, USE=X -> USE=gui
Signed-off-by: Sam James <sam <AT> gentoo.org>
net-analyzer/nsat/nsat-1.5-r7.ebuild | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/net-analyzer/nsat/nsat-1.5-r7.ebuild b/net-analyzer/nsat/nsat-1.5-r7.ebuild
index eccfd92a7ab8..e24b1507e0a3 100644
--- a/net-analyzer/nsat/nsat-1.5-r7.ebuild
+++ b/net-analyzer/nsat/nsat-1.5-r7.ebuild
@@ -1,7 +1,7 @@
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=7
+EAPI=8
inherit autotools toolchain-funcs
@@ -13,7 +13,7 @@ S="${WORKDIR}/${PN}"
LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="~amd64 ~ppc x86"
-IUSE="X"
+IUSE="gui"
RDEPEND="
dev-libs/libmix
@@ -21,7 +21,7 @@ RDEPEND="
net-libs/libpcap
net-libs/libtirpc:=
net-libs/rpcsvc-proto
- X? (
+ gui? (
dev-lang/tk:*
x11-libs/libX11
)
@@ -59,7 +59,7 @@ src_prepare() {
src_configure() {
tc-export CC
- econf $(use_with X x)
+ econf $(use_with gui x)
}
src_compile() {
@@ -68,7 +68,7 @@ src_compile() {
src_install() {
dobin nsat smb-ns
- use X && dobin tools/xnsat
+ use gui && dobin tools/xnsat
insinto /usr/share/nsat
doins nsat.cgi
^ permalink raw reply related [flat|nested] 9+ messages in thread
end of thread, other threads:[~2024-11-07 9:12 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-11-01 11:50 [gentoo-commits] repo/gentoo:master commit in: net-analyzer/nsat/ Andreas Hüttel
-- strict thread matches above, loose matches on Subject: below --
2024-11-07 9:12 Sam James
2023-12-24 23:16 Conrad Kostecki
2021-04-29 1:52 Sam James
2018-04-22 13:58 Andreas Hüttel
2018-04-12 20:54 Thomas Deutschmann
2018-03-02 22:22 Andreas Hüttel
2017-09-17 9:22 Jeroen Roovers
2017-09-17 9:22 Jeroen Roovers
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox