diff options
author | Conrad Kostecki <conikost@gentoo.org> | 2021-10-23 14:38:48 +0200 |
---|---|---|
committer | Conrad Kostecki <conikost@gentoo.org> | 2021-10-23 14:38:48 +0200 |
commit | 33377c5065deebab81c07167074a2ac2eb92dd11 (patch) | |
tree | 9fec410cb14cb8f540056c56b212a135c757b5f8 /net-p2p/transmission | |
parent | games-fps/eduke32: drop old version (diff) | |
download | gentoo-33377c5065deebab81c07167074a2ac2eb92dd11.tar.gz gentoo-33377c5065deebab81c07167074a2ac2eb92dd11.tar.bz2 gentoo-33377c5065deebab81c07167074a2ac2eb92dd11.zip |
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>
Diffstat (limited to 'net-p2p/transmission')
-rw-r--r-- | net-p2p/transmission/metadata.xml | 1 | ||||
-rw-r--r-- | net-p2p/transmission/transmission-9999.ebuild | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/net-p2p/transmission/metadata.xml b/net-p2p/transmission/metadata.xml index 6e518af5a187..0ecfb8ca30dc 100644 --- a/net-p2p/transmission/metadata.xml +++ b/net-p2p/transmission/metadata.xml @@ -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> diff --git a/net-p2p/transmission/transmission-9999.ebuild b/net-p2p/transmission/transmission-9999.ebuild index 87e1cd8915be..c5946c683acb 100644 --- a/net-p2p/transmission/transmission-9999.ebuild +++ b/net-p2p/transmission/transmission-9999.ebuild @@ -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) |