From 608e6af167bd692611c9f60efe4f57dadc8b7fd7 Mon Sep 17 00:00:00 2001 From: Simon Dawson Date: Fri, 9 Mar 2012 13:18:03 +0000 Subject: New package minicom [Peter: fix whitespace and deps (wchar, ncurses, only iconv if !locale)] Signed-off-by: Simon Dawson Acked-by: Arnout Vandecappelle (Essensium/Mind) Signed-off-by: Peter Korsgaard --- package/minicom/Config.in | 14 ++++++++++++++ package/minicom/minicom.mk | 18 ++++++++++++++++++ 2 files changed, 32 insertions(+) create mode 100644 package/minicom/Config.in create mode 100644 package/minicom/minicom.mk (limited to 'package/minicom') diff --git a/package/minicom/Config.in b/package/minicom/Config.in new file mode 100644 index 000000000..a8a263538 --- /dev/null +++ b/package/minicom/Config.in @@ -0,0 +1,14 @@ +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 diff --git a/package/minicom/minicom.mk b/package/minicom/minicom.mk new file mode 100644 index 000000000..cb09b839f --- /dev/null +++ b/package/minicom/minicom.mk @@ -0,0 +1,18 @@ +############################################################# +# +# 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)) -- cgit v1.2.3