diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2010-02-05 09:38:33 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2010-02-05 09:38:33 +0000 |
commit | 9c8a613e1290946bf4a0aa67203c4eeebbd57dd9 (patch) | |
tree | 649a6d1620a5a66100feab9b973bb388a0d69cba /net-dialup/minicom/files | |
parent | Bye mips, this version doesn't compile anymore with stable glibc. (diff) | |
download | historical-9c8a613e1290946bf4a0aa67203c4eeebbd57dd9.tar.gz historical-9c8a613e1290946bf4a0aa67203c4eeebbd57dd9.tar.bz2 historical-9c8a613e1290946bf4a0aa67203c4eeebbd57dd9.zip |
Unused patches
Package-Manager: portage-2.2_rc62/cvs/Linux x86_64
Diffstat (limited to 'net-dialup/minicom/files')
-rw-r--r-- | net-dialup/minicom/files/minicom-2.2-gentoo-runscript.patch | 51 | ||||
-rw-r--r-- | net-dialup/minicom/files/minicom-2.2-one-off.patch | 127 |
2 files changed, 0 insertions, 178 deletions
diff --git a/net-dialup/minicom/files/minicom-2.2-gentoo-runscript.patch b/net-dialup/minicom/files/minicom-2.2-gentoo-runscript.patch deleted file mode 100644 index 8307baded857..000000000000 --- a/net-dialup/minicom/files/minicom-2.2-gentoo-runscript.patch +++ /dev/null @@ -1,51 +0,0 @@ ---- minicom-2.2/extras/scriptdemo -+++ minicom-2.2/extras/scriptdemo -@@ -1,5 +1,5 @@ - # A little demonstration of the possibilities of "runscript". --# This script can be executed by typing: "runscript scriptdemo". -+# This script can be executed by typing: "/usr/bin/runscript scriptdemo". - # - # Adjust the stty's below to your system: BSD-like or SysV-like. - # Linux ofcourse accepts both :-) ---- minicom-2.2/man/minicom.1 -+++ minicom-2.2/man/minicom.1 -@@ -418,7 +418,7 @@ - .TP 0.5i - .B D - Script program - Which program to use as the script interpreter. Defaults to the --program "runscript", but if you want to use something else (eg, -+program "/usr/bin/runscript", but if you want to use something else (eg, - /bin/sh or "expect") it is possible. Stdin and stdout are connected - to the modem, stderr to the screen. - .RS 0.5i ---- minicom-2.2/man/runscript.1 -+++ minicom-2.2/man/runscript.1 -@@ -5,7 +5,7 @@ - .\" for conditions under which this file may be redistributed. - .TH RUNSCRIPT 1 "$Date: 2006/10/31 07:03:03 $" "User's Manual" - .SH NAME --runscript \- script interpreter for minicom -+/usr/bin/runscript \- script interpreter for minicom - .SH SYNOPSIS - .B runscript - .RI "scriptname [logfile [homedir]]" ---- minicom-2.2/src/rwconf.c -+++ minicom-2.2/src/rwconf.c -@@ -114,7 +114,7 @@ - { N_("No"), 0, "kermreal" }, - { "3", 0, "colusage" }, - /* The script program */ -- { "runscript", 0, "scriptprog" }, -+ { "/usr/bin/runscript", 0, "scriptprog" }, - /* Modem parameters */ - { "~^M~AT S7=45 S0=0 L1 V1 X4 &c1 E1 Q0^M", 0, "minit" }, - { "^M~ATZ^M~", 0, "mreset" }, -@@ -242,7 +242,7 @@ - int matched; - - if (conftype == CONFIG_GLOBAL) -- strcpy(P_SCRIPTPROG, "runscript"); -+ strcpy(P_SCRIPTPROG, "/usr/bin/runscript"); - - line = malloc(line_size); - if (!line) { diff --git a/net-dialup/minicom/files/minicom-2.2-one-off.patch b/net-dialup/minicom/files/minicom-2.2-one-off.patch deleted file mode 100644 index 46159365be30..000000000000 --- a/net-dialup/minicom/files/minicom-2.2-one-off.patch +++ /dev/null @@ -1,127 +0,0 @@ -menu display is wonkey - -http://alioth.debian.org/tracker/index.php?func=detail&aid=304061&group_id=30018&atid=100031 - ---- src/config.c -+++ src/config.c -@@ -936,7 +936,7 @@ static void doscrkeyb(void) - else - sprintf(buf, "^%c ", (c & 0x1f) + 'A' - 1); - psets(P_ESCAPE, buf); -- wlocate(w, mbslen (command_key) + 1, 1); -+ wlocate(w, mbslen (command_key) + 1, 0); - wputs(w, _(buf)); - clr = 1; - alt_override = 0; -@@ -960,7 +960,7 @@ static void doscrkeyb(void) - psets(P_BACKSPACE, "BS"); - else - psets(P_BACKSPACE, "DEL"); -- wlocate(w, mbslen (backspace_key) + 1, 2); -+ wlocate(w, mbslen (backspace_key) + 1, 1); - wprintf(w, "%s ", P_BACKSPACE); - keyboard(KSETBS, P_BACKSPACE[0] == 'B' ? 8 : 127); - break; -@@ -974,12 +974,12 @@ static void doscrkeyb(void) - if (LINES > 24) - tempst = 0; - } -- wlocate(w, mbslen (status_line) + 1, 3); -+ wlocate(w, mbslen (status_line) + 1, 2); - wprintf(w, "%s ", _(P_STATLINE)); - break; - case 'D': - psets(P_SOUND, yesno(P_SOUND[0] == 'N')); -- wlocate(w, mbslen (alarm_sound) + 1, 4); -+ wlocate(w, mbslen (alarm_sound) + 1, 3); - wprintf(w, "%s", _(P_SOUND)); - break; - case 'E': /* fmg - letters cycle colors */ -@@ -988,7 +988,7 @@ static void doscrkeyb(void) - else - mfcolor++; - psets(P_MFG, J_col[mfcolor]); -- wlocate(w, mbslen (foreground_color_menu) + 1, 5); -+ wlocate(w, mbslen (foreground_color_menu) + 1, 4); - wprintf(w, "%s ", _(J_col[mfcolor])); - break; - case 'F': /* fmg - letters cycle colors */ -@@ -997,7 +997,7 @@ static void doscrkeyb(void) - else - mbcolor++; - psets(P_MBG, J_col[mbcolor]); -- wlocate(w, mbslen (background_color_menu) + 1, 6); -+ wlocate(w, mbslen (background_color_menu) + 1, 5); - wprintf(w, "%s ", _(J_col[mbcolor])); - break; - case 'G': /* fmg - letters cycle colors */ -@@ -1006,7 +1006,7 @@ static void doscrkeyb(void) - else - tfcolor++; - psets(P_TFG, J_col[tfcolor]); -- wlocate(w, mbslen (foreground_color_term) + 1, 7); -+ wlocate(w, mbslen (foreground_color_term) + 1, 6); - wprintf(w, "%s ", _(J_col[tfcolor])); - if (us) - vt_pinit(us, tfcolor, tbcolor); -@@ -1017,7 +1017,7 @@ static void doscrkeyb(void) - else - tbcolor++; - psets(P_TBG, J_col[tbcolor]); -- wlocate(w, mbslen (background_color_term) + 1, 8); -+ wlocate(w, mbslen (background_color_term) + 1, 7); - wprintf(w, "%s ", _(J_col[tbcolor])); - if (us) - vt_pinit(us, tfcolor, tbcolor); -@@ -1038,7 +1038,7 @@ static void doscrkeyb(void) - show_status(); - } - psets(P_SFG, J_col[sfcolor]); -- wlocate(w, mbslen (foreground_color_stat) + 1, 9); -+ wlocate(w, mbslen (foreground_color_stat) + 1, 8); - wprintf(w, "%s ", _(J_col[sfcolor])); - break; - case 'J': /* fmg - letters cycle colors & redraw stat line */ -@@ -1057,11 +1057,11 @@ static void doscrkeyb(void) - show_status(); - } - psets(P_SBG, J_col[sbcolor]); -- wlocate(w, mbslen (background_color_stat) + 1, 10); -+ wlocate(w, mbslen (background_color_stat) + 1, 9); - wprintf(w, "%s ", _(J_col[sbcolor])); - break; - case 'K': /* MARK updated 02/17/95 - Config history size */ -- pgets(w, mbslen (history_buffer_size) + 1, 11, -+ pgets(w, mbslen (history_buffer_size) + 1, 10, - P_HISTSIZE, 5, 5); - - /* In case gibberish or a value was out of bounds, */ -@@ -1073,11 +1073,11 @@ static void doscrkeyb(void) - else if (atoi(P_HISTSIZE) >= 5000) - strcpy(P_HISTSIZE,"5000"); - -- wlocate(w, mbslen (history_buffer_size) + 1, 11); -+ wlocate(w, mbslen (history_buffer_size) + 1, 10); - wprintf(w, "%s ", P_HISTSIZE); - break; - case 'L': /* fmg - get local macros storage file */ -- pgets(w, mbslen (macros_file) + 1, 12, P_MACROS, 64, 64); -+ pgets(w, mbslen (macros_file) + 1, 11, P_MACROS, 64, 64); - - /* Try to open the file to read it in. */ - fp = sfopen(pfix_home(P_MACROS), "r+"); -@@ -1105,12 +1105,12 @@ static void doscrkeyb(void) - break; - case 'N': - psets(P_MACENAB, yesno(P_MACENAB[0] == 'N')); -- wlocate(w, mbslen (macros_enabled) + 1, 14); -+ wlocate(w, mbslen (macros_enabled) + 1, 13); - wprintf(w, "%s", _(P_MACENAB)); - break; - case 'O': /* Character conversions - jl / 04.09.97 */ - doconv(); -- wlocate(w, mbslen (character_conversion) + 1, 15); -+ wlocate(w, mbslen (character_conversion) + 1, 14); - wprintf(w, "%-16.16s", _(P_CONVF)); - break; - case 'P': |