summaryrefslogtreecommitdiff
path: root/app-editors/levee/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:56:41 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:56:41 +0100
commitd87262dd706fec50cd150aab3e93883b6337466d (patch)
tree246b44c33ad7a57550430b0a60fa0df86a3c9e68 /app-editors/levee/files
parent71bc00c87bba1ce31de0dac6c3b7fd1aee6917fc (diff)
gentoo resync : 14.07.2018
Diffstat (limited to 'app-editors/levee/files')
-rw-r--r--app-editors/levee/files/levee-3.4o-darwin.patch16
-rw-r--r--app-editors/levee/files/levee-3.5-glibc210.patch80
-rw-r--r--app-editors/levee/files/levee-3.5a-QA.patch16
3 files changed, 0 insertions, 112 deletions
diff --git a/app-editors/levee/files/levee-3.4o-darwin.patch b/app-editors/levee/files/levee-3.4o-darwin.patch
deleted file mode 100644
index 9481b1a3ade9..000000000000
--- a/app-editors/levee/files/levee-3.4o-darwin.patch
+++ /dev/null
@@ -1,16 +0,0 @@
---- unixcall.c.orig 2007-03-18 17:46:05 +0100
-+++ unixcall.c 2007-03-18 17:51:13 +0100
-@@ -77,6 +77,13 @@
- static int ioset = 0;
- static struct termios old;
-
-+#if defined(__MACH__)
-+# define TCGETS TIOCGETA
-+# define TCSETS TIOCSETA
-+# define TCGETA TIOCGETA
-+# define TCSETAF TIOCSETAF
-+#endif
-+
- void
- initcon()
- {
diff --git a/app-editors/levee/files/levee-3.5-glibc210.patch b/app-editors/levee/files/levee-3.5-glibc210.patch
deleted file mode 100644
index 51cc829cda25..000000000000
--- a/app-editors/levee/files/levee-3.5-glibc210.patch
+++ /dev/null
@@ -1,80 +0,0 @@
-diff -NrU5 levee-3.5.original/editcor.c levee-3.5/editcor.c
---- levee-3.5.original/editcor.c 2009-07-21 22:58:18.000000000 +0000
-+++ levee-3.5/editcor.c 2009-07-21 23:07:21.000000000 +0000
-@@ -183,11 +183,11 @@
-
- strcpy(scratch, "/tmp/lv.XXXXXX");
-
- clrprompt();
- printch('!');
-- if ( !getline(instring) )
-+ if ( !get_line(instring) )
- return FALSE;
-
- if ( (tf = mkstemp(scratch)) < 0 ) {
- prints("[tempfile error]");
- return FALSE;
-diff -NrU5 levee-3.5.original/extern.h levee-3.5/extern.h
---- levee-3.5.original/extern.h 2009-07-21 22:58:18.000000000 +0000
-+++ levee-3.5/extern.h 2009-07-21 23:02:39.000000000 +0000
-@@ -195,11 +195,11 @@
- extern exec_type PROC editcore();
-
- extern char PROC line(), peekc(), readchar();
- extern char PROC *findparse(),*makepat();
-
--extern bool PROC getline();
-+extern bool PROC get_line();
- extern bool PROC putfile();
- extern bool PROC doyank(), deletion(), putback();
- extern bool PROC pushb(),pushi(),pushmem(),uputcmd(), delete_to_undo();
- extern bool PROC ok_to_scroll(), move_to_undo();
-
-diff -NrU5 levee-3.5.original/main.c levee-3.5/main.c
---- levee-3.5.original/main.c 2009-07-21 22:58:18.000000000 +0000
-+++ levee-3.5/main.c 2009-07-21 23:09:52.000000000 +0000
-@@ -251,11 +251,11 @@
- println();
-
- mode=emode;
- do {
- prompt(FALSE,":");
-- if (getline(instring))
-+ if (get_line(instring))
- exec(instring, &mode, &noquit);
- indirect = FALSE;
- if (mode == E_VISUAL && zotscreen && noquit) { /*ask for more*/
- prints(" [more]");
- if ((ch=peekc()) == 13 || ch == ' ' || ch == ':')
-diff -NrU5 levee-3.5.original/misc.c levee-3.5/misc.c
---- levee-3.5.original/misc.c 2009-07-21 22:58:18.000000000 +0000
-+++ levee-3.5/misc.c 2009-07-21 23:09:10.000000000 +0000
-@@ -19,11 +19,11 @@
- */
- #include "levee.h"
- #include "extern.h"
-
- bool PROC
--getline(str)
-+get_line(str)
- char *str;
- {
- int len;
- char flag;
-
-diff -NrU5 levee-3.5.original/move.c levee-3.5/move.c
---- levee-3.5.original/move.c 2009-07-21 22:58:18.000000000 +0000
-+++ levee-3.5/move.c 2009-07-21 23:10:26.000000000 +0000
-@@ -158,11 +158,11 @@
- case FSEARCH:
- case BSEARCH:
- clrprompt();
- if (cmd == PATT_FWD || cmd == PATT_BACK) {
- printch(tsearch = instring[0] = chars[cmd-PATT_FWD]);
-- if (!getline(&instring[1]))
-+ if (!get_line(&instring[1]))
- return ESCAPED; /* needs to skip later tests */
- }
- else {
- if (!lsearch)
- return BADMOVE;
diff --git a/app-editors/levee/files/levee-3.5a-QA.patch b/app-editors/levee/files/levee-3.5a-QA.patch
deleted file mode 100644
index 7e37c76b34ac..000000000000
--- a/app-editors/levee/files/levee-3.5a-QA.patch
+++ /dev/null
@@ -1,16 +0,0 @@
-diff -NrU5 levee-3.5a.original/configure.inc levee-3.5a/configure.inc
---- levee-3.5a.original/configure.inc 2009-08-12 19:51:26.000000000 +0000
-+++ levee-3.5a/configure.inc 2009-08-12 20:13:41.000000000 +0000
-@@ -1074,11 +1074,11 @@
- else
- PROG_INSTALL="$DEST"
- fi
-
- AC_SUB 'INSTALL' "$PROG_INSTALL"
-- AC_SUB 'INSTALL_PROGRAM' "$PROG_INSTALL -s -m 755"
-+ AC_SUB 'INSTALL_PROGRAM' "$PROG_INSTALL -m 755"
- AC_SUB 'INSTALL_DATA' "$PROG_INSTALL -m 444"
-
- # finally build a little directory installer
- # if mkdir -p works, use that, otherwise use install -d,
- # otherwise build a script to do it by hand.