From 709c4d66e0b107ca606941b988bad717c0b45d9b Mon Sep 17 00:00:00 2001 From: Denys Dmytriyenko Date: Tue, 17 Mar 2009 14:32:59 -0400 Subject: rename packages/ to recipes/ per earlier agreement See links below for more details: http://thread.gmane.org/gmane.comp.handhelds.openembedded/21326 http://thread.gmane.org/gmane.comp.handhelds.openembedded/21816 Signed-off-by: Denys Dmytriyenko Acked-by: Mike Westerhof Acked-by: Philip Balister Acked-by: Khem Raj Acked-by: Marcin Juszkiewicz Acked-by: Koen Kooi Acked-by: Frans Meulenbroeks --- recipes/picocom/picocom/gcc4.patch | 12 ++++++++++++ recipes/picocom/picocom/nolock.patch | 35 +++++++++++++++++++++++++++++++++++ recipes/picocom/picocom_1.3.bb | 16 ++++++++++++++++ recipes/picocom/picocom_1.4.bb | 16 ++++++++++++++++ 4 files changed, 79 insertions(+) create mode 100644 recipes/picocom/picocom/gcc4.patch create mode 100644 recipes/picocom/picocom/nolock.patch create mode 100644 recipes/picocom/picocom_1.3.bb create mode 100644 recipes/picocom/picocom_1.4.bb (limited to 'recipes/picocom') diff --git a/recipes/picocom/picocom/gcc4.patch b/recipes/picocom/picocom/gcc4.patch new file mode 100644 index 0000000000..867ca11bf3 --- /dev/null +++ b/recipes/picocom/picocom/gcc4.patch @@ -0,0 +1,12 @@ +Index: picocom-1.4/picocom.c +=================================================================== +--- picocom-1.4.orig/picocom.c 2004-08-12 13:45:11.000000000 +0200 ++++ picocom-1.4/picocom.c 2007-03-08 14:40:30.000000000 +0100 +@@ -37,6 +37,7 @@ + #include + #include + #include ++#include + + #define _GNU_SOURCE + #include diff --git a/recipes/picocom/picocom/nolock.patch b/recipes/picocom/picocom/nolock.patch new file mode 100644 index 0000000000..42ca57f927 --- /dev/null +++ b/recipes/picocom/picocom/nolock.patch @@ -0,0 +1,35 @@ +diff -Naur picocom-1.4.orig/picocom.c picocom-1.4/picocom.c +--- picocom-1.4.orig/picocom.c 2004-08-12 13:45:11.000000000 +0200 ++++ picocom-1.4/picocom.c 2007-03-12 00:23:01.000000000 +0100 +@@ -790,7 +790,9 @@ + {"escape", required_argument, 0, 'e'}, + {"noinit", no_argument, 0, 'i'}, + {"noreset", no_argument, 0, 'r'}, ++#ifdef UUCP_LOCK_DIR + {"nolock", no_argument, 0, 'l'}, ++#endif + {"flow", required_argument, 0, 'f'}, + {"baud", required_argument, 0, 'b'}, + {"parity", required_argument, 0, 'p'}, +@@ -827,9 +829,11 @@ + case 'r': + opts.noreset = 1; + break; ++#ifdef UUCP_LOCK_DIR + case 'l': + opts.nolock = 1; + break; ++#endif + case 'e': + if ( isupper(optarg[0]) ) + opts.escape = optarg[0] - 'A' + 1; +@@ -930,7 +934,9 @@ + printf("escape is : C-%c\n", 'a' + opts.escape - 1); + printf("noinit is : %s\n", opts.noinit ? "yes" : "no"); + printf("noreset is : %s\n", opts.noreset ? "yes" : "no"); ++#ifdef UUCP_LOCK_DIR + printf("nolock is : %s\n", opts.nolock ? "yes" : "no"); ++#endif + printf("send_cmd is : %s\n", opts.send_cmd); + printf("receive_cmd is : %s\n", opts.receive_cmd); + printf("\n"); diff --git a/recipes/picocom/picocom_1.3.bb b/recipes/picocom/picocom_1.3.bb new file mode 100644 index 0000000000..6c8bd0eb37 --- /dev/null +++ b/recipes/picocom/picocom_1.3.bb @@ -0,0 +1,16 @@ +DESCRIPTION = "Picocom is a lightweight and minimal (~20K) dumb-terminal emulation program. " +SECTION = "console/utils" +PRIORITY = "optional" +LICENSE = "GPL" +SRC_URI = "http://efault.net/npat/hacks/picocom/dist/picocom-${PV}.tar.gz" + +CFLAGS_append = ' -DVERSION_STR=\\"${PV}\\"' + +do_compile() { + oe_runmake +} + +do_install () { + install -d ${D}${bindir} + install -m 0755 ${PN} pcasc pcxm pcym pczm ${D}${bindir}/ +} diff --git a/recipes/picocom/picocom_1.4.bb b/recipes/picocom/picocom_1.4.bb new file mode 100644 index 0000000000..c13bdabcc3 --- /dev/null +++ b/recipes/picocom/picocom_1.4.bb @@ -0,0 +1,16 @@ +DESCRIPTION = "Lightweight and minimal (~20K) dumb-terminal emulation program." +SECTION = "console/utils" +PRIORITY = "optional" +LICENSE = "GPL" +PR = "r2" + +SRC_URI = "http://efault.net/npat/hacks/picocom/dist/picocom-${PV}.tar.gz \ + file://nolock.patch;patch=1 \ + file://gcc4.patch;patch=1" + +CFLAGS_append = ' -DVERSION_STR=\\"${PV}\\"' + +do_install () { + install -d ${D}${bindir} + install -m 0755 ${PN} pcasc pcxm pcym pczm ${D}${bindir}/ +} -- cgit v1.2.3