* [gentoo-commits] repo/gentoo:master commit in: net-wireless/mdk/
@ 2021-04-19 16:15 Rick Farina
0 siblings, 0 replies; 4+ messages in thread
From: Rick Farina @ 2021-04-19 16:15 UTC (permalink / raw
To: gentoo-commits
commit: c701b2215a8e105bb6cadfc0a48ca6135074449a
Author: Rick Farina <zerochaos <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 19 16:14:04 2021 +0000
Commit: Rick Farina <zerochaos <AT> gentoo <DOT> org>
CommitDate: Mon Apr 19 16:14:15 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c701b221
net-wireless/mdk: minor ebuild update
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Rick Farina <zerochaos <AT> gentoo.org>
net-wireless/mdk/mdk-3.6-r1.ebuild | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/net-wireless/mdk/mdk-3.6-r1.ebuild b/net-wireless/mdk/mdk-3.6-r1.ebuild
index 097fe428260..26bffddfa6e 100644
--- a/net-wireless/mdk/mdk-3.6-r1.ebuild
+++ b/net-wireless/mdk/mdk-3.6-r1.ebuild
@@ -1,8 +1,8 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI="5"
-inherit epatch toolchain-funcs
+EAPI=7
+inherit toolchain-funcs
MY_P="${PN}${PV/./-v}"
DESCRIPTION="Wireless injection tool with various functions"
@@ -17,8 +17,9 @@ IUSE=""
S="${WORKDIR}/${MY_P}"
src_prepare() {
- epatch "${FILESDIR}"/${PV}-makefile.patch
- epatch "${FILESDIR}"/fix_wids_mdk3_v5.patch
+ eapply -p0 "${FILESDIR}"/${PV}-makefile.patch
+ eapply "${FILESDIR}"/fix_wids_mdk3_v5.patch
+ default
}
src_compile() {
@@ -31,6 +32,5 @@ src_install() {
insinto /usr/share/${PN}
doins -r useful_files
- dohtml docs/*
- dodoc AUTHORS CHANGELOG TODO
+ dodoc docs/* AUTHORS CHANGELOG TODO
}
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-wireless/mdk/
@ 2021-11-19 17:07 Mike Gilbert
0 siblings, 0 replies; 4+ messages in thread
From: Mike Gilbert @ 2021-11-19 17:07 UTC (permalink / raw
To: gentoo-commits
commit: 32044c346cfa368591cfbeb9ad16576edd07829d
Author: Rick Farina <zerochaos <AT> gentoo <DOT> org>
AuthorDate: Fri Nov 19 15:48:49 2021 +0000
Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org>
CommitDate: Fri Nov 19 17:06:58 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=32044c34
net-wireless/mdk: respect AR
Signed-off-by: Rick Farina <zerochaos <AT> gentoo.org>
Closes: https://bugs.gentoo.org/725210
Signed-off-by: Mike Gilbert <floppym <AT> gentoo.org>
net-wireless/mdk/mdk-3.6-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-wireless/mdk/mdk-3.6-r1.ebuild b/net-wireless/mdk/mdk-3.6-r1.ebuild
index 26bffddfa6e9..a3d71016b082 100644
--- a/net-wireless/mdk/mdk-3.6-r1.ebuild
+++ b/net-wireless/mdk/mdk-3.6-r1.ebuild
@@ -23,7 +23,7 @@ src_prepare() {
}
src_compile() {
- emake CC=$(tc-getCC)
+ emake CC=$(tc-getCC) AR=$(tc-getAR)
}
src_install() {
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-wireless/mdk/
@ 2021-11-19 17:13 Mike Gilbert
0 siblings, 0 replies; 4+ messages in thread
From: Mike Gilbert @ 2021-11-19 17:13 UTC (permalink / raw
To: gentoo-commits
commit: 2a9e4c115702d1c87ddab8ebf0b4e5b8b2d8c4ad
Author: Mike Gilbert <floppym <AT> gentoo <DOT> org>
AuthorDate: Fri Nov 19 17:11:30 2021 +0000
Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org>
CommitDate: Fri Nov 19 17:11:30 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a9e4c11
net-wireless/mdk: quote CC and AR when passing them as arguments
These variables may contain whitespace. For example, compiler flags are
sometimes passed via the CC variable.
eg. CC="gcc -m32"
Signed-off-by: Mike Gilbert <floppym <AT> gentoo.org>
net-wireless/mdk/mdk-3.6-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-wireless/mdk/mdk-3.6-r1.ebuild b/net-wireless/mdk/mdk-3.6-r1.ebuild
index a3d71016b082..9e0cf7d380af 100644
--- a/net-wireless/mdk/mdk-3.6-r1.ebuild
+++ b/net-wireless/mdk/mdk-3.6-r1.ebuild
@@ -23,7 +23,7 @@ src_prepare() {
}
src_compile() {
- emake CC=$(tc-getCC) AR=$(tc-getAR)
+ emake CC="$(tc-getCC)" AR="$(tc-getAR)"
}
src_install() {
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-wireless/mdk/
@ 2021-11-19 20:41 Mike Gilbert
0 siblings, 0 replies; 4+ messages in thread
From: Mike Gilbert @ 2021-11-19 20:41 UTC (permalink / raw
To: gentoo-commits
commit: 9f29aaf16c23c3467285bbf37f25f79c53a2afbe
Author: Mike Gilbert <floppym <AT> gentoo <DOT> org>
AuthorDate: Fri Nov 19 20:41:15 2021 +0000
Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org>
CommitDate: Fri Nov 19 20:41:15 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f29aaf1
net-wireless/mdk: pass RANLIB to emake
Closes: https://bugs.gentoo.org/825050
Signed-off-by: Mike Gilbert <floppym <AT> gentoo.org>
net-wireless/mdk/mdk-3.6-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-wireless/mdk/mdk-3.6-r1.ebuild b/net-wireless/mdk/mdk-3.6-r1.ebuild
index 9e0cf7d380af..e90cd46c37f6 100644
--- a/net-wireless/mdk/mdk-3.6-r1.ebuild
+++ b/net-wireless/mdk/mdk-3.6-r1.ebuild
@@ -23,7 +23,7 @@ src_prepare() {
}
src_compile() {
- emake CC="$(tc-getCC)" AR="$(tc-getAR)"
+ emake CC="$(tc-getCC)" AR="$(tc-getAR)" RANLIB="$(tc-getRANLIB)"
}
src_install() {
^ permalink raw reply related [flat|nested] 4+ messages in thread
end of thread, other threads:[~2021-11-19 20:41 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-11-19 17:13 [gentoo-commits] repo/gentoo:master commit in: net-wireless/mdk/ Mike Gilbert
-- strict thread matches above, loose matches on Subject: below --
2021-11-19 20:41 Mike Gilbert
2021-11-19 17:07 Mike Gilbert
2021-04-19 16:15 Rick Farina
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox