public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Andrew Ammerlaan" <andrewammerlaan@riseup.net>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/proj/guru:master commit in: net-wireless/eiwd/
Date: Mon,  8 Jun 2020 09:56:43 +0000 (UTC)	[thread overview]
Message-ID: <1591608325.98d0e9252dc7558c4b62ac0141f842e66ec04a16.andrewammerlaan@gentoo> (raw)

commit:     98d0e9252dc7558c4b62ac0141f842e66ec04a16
Author:     Volkmar W. Pogatzki <gentoo <AT> pogatzki <DOT> net>
AuthorDate: Mon Jun  8 09:25:25 2020 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Mon Jun  8 09:25:25 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=98d0e925

net-wireless/eiwd: more USE flags

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Volkmar W. Pogatzki <gentoo <AT> pogatzki.net>

 net-wireless/eiwd/eiwd-1.6.1.ebuild           |  6 +++++-
 net-wireless/eiwd/eiwd-1.7_pre20200416.ebuild |  6 +++++-
 net-wireless/eiwd/eiwd-9999.ebuild            |  6 +++++-
 net-wireless/eiwd/metadata.xml                | 16 ++++++++++++++--
 4 files changed, 29 insertions(+), 5 deletions(-)

diff --git a/net-wireless/eiwd/eiwd-1.6.1.ebuild b/net-wireless/eiwd/eiwd-1.6.1.ebuild
index 89de5dd..cf05d7d 100644
--- a/net-wireless/eiwd/eiwd-1.6.1.ebuild
+++ b/net-wireless/eiwd/eiwd-1.6.1.ebuild
@@ -15,7 +15,7 @@ SRC_URI="https://github.com/dylanaraps/eiwd/releases/download/${MY_PV}/${MY_P}.t
 LICENSE="LGPL-2.1"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
-IUSE="+resolvconf +system-ell"
+IUSE="+client +monitor ofono +resolvconf +system-ell wired"
 
 DEPEND="system-ell? ( >=dev-libs/ell-0.31 )"
 RDEPEND="${DEPEND}
@@ -31,7 +31,11 @@ src_configure() {
 	local myeconfargs=(
 		--sysconfdir="${EPREFIX}"/etc/iwd --localstatedir="${EPREFIX}"/var
 		--disable-dbus
+		$(use_enable client)
+		$(use_enable monitor)
+		$(use_enable ofono)
 		$(use_enable system-ell external-ell)
+		$(use_enable wired)
 	)
 	econf "${myeconfargs[@]}"
 }

diff --git a/net-wireless/eiwd/eiwd-1.7_pre20200416.ebuild b/net-wireless/eiwd/eiwd-1.7_pre20200416.ebuild
index d349a96..a70d3ef 100644
--- a/net-wireless/eiwd/eiwd-1.7_pre20200416.ebuild
+++ b/net-wireless/eiwd/eiwd-1.7_pre20200416.ebuild
@@ -17,7 +17,7 @@ EGIT_COMMIT="7b5545a"
 LICENSE="LGPL-2.1"
 SLOT="0"
 KEYWORDS=""
-IUSE="+resolvconf +system-ell"
+IUSE="+client +monitor ofono +resolvconf +system-ell wired"
 
 DEPEND="system-ell? ( >=dev-libs/ell-0.31 )"
 RDEPEND="${DEPEND}
@@ -42,7 +42,11 @@ src_configure() {
 	local myeconfargs=(
 		--sysconfdir="${EPREFIX}"/etc/iwd --localstatedir="${EPREFIX}"/var
 		--disable-dbus
+		$(use_enable client)
+		$(use_enable monitor)
+		$(use_enable ofono)
 		$(use_enable system-ell external-ell)
+		$(use_enable wired)
 	)
 	econf "${myeconfargs[@]}"
 }

diff --git a/net-wireless/eiwd/eiwd-9999.ebuild b/net-wireless/eiwd/eiwd-9999.ebuild
index af4ac27..6f3e886 100644
--- a/net-wireless/eiwd/eiwd-9999.ebuild
+++ b/net-wireless/eiwd/eiwd-9999.ebuild
@@ -16,7 +16,7 @@ EGIT_COMMIT="7b5545a"
 LICENSE="LGPL-2.1"
 SLOT="0"
 KEYWORDS=""
-IUSE="+resolvconf +system-ell"
+IUSE="+client +monitor ofono +resolvconf +system-ell wired"
 
 DEPEND="system-ell? ( >=dev-libs/ell-0.31 )"
 RDEPEND="${DEPEND}
@@ -37,7 +37,11 @@ src_configure() {
 	local myeconfargs=(
 		--sysconfdir="${EPREFIX}"/etc/iwd --localstatedir="${EPREFIX}"/var
 		--disable-dbus
+		$(use_enable client)
+		$(use_enable monitor)
+		$(use_enable ofono)
 		$(use_enable system-ell external-ell)
+		$(use_enable wired)
 	)
 	econf "${myeconfargs[@]}"
 }

diff --git a/net-wireless/eiwd/metadata.xml b/net-wireless/eiwd/metadata.xml
index 31efe3f..9fb3446 100644
--- a/net-wireless/eiwd/metadata.xml
+++ b/net-wireless/eiwd/metadata.xml
@@ -6,11 +6,23 @@
 		<remote-id type="github">dylanaraps/eiwd</remote-id>
 	</upstream>
 	<use>
-		<flag name="system-ell">
-			Use the system-wide <pkg>dev-libs/ell</pkg>instead of bundled.
+		<flag name='client'>
+			Enable iwctl client tool
+		</flag>
+		<flag name='monitor'>
+			Enable iwmon monitor tool
+		</flag>
+		<flag name='ofono'>
+			Enable support for oFono SIM authentication
 		</flag>
 		<flag name="resolvconf">
 			Use resolvconf to handle /etc/resolv.conf updates
 		</flag>
+		<flag name="system-ell">
+			Use the system-wide <pkg>dev-libs/ell</pkg>instead of bundled.
+		</flag>
+		<flag name='wired'>
+			Enable ethernet authentication daemon
+		</flag>
 	</use>
 </pkgmetadata>


             reply	other threads:[~2020-06-08  9:56 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-06-08  9:56 Andrew Ammerlaan [this message]
  -- strict thread matches above, loose matches on Subject: below --
2020-06-21 19:11 [gentoo-commits] repo/proj/guru:master commit in: net-wireless/eiwd/ Andrew Ammerlaan
2020-06-21 18:53 [gentoo-commits] repo/proj/guru:dev " Andrew Ammerlaan
2020-06-21 19:11 ` [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
2020-06-07 15:50 Andrew Ammerlaan
2020-06-06  9:32 Andrew Ammerlaan
2020-05-29 17:11 Andrew Ammerlaan
2020-04-17  8:36 Andrew Ammerlaan

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1591608325.98d0e9252dc7558c4b62ac0141f842e66ec04a16.andrewammerlaan@gentoo \
    --to=andrewammerlaan@riseup.net \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox