Revision: 72817 http://trac.macports.org/changeset/72817 Author: ryandesign@macports.org Date: 2010-10-27 17:23:27 -0700 (Wed, 27 Oct 2010) Log Message: ----------- picocom: maintainer update to 1.6; see #27028 Modified Paths: -------------- trunk/dports/comms/picocom/Portfile Added Paths: ----------- trunk/dports/comms/picocom/files/ trunk/dports/comms/picocom/files/patch-picocom.c.diff trunk/dports/comms/picocom/files/patch-term.c.diff Modified: trunk/dports/comms/picocom/Portfile =================================================================== --- trunk/dports/comms/picocom/Portfile 2010-10-27 23:58:41 UTC (rev 72816) +++ trunk/dports/comms/picocom/Portfile 2010-10-28 00:23:27 UTC (rev 72817) @@ -4,7 +4,7 @@ PortSystem 1.0 name picocom -version 1.4 +version 1.6 categories comms maintainers gmail.com:ranauei platforms darwin @@ -19,10 +19,15 @@ It could also prove useful in many other similar tasks. homepage http://code.google.com/p/picocom master_sites googlecode -checksums md5 08fcc5f6bb9e7676a2569386d5ea9f70 \ - sha1 dad94531807cd13ab8690d2263d3a680ed4100ba \ - rmd160 083f1dbebbfaae527366652ef297f641e42947e1 + +checksums md5 426c3d30b82cbc80b0dafdccd6020c6c \ + sha1 f042e15fa76ab3349c74a70062aa210b527e6bdc \ + rmd160 ac823d8045ab8ae05b19e99b1b3756b61d0e587e + +patchfiles patch-picocom.c.diff patch-term.c.diff + use_configure no + build.target "" build.args CC=${configure.cc} Added: trunk/dports/comms/picocom/files/patch-picocom.c.diff =================================================================== --- trunk/dports/comms/picocom/files/patch-picocom.c.diff (rev 0) +++ trunk/dports/comms/picocom/files/patch-picocom.c.diff 2010-10-28 00:23:27 UTC (rev 72817) @@ -0,0 +1,24 @@ +--- picocom.c.orig 2010-10-27 15:40:52.000000000 +0200 ++++ picocom.c 2010-10-27 15:39:02.000000000 +0200 +@@ -455,8 +455,8 @@ + if ( baud > 115200 ) + baud = 115200; + #else +- if ( baud > 921600 ) +- baud = 921600; ++ if ( baud > 230400 ) ++ baud = 230400; + #endif + + return baud; +@@ -469,8 +469,8 @@ + if ( baud > 115200 ) + baud = 115200; + #else +- if ( baud > 921600 ) +- baud = 921600; ++ if ( baud > 230400 ) ++ baud = 230400; + #endif + else if ( baud == 57600 ) + baud = 38400; Added: trunk/dports/comms/picocom/files/patch-term.c.diff =================================================================== --- trunk/dports/comms/picocom/files/patch-term.c.diff (rev 0) +++ trunk/dports/comms/picocom/files/patch-term.c.diff 2010-10-28 00:23:27 UTC (rev 72817) @@ -0,0 +1,15 @@ +--- term.c.orig 2010-10-27 15:40:36.000000000 +0200 ++++ term.c 2010-10-27 15:40:13.000000000 +0200 +@@ -631,12 +631,6 @@ + case 230400: + spd = B230400; + break; +- case 460800: +- spd = B460800; +- break; +- case 921600: +- spd = B921600; +- break; + #endif + default: + term_errno = TERM_EBAUD;