virtual/wireguard: simplify flags
authorJason A. Donenfeld <zx2c4@gentoo.org>
Sat, 28 Dec 2019 08:53:07 +0000 (09:53 +0100)
committerJason A. Donenfeld <zx2c4@gentoo.org>
Sat, 28 Dec 2019 08:53:07 +0000 (09:53 +0100)
Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Jason A. Donenfeld <zx2c4@gentoo.org>
virtual/wireguard/metadata.xml
virtual/wireguard/wireguard-1.ebuild

index d5c30b1930c0270488331374324f9ef090c3a299..a2b169f1920c85296afe65aa9cebd487f822ccdd 100644 (file)
@@ -8,7 +8,5 @@
        <use>
                <flag name="tools">Compile the wg(8) tool and related helpers. You probably want this enabled.</flag>
                <flag name="module">Compile the actual WireGuard kernel module. Most certainly you want this enabled, unless you're doing something strange.</flag>
-               <flag name="module-src">Install the module source code to /usr/src, in case you like building kernel modules yourself.</flag>
-               <flag name="debug">Enable verbose debug reporting in dmesg of various WireGuard peer and device information.</flag>
        </use>
 </pkgmetadata>
index a1825d736146c09c6700e33c8fcb6f66c5c42e68..1ed06837eafd3d27ca06057353f07323bbff6957 100644 (file)
@@ -8,10 +8,9 @@ HOMEPAGE="https://www.wireguard.com/"
 
 SLOT="0"
 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
-IUSE="debug +module +tools module-src"
+IUSE="+module +tools"
 
 RDEPEND="
        tools? ( net-vpn/wireguard-tools )
-       module? ( net-vpn/wireguard-modules[module,debug?] )
-       module-src? ( net-vpn/wireguard-modules[module-src] )
+       module? ( net-vpn/wireguard-modules )
 "