xref: /OK3568_Linux_fs/buildroot/package/transmission/Config.in (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593Smuzhiyunconfig BR2_PACKAGE_TRANSMISSION
2*4882a593Smuzhiyun	bool "transmission"
3*4882a593Smuzhiyun	depends on BR2_TOOLCHAIN_HAS_THREADS
4*4882a593Smuzhiyun	depends on BR2_USE_MMU # fork()
5*4882a593Smuzhiyun	select BR2_PACKAGE_ZLIB
6*4882a593Smuzhiyun	select BR2_PACKAGE_OPENSSL
7*4882a593Smuzhiyun	select BR2_PACKAGE_LIBOPENSSL_ENABLE_RC4 if BR2_PACKAGE_LIBOPENSSL
8*4882a593Smuzhiyun	select BR2_PACKAGE_LIBCURL
9*4882a593Smuzhiyun	select BR2_PACKAGE_LIBEVENT
10*4882a593Smuzhiyun	help
11*4882a593Smuzhiyun	  Transmission is a cross-platform BitTorrent client.
12*4882a593Smuzhiyun
13*4882a593Smuzhiyun	  http://www.transmissionbt.com/
14*4882a593Smuzhiyun
15*4882a593Smuzhiyunif BR2_PACKAGE_TRANSMISSION
16*4882a593Smuzhiyun
17*4882a593Smuzhiyunconfig BR2_PACKAGE_TRANSMISSION_UTP
18*4882a593Smuzhiyun	bool "Transmission uTP support"
19*4882a593Smuzhiyun	depends on BR2_INSTALL_LIBSTDCPP
20*4882a593Smuzhiyun	help
21*4882a593Smuzhiyun	  Install support for uTorrent Transport Protocol
22*4882a593Smuzhiyun
23*4882a593Smuzhiyuncomment "uTP needs a toolchain w/ C++"
24*4882a593Smuzhiyun	depends on !BR2_INSTALL_LIBSTDCPP
25*4882a593Smuzhiyun
26*4882a593Smuzhiyunconfig BR2_PACKAGE_TRANSMISSION_CLI
27*4882a593Smuzhiyun	bool "transmission-cli"
28*4882a593Smuzhiyun	help
29*4882a593Smuzhiyun	  Install transmission command line interface.
30*4882a593Smuzhiyun
31*4882a593Smuzhiyunconfig BR2_PACKAGE_TRANSMISSION_DAEMON
32*4882a593Smuzhiyun	bool "transmission-daemon"
33*4882a593Smuzhiyun	help
34*4882a593Smuzhiyun	  Install transmission daemon.
35*4882a593Smuzhiyun
36*4882a593Smuzhiyunconfig BR2_PACKAGE_TRANSMISSION_GTK
37*4882a593Smuzhiyun	bool "transmission-gtk"
38*4882a593Smuzhiyun	depends on BR2_PACKAGE_LIBGTK3 && BR2_SYSTEM_ENABLE_NLS
39*4882a593Smuzhiyun	help
40*4882a593Smuzhiyun	  Install transmission GTK-based GUI interface.
41*4882a593Smuzhiyun
42*4882a593Smuzhiyuncomment "transmission-gtk needs NLS enabled"
43*4882a593Smuzhiyun	depends on BR2_PACKAGE_LIBGTK3 && !BR2_SYSTEM_ENABLE_NLS
44*4882a593Smuzhiyunendif
45*4882a593Smuzhiyun
46*4882a593Smuzhiyuncomment "transmission needs a toolchain w/ threads"
47*4882a593Smuzhiyun	depends on BR2_USE_MMU
48*4882a593Smuzhiyun	depends on !BR2_TOOLCHAIN_HAS_THREADS
49