source "package/usbmount/Config.in"
source "package/usbutils/Config.in"
source "package/wipe/Config.in"
+source "package/w_scan/Config.in"
endmenu
menu "Interpreter languages and scripting"
--- /dev/null
+config BR2_PACKAGE_W_SCAN
+ bool "w_scan"
+ select BR2_PACKAGE_LIBICONV if !BR2_ENABLE_LOCALE
+ help
+ w_scan is a small command line utility used to perform frequency
+ scans for DVB and ATSC transmissions. It is capable of creating
+ channels.conf files (in different output formats !) as well as
+ initial tuning data for scan.
+
+ http://wirbel.htpc-forum.de/w_scan/index_en.html
--- /dev/null
+###############################################################################
+#
+# w_scan
+#
+###############################################################################
+
+W_SCAN_VERSION = 20130331
+W_SCAN_SOURCE = w_scan-$(W_SCAN_VERSION).tar.bz2
+W_SCAN_SITE = http://wirbel.htpc-forum.de/w_scan
+W_SCAN_LICENSE = GPLv2+
+W_SCAN_LICENSE_FILES = COPYING
+
+ifeq ($(BR2_PACKAGE_LIBICONV),y)
+W_SCAN_DEPENDENCIES += libiconv
+W_SCAN_CONF_ENV += LIBS=-liconv
+endif
+
+$(eval $(autotools-package))