From 9183af1817ab1753b4480741965d2d10cc6c75bb Mon Sep 17 00:00:00 2001
From: Nicolas Thill <nico@openwrt.org>
Date: Fri, 10 Jun 2005 17:12:46 +0000
Subject: [PATCH] Add picocom package, move serial comm. stuff to its section
 in Config.in

SVN-Revision: 1187
---
 openwrt/package/Config.in                    |  7 +++--
 openwrt/package/Makefile                     |  1 +
 openwrt/package/picocom/Config.in            | 15 +++++++++
 openwrt/package/picocom/Makefile             | 33 ++++++++++++++++++++
 openwrt/package/picocom/ipkg/picocom.control |  6 ++++
 5 files changed, 60 insertions(+), 2 deletions(-)
 create mode 100644 openwrt/package/picocom/Config.in
 create mode 100644 openwrt/package/picocom/Makefile
 create mode 100644 openwrt/package/picocom/ipkg/picocom.control

diff --git a/openwrt/package/Config.in b/openwrt/package/Config.in
index c098c995d5..aa7c6470ce 100644
--- a/openwrt/package/Config.in
+++ b/openwrt/package/Config.in
@@ -113,10 +113,13 @@ source "package/libusb/Config.in"
 source "package/uclibc++/Config.in"
 source "package/zlib/Config.in"
 
-comment "Utilities ---"
+comment "Serial communications & terminal emulation ---"
 source "package/microcom/Config.in"
-source "package/usbutils/Config.in"  # lsusb
+source "package/picocom/Config.in"
 source "package/setserial/Config.in"
+
+comment "Utilities ---"
+source "package/usbutils/Config.in"  # lsusb
 source "package/strace/Config.in"
 
 # what are we going to do with both of you
diff --git a/openwrt/package/Makefile b/openwrt/package/Makefile
index 183c44bf9f..4399f2f143 100644
--- a/openwrt/package/Makefile
+++ b/openwrt/package/Makefile
@@ -71,6 +71,7 @@ package-$(BR2_PACKAGE_OPENSWAN) += openswan
 package-$(BR2_PACKAGE_OPENVPN) += openvpn
 package-$(BR2_PACKAGE_OSIRIS) += osiris
 package-$(BR2_PACKAGE_PCRE) += pcre
+package-$(BR2_PACKAGE_PICOCOM) += picocom
 package-$(BR2_PACKAGE_PMACCT) += pmacct
 package-$(BR2_PACKAGE_POPT) += popt
 package-$(BR2_PACKAGE_PORTMAP) += portmap
diff --git a/openwrt/package/picocom/Config.in b/openwrt/package/picocom/Config.in
new file mode 100644
index 0000000000..5ed558d0db
--- /dev/null
+++ b/openwrt/package/picocom/Config.in
@@ -0,0 +1,15 @@
+config BR2_PACKAGE_PICOCOM
+	tristate "picocom - minimal dumb-terminal emulation program"
+#	default m if CONFIG_DEVEL
+	default n
+	help
+	  As its name suggests, picocom is a minimal dumb-terminal emulation 
+	  program. It is, in principle, very much like minicom, only it's pico 
+	  instead of mini! It was designed to serve as a simple, manual, modem 
+	  configuration, testing, and debugging tool. It has also served (quite 
+	  well) as a low-tech "terminal-window" to allow operator intervention 
+	  in PPP connection scripts. It could also prove useful in many other 
+	  similar tasks.
+	  
+	  http://efault.net/npat/hacks/picocom/
+	  
\ No newline at end of file
diff --git a/openwrt/package/picocom/Makefile b/openwrt/package/picocom/Makefile
new file mode 100644
index 0000000000..1f07c61efe
--- /dev/null
+++ b/openwrt/package/picocom/Makefile
@@ -0,0 +1,33 @@
+# $Id$
+
+include $(TOPDIR)/rules.mk
+
+PKG_NAME:=picocom
+PKG_VERSION:=1.4
+PKG_RELEASE:=1
+PKG_MD5SUM:=08fcc5f6bb9e7676a2569386d5ea9f70
+
+PKG_SOURCE_URL:=http://efault.net/npat/hacks/picocom/dist/
+PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
+PKG_CAT:=zcat
+
+PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
+PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
+
+include $(TOPDIR)/package/rules.mk
+
+$(eval $(call PKG_template,PICOCOM,picocom,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
+
+$(PKG_BUILD_DIR)/.built:
+	$(MAKE) -C $(PKG_BUILD_DIR) \
+		$(TARGET_CONFIGURE_OPTS) \
+		CFLAGS="$(TARGET_CFLAGS) -I$(STAGING_DIR)/usr/include" \
+		CFLAGS="$(TARGET_CFLAGS) -L$(STAGING_DIR)/usr/lib" \
+		picocom
+	touch $@
+
+$(IPKG_PICOCOM):
+	install -d -m0755 $(IDIR_PICOCOM)/usr/bin
+	install -m0755 $(PKG_BUILD_DIR)/picocom $(IDIR_PICOCOM)/usr/bin/
+	$(RSTRIP) $(IDIR_PICOCOM)
+	$(IPKG_BUILD) $(IDIR_PICOCOM) $(PACKAGE_DIR)
diff --git a/openwrt/package/picocom/ipkg/picocom.control b/openwrt/package/picocom/ipkg/picocom.control
new file mode 100644
index 0000000000..17e705f970
--- /dev/null
+++ b/openwrt/package/picocom/ipkg/picocom.control
@@ -0,0 +1,6 @@
+Package: picocom
+Priority: optional
+Section: console
+Maintainer: bugs@openwrt.org
+Source: http://openwrt.org/cgi-bin/viewcvs.cgi/openwrt/package/picocom/
+Description: minimal dumb-terminal emulation program
-- 
2.25.1