9b0a4a0a99
[Thomas: - Add missing select of BR2_PACKAGE_LIBUSB, since BR2_PACKAGE_LIBUSB_COMPAT depends on it - Add missing thread dependency, since libusb requires threads. - Add missing wide-char dependency. Without wide char support, sispmctl doesn't build. - Rewrap the Config.in help text, and remove trailing whitespaces. - License is GPLv2+, not GPLv2. - Remove --disable-dependency-tracking from <pkg>_CONF_OPT. That's a global, standard, autoconf option, and there's no reason to pass it at the per-package level.] Signed-off-by: Phil Eichinger <phil@zankapfel.net> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
18 lines
602 B
Plaintext
18 lines
602 B
Plaintext
config BR2_PACKAGE_SISPMCTL
|
|
bool "sispmctl"
|
|
select BR2_PACKAGE_LIBUSB
|
|
select BR2_PACKAGE_LIBUSB_COMPAT
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS # libusb
|
|
depends on BR2_USE_WCHAR
|
|
depends on BR2_USE_MMU # fork()
|
|
help
|
|
sispmctl is an application enabling the use of the GEMBIRD
|
|
SiS-PM and mSiS(sispm) USB-controlled power-outlet device
|
|
under Linux. Note that the device is also sold under
|
|
different Names, i.e. as "IntelliPlug" in Germany.
|
|
|
|
http://sispmctl.sourceforge.net/
|
|
|
|
comment "sispmctl needs a toolchain w/ threads, wchar"
|
|
depends on !BR2_TOOLCHAIN_HAS_THREADS || !BR2_USE_WCHAR
|