791c5db743
The check-package script when ran gives warnings on ordering issues on all of these Config files. This patch cleans up all warnings related to the ordering in the Config files for packages starting with the letter g in the package directory. The appropriate ordering is: type, default, depends on, select, help See http://nightly.buildroot.org/#_config_files for more information. Signed-off-by: Adam Duskett <Adamduskett@outlook.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
22 lines
708 B
Plaintext
22 lines
708 B
Plaintext
config BR2_PACKAGE_GUPNP_TOOLS
|
|
bool "gupnp-tools"
|
|
depends on BR2_PACKAGE_LIBGTK3
|
|
# gssdp, gupnp, libsoup all select on libglib2, so they have
|
|
# the same dependencies as libgtk3, which we depend on. So for
|
|
# the same of simplicity, we don't replicate all those
|
|
# (complex) dependencies.
|
|
select BR2_PACKAGE_GSSDP
|
|
select BR2_PACKAGE_GUPNP
|
|
select BR2_PACKAGE_LIBSOUP
|
|
select BR2_PACKAGE_LIBXML2
|
|
help
|
|
GUPnP Tools are free replacements of Intel UPnP tools that
|
|
use GUPnP. They provides client and server side tools which
|
|
enable one to easily test and debug one's UPnP devices and
|
|
control points.
|
|
|
|
http://www.gupnp.org/
|
|
|
|
comment "gupnp-tools needs libgtk3"
|
|
depends on !BR2_PACKAGE_LIBGTK3
|