Commit 608e6af1 authored by Simon Dawson's avatar Simon Dawson Committed by Peter Korsgaard
Browse files

New package minicom



[Peter: fix whitespace and deps (wchar, ncurses, only iconv if !locale)]
Signed-off-by: Simon Dawson <spdawson at gmail.com>
Acked-by: default avatarArnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: default avatarPeter Korsgaard <jacmet@sunsite.dk>
parent f044e037
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -197,6 +197,7 @@ source "package/lvm2/Config.in"
source "package/makedevs/Config.in"
source "package/mdadm/Config.in"
source "package/memtester/Config.in"
source "package/minicom/Config.in"
source "package/mtd/Config.in"
source "package/ntfs-3g/Config.in"
source "package/ntfsprogs/Config.in"
+14 −0
Original line number Diff line number Diff line
config BR2_PACKAGE_MINICOM
	bool "minicom"
	depends on BR2_USE_WCHAR
	select BR2_PACKAGE_LIBICONV if !BR2_ENABLE_LOCALE
	select BR2_PACKAGE_NCURSES
	help
	  Minicom is a menu driven communications program.
	  It emulates ANSI and VT102 terminals. It has a
	  dialing directory and auto zmodem download.

	  http://alioth.debian.org/projects/minicom

comment "minicom requires a toolchain with WCHAR support"
	depends on !BR2_USE_WCHAR
+18 −0
Original line number Diff line number Diff line
#############################################################
#
# minicom
#
#############################################################
MINICOM_VERSION = 2.6
MINICOM_SOURCE = minicom-$(MINICOM_VERSION).tar.gz
MINICOM_SITE = http://alioth.debian.org/frs/download.php/3689/

# pkg-config is only used to check for liblockdev, which we don't have
# in BR, so instead of adding host-pkg-config as a dependency, simply
# make sure the host version isn't used so we don't end up with problems
# if people have liblockdev1-dev installed
MINICOM_CONF_ENV = PKG_CONFIG=/bin/false

MINICOM_DEPENDENCIES = ncurses $(if $(BR2_ENABLE_LOCALE),,libiconv)

$(eval $(call AUTOTARGETS))