buildroot/package/fbv/Config.in
Adam Duskett 30cf833b88 package/f*: fix wrapping of Config.in help text
The check-package script when ran gives warnings on text wrapping
on all of these Config files.  This patch cleans up all warnings
related to the text wrapping for the Config files starting with
the letter f in the package directory.

The appropriate indentation is: <tab><2 spaces><62 chars>
See http://nightly.buildroot.org/#writing-rules-config-in for more
information.

Signed-off-by: Adam Duskett <aduskett@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2017-07-31 19:09:09 +02:00

34 lines
695 B
Plaintext

config BR2_PACKAGE_FBV
bool "fbv"
help
fbv is a very simple graphic file viewer for the framebuffer
console, capable of displaying GIF, JPEG, PNG and BMP files
using libungif, libjpeg and libpng.
http://freshmeat.net/projects/fbv/
if BR2_PACKAGE_FBV
config BR2_PACKAGE_FBV_PNG
bool "PNG support"
default y
select BR2_PACKAGE_LIBPNG
help
Enable support for PNG using libpng.
config BR2_PACKAGE_FBV_JPEG
bool "JPEG support"
default y
select BR2_PACKAGE_JPEG
help
Enable support for JPEG using IJG's libjpeg.
config BR2_PACKAGE_FBV_GIF
bool "GIF support"
default y
select BR2_PACKAGE_GIFLIB
help
Enable support for GIF using giflib.
endif # BR2_PACKAGE_FBV