d6dfc2109c
Otherwise configure errors out with: configure: error: "The gtk client cannot be built without nls support. Try adding either --enable-nls or --disable-gtk" Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
49 lines
1.2 KiB
Plaintext
49 lines
1.2 KiB
Plaintext
config BR2_PACKAGE_TRANSMISSION
|
|
bool "transmission"
|
|
depends on BR2_INET_IPV6
|
|
select BR2_PACKAGE_ZLIB
|
|
select BR2_PACKAGE_OPENSSL
|
|
select BR2_PACKAGE_LIBCURL
|
|
select BR2_PACKAGE_LIBEVENT
|
|
help
|
|
Transmission is a cross-platform BitTorrent client.
|
|
|
|
if BR2_PACKAGE_TRANSMISSION
|
|
|
|
config BR2_PACKAGE_TRANSMISSION_UTP
|
|
bool "Transmission uTP support"
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
|
help
|
|
Install support for uTorrent Transport Protocol
|
|
|
|
comment "uTP requires a toolchain with C++ support"
|
|
depends on !BR2_INSTALL_LIBSTDCPP
|
|
|
|
config BR2_PACKAGE_TRANSMISSION_CLI
|
|
bool "transmission-cli"
|
|
help
|
|
Install transmission command line interface.
|
|
|
|
config BR2_PACKAGE_TRANSMISSION_DAEMON
|
|
bool "transmission-daemon"
|
|
help
|
|
Install transmission daemon.
|
|
|
|
config BR2_PACKAGE_TRANSMISSION_REMOTE
|
|
bool "transmission-remote"
|
|
help
|
|
Install transmission remote management tool.
|
|
|
|
config BR2_PACKAGE_TRANSMISSION_GTK
|
|
bool "transmission-gtk"
|
|
depends on BR2_PACKAGE_LIBGTK2 && BR2_ENABLE_LOCALE
|
|
help
|
|
Install transmission GTK-based GUI interface.
|
|
|
|
comment "transmission-gtk requires a toolchain with locale support"
|
|
depends on BR2_PACKAGE_LIBGTK2 && !BR2_ENABLE_LOCALE
|
|
endif
|
|
|
|
comment "Transmission requires a toolchain with IPv6 support"
|
|
depends on !BR2_INET_IPV6
|