net-p2p/transmission: add web use flag for live ebuild

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
This commit is contained in:
Conrad Kostecki 2021-10-23 14:38:48 +02:00
parent ba131efbac
commit 33377c5065
No known key found for this signature in database
GPG Key ID: 7A96AB564BF498FB
2 changed files with 3 additions and 1 deletions

View File

@ -9,5 +9,6 @@
<flag name="cli">Build command-line client</flag>
<flag name="lightweight">Optimize transmission for low-resource systems (smaller cache size, prefer unencrypted peer connections, etc.)</flag>
<flag name="mbedtls">Use mbed TLS instead of OpenSSL</flag>
<flag name="web">Build Web client</flag>
</use>
</pkgmetadata>

View File

@ -21,7 +21,7 @@ HOMEPAGE="https://transmissionbt.com/"
# MIT is in several libtransmission/ headers
LICENSE="|| ( GPL-2 GPL-3 Transmission-OpenSSL-exception ) GPL-2 MIT"
SLOT="0"
IUSE="appindicator cli gtk lightweight nls mbedtls qt5 static-libs systemd test"
IUSE="appindicator cli gtk lightweight nls mbedtls qt5 static-libs systemd test web"
RESTRICT="!test? ( test )"
ACCT_DEPEND="
@ -90,6 +90,7 @@ src_configure() {
-DENABLE_NLS=$(usex nls ON OFF)
-DENABLE_QT=$(usex qt5 ON OFF)
-DENABLE_TESTS=$(usex test ON OFF)
-DENABLE_WEB=$(usex web ON OFF)
# https://bugs.gentoo.org/807993
-DINSTALL_LIB=$(usex static-libs ON OFF)