]> rtime.felk.cvut.cz Git - coffee/buildroot.git/commitdiff
New package minicom
authorSimon Dawson <spdawson@gmail.com>
Fri, 9 Mar 2012 13:18:03 +0000 (13:18 +0000)
committerPeter Korsgaard <jacmet@sunsite.dk>
Sun, 11 Mar 2012 14:00:31 +0000 (15:00 +0100)
[Peter: fix whitespace and deps (wchar, ncurses, only iconv if !locale)]
Signed-off-by: Simon Dawson <spdawson at gmail.com>
Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
package/Config.in
package/minicom/Config.in [new file with mode: 0644]
package/minicom/minicom.mk [new file with mode: 0644]

index 41cbb8c1a0830e975647c07e736ebf6011b47003..c582f8a5eafacd50110ffb2a3477f679e9a6231c 100644 (file)
@@ -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"
diff --git a/package/minicom/Config.in b/package/minicom/Config.in
new file mode 100644 (file)
index 0000000..a8a2635
--- /dev/null
@@ -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 (file)
index 0000000..cb09b83
--- /dev/null
@@ -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))