diff options
Diffstat (limited to 'editors')
24 files changed, 0 insertions, 734 deletions
diff --git a/editors/Makefile b/editors/Makefile index 582fbb11ba01..40c9a11cccc8 100644 --- a/editors/Makefile +++ b/editors/Makefile @@ -44,7 +44,6 @@ SUBDIR += fpc-ide SUBDIR += fte SUBDIR += fxite - SUBDIR += gate SUBDIR += gedit SUBDIR += gedit-plugins SUBDIR += ghex @@ -246,7 +245,6 @@ SUBDIR += textadept SUBDIR += texworks SUBDIR += the - SUBDIR += thoteditor SUBDIR += treeform SUBDIR += tweak SUBDIR += uemacs diff --git a/editors/gate/Makefile b/editors/gate/Makefile deleted file mode 100644 index 2595f86ef37b..000000000000 --- a/editors/gate/Makefile +++ /dev/null @@ -1,38 +0,0 @@ -# Created by: James Howard - -PORTNAME= gate -PORTVERSION= 2.06 -PORTREVISION= 2 -CATEGORIES= editors -MASTER_SITES= http://www.unixpapa.com/software/ - -MAINTAINER= ports@FreeBSD.org -COMMENT= Simple and unobtrusive line-oriented text editor - -BUILD_DEPENDS= aspell:textproc/aspell -RUN_DEPENDS= aspell:textproc/aspell - -USES= ncurses -GNU_CONFIGURE= yes - -CONFIGURE_ARGS= --with-aspell=${LOCALBASE}/bin/aspell -ALL_TARGET= gate gate.1 - -CFLAGS+= -fcommon - -DEPRECATED= Unmaintained and dead upstream, does not build with -fno-common (llvm 11) -EXPIRATION_DATE=2021-04-01 - -post-patch: - @${REINPLACE_CMD} -e \ - 's|$${res_datadir}|${DATADIR}|g' ${WRKSRC}/configure - @${REINPLACE_CMD} -e \ - 's|^char \*malloc();||g' ${WRKSRC}/term.c - -do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/gate ${STAGEDIR}${PREFIX}/bin - ${INSTALL_MAN} ${WRKSRC}/gate.1 ${STAGEDIR}${MANPREFIX}/man/man1 - @${MKDIR} ${STAGEDIR}${DATADIR} - ${INSTALL_DATA} ${WRKSRC}/gate.help ${STAGEDIR}${DATADIR} - -.include <bsd.port.mk> diff --git a/editors/gate/distinfo b/editors/gate/distinfo deleted file mode 100644 index 67d64011813c..000000000000 --- a/editors/gate/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -SHA256 (gate-2.06.tar.gz) = 1320fcca324a591a0ce3aed8baa055add2ea32a3e8d0949f37a6a6fe21c02a8f -SIZE (gate-2.06.tar.gz) = 58677 diff --git a/editors/gate/files/patch-Makefile.in b/editors/gate/files/patch-Makefile.in deleted file mode 100644 index ea70d12af278..000000000000 --- a/editors/gate/files/patch-Makefile.in +++ /dev/null @@ -1,11 +0,0 @@ ---- Makefile.in.orig 2003-06-19 16:47:56 UTC -+++ Makefile.in -@@ -25,7 +25,7 @@ DIST= README $(SRCS) gate.h config.h.in - Makefile.in gate.1.C gate.help CHANGES - - gate: $(OBJS) -- $(CC) -o gate $(CFLAGS) $(OBJS) $(LIBS) -+ $(CC) -o gate $(CFLAGS) $(OBJS) $(LDFLAGS) $(LIBS) - - main.o: main.c gate.h config.h - util.o: util.c gate.h config.h diff --git a/editors/gate/files/patch-configure b/editors/gate/files/patch-configure deleted file mode 100644 index 579cf63aaf5b..000000000000 --- a/editors/gate/files/patch-configure +++ /dev/null @@ -1,11 +0,0 @@ ---- configure.orig 2005-01-24 06:35:15 UTC -+++ configure -@@ -1766,7 +1766,7 @@ else - cat conftest.$ac_ext >&5 - fi - rm -f conftest* --test "$ac_cv_search_tgetent" = "no" && for i in termcap curses; do -+test "$ac_cv_search_tgetent" = "no" && for i in ncurses; do - LIBS="-l$i $ac_func_search_save_LIBS" - cat > conftest.$ac_ext <<EOF - #line 1773 "configure" diff --git a/editors/gate/files/patch-gate.h b/editors/gate/files/patch-gate.h deleted file mode 100644 index f4873775e0f9..000000000000 --- a/editors/gate/files/patch-gate.h +++ /dev/null @@ -1,11 +0,0 @@ ---- gate.h.orig 2005-01-24 06:24:26 UTC -+++ gate.h -@@ -211,7 +211,7 @@ int mv_file(char *src, char *dst); - - /* LINE.C */ - int outcol(char *str,int n,int icol); --int getline(char *bf, char *wbf, int *wcol, char *prompt); -+int get_line(char *bf, char *wbf, int *wcol, char *prompt); - void back_to_col(int ncol); - void print_to_index(int newi); - diff --git a/editors/gate/files/patch-line.c b/editors/gate/files/patch-line.c deleted file mode 100644 index c36f28220fe7..000000000000 --- a/editors/gate/files/patch-line.c +++ /dev/null @@ -1,11 +0,0 @@ ---- line.c.orig 2003-06-19 15:06:54 UTC -+++ line.c -@@ -82,7 +82,7 @@ void mcursor(int *col, int *lin, char ch - * If <wbuf> is NULL, then this does a more ordinary, wrapless read. - */ - --int getline(char *buf, char *wbuf, int *wcol, char *prompt) -+int get_line(char *buf, char *wbuf, int *wcol, char *prompt) - { - int linemode= (wbuf == NULL); /* reading single line, not file */ - int wrapon= !linemode; /* is line wrap enabled? */ diff --git a/editors/gate/files/patch-main.c b/editors/gate/files/patch-main.c deleted file mode 100644 index fa47f6591b78..000000000000 --- a/editors/gate/files/patch-main.c +++ /dev/null @@ -1,11 +0,0 @@ ---- main.c.orig 2005-01-24 17:05:01 UTC -+++ main.c -@@ -87,7 +87,7 @@ int main(int argc,char **argv) - wcol= 0; - for (;;) - { -- if (getline(bf[sw], bf[!sw], &wcol, prompt)) -+ if (get_line(bf[sw], bf[!sw], &wcol, prompt)) - { - putchar('\n'); - done(RET_ENTER); diff --git a/editors/gate/files/patch-spel.c b/editors/gate/files/patch-spel.c deleted file mode 100644 index 53ae7f923153..000000000000 --- a/editors/gate/files/patch-spel.c +++ /dev/null @@ -1,20 +0,0 @@ ---- spel.c.orig 2003-06-19 16:55:51 UTC -+++ spel.c -@@ -151,7 +151,7 @@ empty_repl() - /* ADD_REPL - Add the given replacement to the list of replacements. - * "replace" may be NULL to indicate that the word is to be ignored. - */ -- -+void - add_repl(char *word, int word_len, char *replace) - { - struct repl *r; -@@ -683,7 +683,7 @@ int fix_word(char *line, int offset, int - for(;;) - { - subtask= 1; -- if (getline(bf,NULL,&wcol,st)) -+ if (get_line(bf,NULL,&wcol,st)) - { - printf("\nSpell Check Interupted.\n"); - return 1; diff --git a/editors/gate/files/patch-subs.c b/editors/gate/files/patch-subs.c deleted file mode 100644 index 295bb224a02f..000000000000 --- a/editors/gate/files/patch-subs.c +++ /dev/null @@ -1,20 +0,0 @@ ---- subs.c.orig 2005-01-24 06:16:01 UTC -+++ subs.c -@@ -74,7 +74,7 @@ int ask_spell_subs(char **replace, int * - subtask= 1; - sprintf(st,"Replacement for \"%.*s\" (? for help): ", - strlen(match+1)-1, match+1); -- if (getline(*replace= bf,NULL,wcol,st)) -+ if (get_line(*replace= bf,NULL,wcol,st)) - { - printf("\nSpell Check Interupted.\n"); - do_subs= 'q'; -@@ -429,7 +429,7 @@ int cliplast(char *lastbuf, int bufsize) - #endif - - /* Make a copy of the file */ -- if ((cfp= make_copy()) == NULL) return; -+ if ((cfp= make_copy()) == NULL) return 0; - fflush(cfp); - fseek(cfp,0L,0); - diff --git a/editors/gate/pkg-descr b/editors/gate/pkg-descr deleted file mode 100644 index 7f41336478d3..000000000000 --- a/editors/gate/pkg-descr +++ /dev/null @@ -1,20 +0,0 @@ -Gate is text-gatherer. A text-gatherer is like a text-editor, but much -more lightweight and unobtrusive. - -If you have a program or shell script that asks people to enter a small -chunk of text, a text-gatherer like Gate is a good way to do it. It -doesn't clear the screen (annoying if there were just some instructions -printed there). It doesn't require you to know a lot of obscure editing -commands. It doesn't make excessive demands on the intelligence of your -terminal emulation software. - -It does provide a number of features that make it easier for novice users -to produce good text. It does word-wrap, prints a prompt on each new line, -and allows backspacing from the currently line onto previous lines. It -also provides features that a more experienced user can use. You can call -up normal editor, or use some of gate's simple-minded editing -commands. You can read in files, or save your text to a file. You can -filter your text through something like the Unix "fmt" command. It -provides a nice spell-checking interface too. - -WWW: http://www.unixpapa.com/gate.html diff --git a/editors/gate/pkg-plist b/editors/gate/pkg-plist deleted file mode 100644 index 012c7f980c34..000000000000 --- a/editors/gate/pkg-plist +++ /dev/null @@ -1,3 +0,0 @@ -bin/gate -man/man1/gate.1.gz -%%DATADIR%%/gate.help diff --git a/editors/thoteditor/Makefile b/editors/thoteditor/Makefile deleted file mode 100644 index a40e0bac70c9..000000000000 --- a/editors/thoteditor/Makefile +++ /dev/null @@ -1,55 +0,0 @@ -# Created by: Pedro Giffuni - -PORTNAME= thoteditor -PORTVERSION= 2.1e -PORTREVISION= 5 -CATEGORIES= editors www -MASTER_SITES= ftp://ftp.inrialpes.fr/pub/opera/sources/thot/ \ - ftp://ftp.ruhr-uni-bochum.de/local/jk.collection/thot/ -DISTNAME= ${PORTNAME}-src-${PORTVERSION} - -MAINTAINER= ports@FreeBSD.org -COMMENT= Structured document editor, offering a graphical WYSIWYG interface - -THOT_SUBDIR= Target -USES= gmake motif xorg -USE_XORG= ice sm x11 xext xt -WRKSRC= ${WRKDIR}/Thot/${THOT_SUBDIR} -GNU_CONFIGURE= yes -CONFIGURE_ARGS= --with-thot --enable-plugin --without-insure --without-amaya \ - --disable-java --disable-intr --disable-jit --disable-math \ - --disable-ilu -ALL_TARGET= all schemas -SUB_FILES= thoteditor -MAKE_JOBS_UNSAFE= yes - -CFLAGS+= -fcommon - -DEPRECATED= Unmaintained and dead upstream, does not build with -fno-common (llvm 11) -EXPIRATION_DATE=2021-04-01 - -post-extract: - @${MKDIR} ${WRKSRC} - -post-patch: - @${REINPLACE_CMD} 's|-g -O|${CFLAGS}|' \ - ${WRKDIR}/Thot/configure - @${REINPLACE_CMD} 's|%%MOTIFLIB%%|${MOTIFLIB}|' \ - ${WRKDIR}/Thot/thot/Makefile.in - @${REINPLACE_CMD} 's|%%PREFIX%%|${PREFIX}|' \ - ${WRKDIR}/Thot/thotlib/base/registry.c - @${REINPLACE_CMD} 's|/usr/wsrc/|/usr/tmp/|' \ - ${WRKDIR}/Thot/thotlib/include/sysdep.h - -do-configure: - (cd ${WRKSRC};../configure ${CONFIGURE_ARGS}) - -post-install: - @${MKDIR} ${STAGEDIR}${PREFIX}/share/thot/doc - ${INSTALL_SCRIPT} ${WRKDIR}/thoteditor ${STAGEDIR}${PREFIX}/bin - ${INSTALL_MAN} ${WRKDIR}/Thot/tools/cextract-1.7/cextract.man \ - ${STAGEDIR}${PREFIX}/man/man1/cextract.1 - ${INSTALL_MAN} ${WRKDIR}/Thot/tools/cextract-1.7/cextrc.5 \ - ${STAGEDIR}${PREFIX}/man/man5 - -.include <bsd.port.mk> diff --git a/editors/thoteditor/distinfo b/editors/thoteditor/distinfo deleted file mode 100644 index b221f81de72f..000000000000 --- a/editors/thoteditor/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -SHA256 (thoteditor-src-2.1e.tar.gz) = 865bdccb3d047af99b90e2b4d4e8ac1bd0bdfe99041849ed7c463f0ce6b86641 -SIZE (thoteditor-src-2.1e.tar.gz) = 3753847 diff --git a/editors/thoteditor/files/patch-Makefile.in b/editors/thoteditor/files/patch-Makefile.in deleted file mode 100644 index e636093a458d..000000000000 --- a/editors/thoteditor/files/patch-Makefile.in +++ /dev/null @@ -1,19 +0,0 @@ ---- ../Makefile.in.orig 1997-10-08 10:13:58.000000000 +0200 -+++ ../Makefile.in 2014-05-08 10:31:05.418730130 +0200 -@@ -17,6 +17,7 @@ - - SUBDIRS = tools tablelib thotlib batch drawlib indexlib thot amaya - EXTRA_SUBDIRS= misc classes javalib -+BINS = bin/app bin/grm bin/printstr bin/str bin/tra bin/cextract bin/print bin/prs bin/thot - - prefix = @prefix@ - exec_prefix = @exec_prefix@ -@@ -76,6 +77,8 @@ - do if test -d $$dir ; then cd $$dir ; \ - $(MAKE) CC="$(CC)" CFLAGS="$(CFLAGS)" install ; \ - cd .. ; fi ;done ) -+ (for file in $(BINS);\ -+ do $(BSD_INSTALL_PROGRAM) $$file $(DESTDIR)${bindir}; done ) - - uninstall : - @(for dir in $(SUBDIRS) ;\ diff --git a/editors/thoteditor/files/patch-UIcss.c b/editors/thoteditor/files/patch-UIcss.c deleted file mode 100644 index af2bcb4ef2f8..000000000000 --- a/editors/thoteditor/files/patch-UIcss.c +++ /dev/null @@ -1,10 +0,0 @@ ---- thot/UIcss.c.orig Sat Aug 21 17:34:06 2004 -+++ ../thot/UIcss.c Sat Aug 21 17:34:27 2004 -@@ -1117,6 +1117,7 @@ - #ifdef DEBUG_CSS - fprintf (stderr, "CSSCallbackHandle: undefined button value.\n"); - #endif -+ break; - } - break; - diff --git a/editors/thoteditor/files/patch-batch-Makefile.in b/editors/thoteditor/files/patch-batch-Makefile.in deleted file mode 100644 index b6f398c8481e..000000000000 --- a/editors/thoteditor/files/patch-batch-Makefile.in +++ /dev/null @@ -1,27 +0,0 @@ ---- ../batch/Makefile.in.orig 1997-11-14 18:09:14.000000000 +0100 -+++ ../batch/Makefile.in 2014-05-08 10:17:15.785699396 +0200 -@@ -202,16 +202,16 @@ - $(RM) -f *.o dns_daemon - - install : all -- @(if test ! -d $(datadir) ; then $(MKDIR) $(datadir) ; fi) -- @(if test ! -d $(datadir)/thot ; then $(MKDIR) $(datadir)/thot ; fi) -- @(if test ! -d $(datadir)/thot/batch ; then $(MKDIR) $(datadir)/thot/batch ; fi) -- @(if test ! -d $(datadir)/thot/applis ; then $(MKDIR) $(datadir)/thot/applis ; fi) -- @(if test ! -d $(datadir)/thot/applis/bin ; then $(MKDIR) $(datadir)/thot/applis/bin ; fi) -- @(for i in $(COMPILERS) ; do \ -- $(INSTALL_BIN) $$i $(datadir)/thot/applis/bin ; done) -+ (if test ! -d $(DESTDIR)$(datadir) ; then $(MKDIR) $(DESTDIR)$(datadir) ; fi) -+ (if test ! -d $(DESTDIR)$(datadir)/thot ; then $(MKDIR) $(DESTDIR)$(datadir)/thot ; fi) -+ (if test ! -d $(DESTDIR)$(datadir)/thot/batch ; then $(MKDIR) $(DESTDIR)$(datadir)/thot/batch ; fi) -+ (if test ! -d $(DESTDIR)$(datadir)/thot/applis ; then $(MKDIR) $(DESTDIR)$(datadir)/thot/applis ; fi) -+ (if test ! -d $(DESTDIR)$(datadir)/thot/applis/bin ; then $(MKDIR) $(DESTDIR)$(datadir)/thot/applis/bin ; fi) -+ (for i in $(COMPILERS) ; do \ -+ $(BSD_INSTALL_PROGRAM) $$i $(DESTDIR)$(datadir)/thot/applis/bin ; done) - (for i in $(LANGUAGES) ; do \ - for file in `$(ECHO) $(THOTDIR)/batch/$$i` ; do \ -- $(INSTALL_DATA) $$file $(datadir)/thot/batch ; \ -+ $(INSTALL_DATA) $$file $(DESTDIR)$(datadir)/thot/batch ; \ - done ; done) - - uninstall : diff --git a/editors/thoteditor/files/patch-configure b/editors/thoteditor/files/patch-configure deleted file mode 100644 index a79a5de4d766..000000000000 --- a/editors/thoteditor/files/patch-configure +++ /dev/null @@ -1,11 +0,0 @@ ---- ../configure.orig Fri Sep 24 20:16:20 1999 -+++ ../configure Fri Sep 24 20:17:39 1999 -@@ -5200,7 +5200,7 @@ - esac - fi - fi -- -+MOTIF_LIBRARIES="$(MOTIFLIB)" - - - diff --git a/editors/thoteditor/files/patch-thot-Makefile.in b/editors/thoteditor/files/patch-thot-Makefile.in deleted file mode 100644 index d3e181bfa64a..000000000000 --- a/editors/thoteditor/files/patch-thot-Makefile.in +++ /dev/null @@ -1,70 +0,0 @@ ---- ../thot/Makefile.in.orig 1997-11-19 11:41:49.000000000 +0100 -+++ ../thot/Makefile.in 2014-05-08 10:28:49.671753071 +0200 -@@ -14,7 +14,7 @@ - -I@top_srcdir@/drawlib -I@top_srcdir@/drawlib/f - LDFLAGS = @LDFLAGS@ -L../indexlib -L../drawlib -L../tablelib -L../thotlib -L.. - LIBS = -lThotIndex -lThotDraw -lThotTable -lThotEditor @IMGLIBS@ \ -- $(MOTIF_LIBRARIES) -lXm $(X_LIBS) -lXt -lXext $(X_PRE_LIBS) \ -+ %%MOTIFLIB%% -lXm -lXm $(X_LIBS) -lXt -lXext $(X_PRE_LIBS) \ - -lX11 $(X_EXTRA_LIBS) @LIBS@ @EXTRA_LIBS@ -lm - - prefix = @prefix@ -@@ -27,6 +27,7 @@ - CONFIGFILES= \ - XKeysymDB thot.ini thot.color thot.pattern thot.keyboard \ - fr-thotdialogue en-appdialogue en-compildialogue en-corrdialogue \ -+ en-cssmessage \ - en-drawdialogue en-grmdialogue en-inddialogue en-itfdialogue \ - en-libdialogue en-printdialogue en-prsdialogue en-strdialogue \ - en-thotdialogue en-thotmessage en-thotversion en-transdialogue \ -@@ -54,31 +55,33 @@ - $(RM) *.o EDITORAPP.c EDITOR.A - - install : all -- @(if test ! -d $(datadir) ; then $(MKDIR) $(datadir) ; fi) -- @(if test ! -d $(datadir)/thot ; then $(MKDIR) $(datadir)/thot ; fi) -- @(if test ! -d $(datadir)/thot/config ; then $(MKDIR) $(datadir)/thot/config ; fi) -- @(if test ! -d $(datadir)/thot/fonts ; then $(MKDIR) $(datadir)/thot/fonts ; fi) -- @(if test ! -d $(datadir)/thot/dicopar ; then $(MKDIR) $(datadir)/thot/dicopar ; fi) -- @(if test ! -d $(datadir)/thot/applis ; then $(MKDIR) $(datadir)/thot/applis ; fi) -- @(if test ! -d $(datadir)/thot/applis/bin ; then $(MKDIR) $(datadir)/thot/applis/bin ; fi) -- @(if test ! -d $(datadir)/schemas ; then $(MKDIR) $(datadir)/schemas ; fi) -- $(INSTALL_BIN) ../bin/thot $(datadir)/thot/applis/bin -- $(INSTALL_BIN) ../bin/print $(datadir)/thot/applis/bin -+ (if test ! -d $(DESTDIR)$(datadir) ; then $(MKDIR) $(DESTDIR)$(datadir) ; fi) -+ (if test ! -d $(DESTDIR)$(datadir)/thot ; then $(MKDIR) $(DESTDIR)$(datadir)/thot ; fi) -+ (if test ! -d $(DESTDIR)$(datadir)/thot/config ; then $(MKDIR) $(DESTDIR)$(datadir)/thot/config ; fi) -+ (if test ! -d $(DESTDIR)$(datadir)/thot/fonts ; then $(MKDIR) $(DESTDIR)$(datadir)/thot/fonts ; fi) -+ (if test ! -d $(DESTDIR)$(datadir)/thot/dicopar ; then $(MKDIR) $(DESTDIR)$(datadir)/thot/dicopar ; fi) -+ (if test ! -d $(DESTDIR)$(datadir)/thot/applis ; then $(MKDIR) $(DESTDIR)$(datadir)/thot/applis ; fi) -+ (if test ! -d $(DESTDIR)$(datadir)/thot/applis/bin ; then $(MKDIR) $(DESTDIR)$(datadir)/thot/applis/bin ; fi) -+ (if test ! -d $(DESTDIR)$(datadir)/thot/schemas ; then $(MKDIR) $(DESTDIR)$(datadir)/thot/schemas ; fi) -+ $(BSD_INSTALL_PROGRAM) ../bin/thot $(DESTDIR)$(datadir)/thot/applis/bin -+ $(BSD_INSTALL_PROGRAM) ../bin/print $(DESTDIR)$(datadir)/thot/applis/bin -+ $(INSTALL_DATA) EDITOR.h $(DESTDIR)$(datadir)/thot/schemas -+ $(INSTALL_DATA) ExtCss.h $(DESTDIR)$(datadir)/thot/schemas - (for i in $(SCHEMAS) ; do \ - for file in `$(ECHO) $(THOTDIR)/schemas/$$i` ; do \ -- $(INSTALL_DATA) $$file $(datadir)/thot/schemas ; \ -+ $(INSTALL_DATA) $$file $(DESTDIR)$(datadir)/thot/schemas ; \ - done ; done) - (for i in $(CONFIGFILES) ; do \ -- for file in `$(ECHO) $(THOTDIR)/thot/config/$$i` ; do \ -- $(INSTALL_DATA) $$file $(datadir)/thot/config ; \ -+ for file in `$(ECHO) $(THOTDIR)/config/$$i` ; do \ -+ $(INSTALL_DATA) $$file $(DESTDIR)$(datadir)/thot/config ; \ - done ; done) - (for i in $(DICOFILES) ; do \ -- for file in `$(ECHO) $(THOTDIR)/thot/dicopar/$$i` ; do \ -- $(INSTALL_DATA) $$file $(datadir)/thot/dicopar ; \ -+ for file in `$(ECHO) $(THOTDIR)/dicopar/$$i` ; do \ -+ $(INSTALL_DATA) $$file $(DESTDIR)$(datadir)/thot/dicopar ; \ - done ; done) - (for i in $(FONTSFILES) ; do \ -- for file in `$(ECHO) $(THOTDIR)/thot/fonts/$$i` ; do \ -- $(INSTALL_DATA) $$file $(datadir)/thot/fonts ; \ -+ for file in `$(ECHO) $(THOTDIR)/fonts/$$i` ; do \ -+ $(INSTALL_DATA) $$file $(DESTDIR)$(datadir)/thot/fonts ; \ - done ; done) - - uninstall : diff --git a/editors/thoteditor/files/patch-thotlib-base-registry.c b/editors/thoteditor/files/patch-thotlib-base-registry.c deleted file mode 100644 index e3fff2c9ae4d..000000000000 --- a/editors/thoteditor/files/patch-thotlib-base-registry.c +++ /dev/null @@ -1,34 +0,0 @@ ---- ../thotlib/base/registry.c.orig Mon Sep 27 00:32:18 1999 -+++ ../thotlib/base/registry.c Mon Sep 27 00:34:52 1999 -@@ -833,6 +833,7 @@ - PathBuffer path; - char *home_dir; - char filename[MAX_PATH]; -+ char homecmd[MAX_PATH]; - char *my_path; - char *dir_end = NULL; - char *appName; -@@ -1084,13 +1085,22 @@ - dir_end -= 3; - } - else -- fprintf (stderr, "System wide %s not found at %s\n", THOT_INI_FILENAME, &filename[0]); -+ fprintf (stderr, " "); -+/* fprintf (stderr, "System wide %s not found at %s\n", THOT_INI_FILENAME, &filename[0]); */ - - if (home_dir != NULL) - { - strcpy (filename, home_dir); - strcat (filename, DIR_STR); - strcat (filename, THOT_RC_FILENAME); -+ if (!TtaFileExist (&filename[0])) -+ { -+ sprintf(homecmd,"/bin/cp %%PREFIX%%/share/thot/config/thot.ini %s%s.thotrc\n",home_dir,DIR_STR); -+ fprintf(stderr,"Copying system thot.ini into ~/.thotrc.\n"); -+ system(homecmd); -+ sprintf(homecmd,"/bin/chmod u+w %s%s.thotrc\n",home_dir,DIR_STR); -+ system(homecmd); -+ } - if (TtaFileExist (&filename[0])) - { - #ifdef DEBUG_REGISTRY diff --git a/editors/thoteditor/files/patch-tools-Makefile.in b/editors/thoteditor/files/patch-tools-Makefile.in deleted file mode 100644 index c0cd3600e5a1..000000000000 --- a/editors/thoteditor/files/patch-tools-Makefile.in +++ /dev/null @@ -1,11 +0,0 @@ ---- ../tools/Makefile.in.orig Fri May 16 10:00:20 1997 -+++ ../tools/Makefile.in Sat Sep 25 12:16:00 1999 -@@ -24,7 +24,7 @@ - cd .. ; fi ;done ) - - install : -- @(for dir in $(SUBDIRS) ;\ -+ @(set -x;for dir in $(SUBDIRS) ;\ - do if test -d $$dir ; then cd $$dir ; \ - $(MAKE) CC="$(CC)" CFLAGS="$(CFLAGS)" install ; \ - cd .. ; fi ;done ) diff --git a/editors/thoteditor/files/thoteditor.in b/editors/thoteditor/files/thoteditor.in deleted file mode 100644 index 4b5268f64bb7..000000000000 --- a/editors/thoteditor/files/thoteditor.in +++ /dev/null @@ -1,4 +0,0 @@ -#!/bin/sh -THOTDIR=%%PREFIX%%/share/thot -export THOTDIR -exec %%PREFIX%%/bin/thot diff --git a/editors/thoteditor/pkg-descr b/editors/thoteditor/pkg-descr deleted file mode 100644 index 0ccda6cdad3a..000000000000 --- a/editors/thoteditor/pkg-descr +++ /dev/null @@ -1,12 +0,0 @@ -Thot offers the usual functionality of a word processor, but it also -processes the document structure. It includes a large set of advanced -tools, such as a spell checker and an index generator, and it allows to -export documents to common formats like HTML and LaTeX. -This release should be considered as a snapshot of a work in progress. A -large part of the intended features of Thot Editor are implemented, but -some of them are not complete yet and the software is not supposed to be very -robust. The user interface may change and can be improved. - -For documentation, please see the homepage. - -WWW: http://opera.inrialpes.fr/Thot.en.html diff --git a/editors/thoteditor/pkg-plist b/editors/thoteditor/pkg-plist deleted file mode 100644 index 64dc7ad72678..000000000000 --- a/editors/thoteditor/pkg-plist +++ /dev/null @@ -1,319 +0,0 @@ -bin/app -bin/grm -bin/str -bin/printstr -bin/tra -bin/cextract -bin/print -bin/prs -bin/thot -bin/thoteditor -man/man1/cextract.1.gz -man/man5/cextrc.5.gz -share/thot/batch/APP.GRM -share/thot/batch/PRESEN.GRM -share/thot/batch/STRUCT.GRM -share/thot/batch/TRANS.GRM -share/thot/batch/APP.LAN -share/thot/batch/PRESEN.LAN -share/thot/batch/STRUCT.LAN -share/thot/batch/TRANS.LAN -share/thot/batch/APP.LST -share/thot/batch/PRESEN.LST -share/thot/batch/STRUCT.LST -share/thot/batch/TRANS.LST -share/thot/applis/bin/grm -share/thot/applis/bin/str -share/thot/applis/bin/prs -share/thot/applis/bin/tra -share/thot/applis/bin/app -share/thot/applis/bin/printstr -share/thot/applis/bin/thot -share/thot/applis/bin/print -share/thot/config/XKeysymDB -share/thot/config/thot.ini -share/thot/config/thot.color -share/thot/config/thot.pattern -share/thot/config/thot.keyboard -share/thot/config/fr-thotdialogue -share/thot/config/en-appdialogue -share/thot/config/en-compildialogue -share/thot/config/en-corrdialogue -share/thot/config/en-cssmessage -share/thot/config/en-drawdialogue -share/thot/config/en-grmdialogue -share/thot/config/en-inddialogue -share/thot/config/en-itfdialogue -share/thot/config/en-libdialogue -share/thot/config/en-printdialogue -share/thot/config/en-prsdialogue -share/thot/config/en-strdialogue -share/thot/config/en-thotdialogue -share/thot/config/en-thotmessage -share/thot/config/en-thotversion -share/thot/config/en-transdialogue -share/thot/config/en-typdialogue -share/thot/config/fr-appdialogue -share/thot/config/fr-compildialogue -share/thot/config/fr-corrdialogue -share/thot/config/fr-drawdialogue -share/thot/config/fr-grmdialogue -share/thot/config/fr-inddialogue -share/thot/config/fr-itfdialogue -share/thot/config/fr-libdialogue -share/thot/config/fr-printdialogue -share/thot/config/fr-prsdialogue -share/thot/config/fr-strdialogue -share/thot/config/fr-thotmessage -share/thot/config/fr-thotversion -share/thot/config/fr-transdialogue -share/thot/config/fr-typdialogue -share/thot/fonts/Families.list -share/thot/fonts/fonts.dir -share/thot/fonts/icones.ff -share/thot/fonts/icones.pcf -share/thot/fonts/icones1.fb -share/thot/fonts/icones11.fb -share/thot/dicopar/american.ptn -share/thot/dicopar/deutsch.ptn -share/thot/dicopar/english.ptn -share/thot/dicopar/espanol.ptn -share/thot/dicopar/finish.ptn -share/thot/dicopar/francais.ptn -share/thot/dicopar/italiano.ptn -share/thot/dicopar/nederl.ptn -share/thot/dicopar/portug.ptn -share/thot/dicopar/swedish.ptn -share/thot/dicopar/alphabet -share/thot/dicopar/clavier -share/thot/schemas/Makefile -share/thot/schemas/Text_ASCII.inc -share/thot/schemas/Text_SGML.inc -share/thot/schemas/EDITOR.h -share/thot/schemas/ExtCss.h -share/thot/schemas/Arbre2.S -share/thot/schemas/Draw2.S -share/thot/schemas/Draw3.S -share/thot/schemas/Expose.S -share/thot/schemas/ExtCss.S -share/thot/schemas/ExtIndex.S -share/thot/schemas/Feuille.S -share/thot/schemas/Fichier.S -share/thot/schemas/Lettre.S -share/thot/schemas/Math.S -share/thot/schemas/Palette.S -share/thot/schemas/Paragraphe.S -share/thot/schemas/Rapport.S -share/thot/schemas/RefBib.S -share/thot/schemas/Table.S -share/thot/schemas/Arbre2.STR -share/thot/schemas/Draw2.STR -share/thot/schemas/Draw3.STR -share/thot/schemas/Expose.STR -share/thot/schemas/ExtCss.STR -share/thot/schemas/ExtIndex.STR -share/thot/schemas/Feuille.STR -share/thot/schemas/Fichier.STR -share/thot/schemas/Lettre.STR -share/thot/schemas/Math.STR -share/thot/schemas/Palette.STR -share/thot/schemas/Paragraphe.STR -share/thot/schemas/Rapport.STR -share/thot/schemas/RefBib.STR -share/thot/schemas/Table.STR -share/thot/schemas/Arbre2P.P -share/thot/schemas/Draw2P.P -share/thot/schemas/Draw3P.P -share/thot/schemas/ExposeP.P -share/thot/schemas/ExtCssP.P -share/thot/schemas/ExtIndexP.P -share/thot/schemas/FeuilleP.P -share/thot/schemas/FichierP.P -share/thot/schemas/LettreP.P -share/thot/schemas/MathP.P -share/thot/schemas/PaletteP.P -share/thot/schemas/ParagrLTP.P -share/thot/schemas/ParagraphP.P -share/thot/schemas/RapportP.P -share/thot/schemas/RefBibP.P -share/thot/schemas/TableP.P -share/thot/schemas/Arbre2P.PRS -share/thot/schemas/Draw2P.PRS -share/thot/schemas/Draw3P.PRS -share/thot/schemas/ExposePFS.PRS -share/thot/schemas/ExposePI.PRS -share/thot/schemas/ExposePIN.PRS -share/thot/schemas/ExposePINUS.PRS -share/thot/schemas/ExposePIUS.PRS -share/thot/schemas/ExposePP.PRS -share/thot/schemas/ExposePPUS.PRS -share/thot/schemas/ExtCssP.PRS -share/thot/schemas/ExtIndexPP.PRS -share/thot/schemas/ExtIndexPPE.PRS -share/thot/schemas/ExtIndexPPEUS.PRS -share/thot/schemas/ExtIndexPPEnoref.PRS -share/thot/schemas/ExtIndexPPEnorefUS.PRS -share/thot/schemas/ExtIndexPPUS.PRS -share/thot/schemas/FeuillePI.PRS -share/thot/schemas/FeuillePIUS.PRS -share/thot/schemas/FeuillePP.PRS -share/thot/schemas/FeuillePPUS.PRS -share/thot/schemas/FichierP.PRS -share/thot/schemas/LettreP.PRS -share/thot/schemas/LettrePE.PRS -share/thot/schemas/LettrePP.PRS -share/thot/schemas/LettrePP1.PRS -share/thot/schemas/LettrePP1E.PRS -share/thot/schemas/LettrePP1EUS.PRS -share/thot/schemas/LettrePP1US.PRS -share/thot/schemas/LettrePPE.PRS -share/thot/schemas/LettrePPEUS.PRS -share/thot/schemas/LettrePPUS.PRS -share/thot/schemas/MathP.PRS -share/thot/schemas/PaletteP.PRS -share/thot/schemas/ParagrLTP.PRS -share/thot/schemas/ParagraphP.PRS -share/thot/schemas/ParagraphPD.PRS -share/thot/schemas/RapportP.PRS -share/thot/schemas/RapportPE.PRS -share/thot/schemas/RapportPP.PRS -share/thot/schemas/RapportPPB.PRS -share/thot/schemas/RapportPPBC.PRS -share/thot/schemas/RapportPPBCUS.PRS -share/thot/schemas/RapportPPBE.PRS -share/thot/schemas/RapportPPBEUS.PRS -share/thot/schemas/RapportPPBUS.PRS -share/thot/schemas/RapportPPE.PRS -share/thot/schemas/RapportPPEUS.PRS -share/thot/schemas/RapportPPR.PRS -share/thot/schemas/RapportPPRUS.PRS -share/thot/schemas/RapportPPUS.PRS -share/thot/schemas/RefBibP.PRS -share/thot/schemas/RefBibP1.PRS -share/thot/schemas/RefBibPCle.PRS -share/thot/schemas/RefBibPE.PRS -share/thot/schemas/RefBibPE1.PRS -share/thot/schemas/RefBibPECle.PRS -share/thot/schemas/TableP.PRS -share/thot/schemas/TablePS.PRS -share/thot/schemas/Arbre2A.T -share/thot/schemas/Arbre2H.T -share/thot/schemas/Arbre2T.T -share/thot/schemas/Draw2A.T -share/thot/schemas/Draw2H.T -share/thot/schemas/Draw2T.T -share/thot/schemas/Draw2T1.T -share/thot/schemas/Draw3A.T -share/thot/schemas/Draw3H.T -share/thot/schemas/Draw3T.T -share/thot/schemas/Draw3T1.T -share/thot/schemas/ExposeA.T -share/thot/schemas/ExposeH.T -share/thot/schemas/ExposeH1.T -share/thot/schemas/ExtIndexH.T -share/thot/schemas/FeuilleA.T -share/thot/schemas/FeuilleH.T -share/thot/schemas/FichierA.T -share/thot/schemas/FichierH.T -share/thot/schemas/FichierT.T -share/thot/schemas/LettreA.T -share/thot/schemas/MathH.T -share/thot/schemas/MathT.T -share/thot/schemas/ParagraphA.T -share/thot/schemas/ParagraphH.T -share/thot/schemas/ParagraphT.T -share/thot/schemas/ParagraphW.T -share/thot/schemas/RapportA.T -share/thot/schemas/RapportH.T -share/thot/schemas/RapportT.T -share/thot/schemas/RapportWA.T -share/thot/schemas/RefBibA.T -share/thot/schemas/RefBibB.T -share/thot/schemas/RefBibBH.T -share/thot/schemas/RefBibH.T -share/thot/schemas/RefBibT.T -share/thot/schemas/RefBibT1.T -share/thot/schemas/RefBibWA.T -share/thot/schemas/RefBibWM.T -share/thot/schemas/TableA.T -share/thot/schemas/TableH.T -share/thot/schemas/TableT.T -share/thot/schemas/Arbre2A.TRA -share/thot/schemas/Arbre2H.TRA -share/thot/schemas/Arbre2T.TRA -share/thot/schemas/Draw2A.TRA -share/thot/schemas/Draw2H.TRA -share/thot/schemas/Draw2T.TRA -share/thot/schemas/Draw2T1.TRA -share/thot/schemas/ExposeA.TRA -share/thot/schemas/ExposeH.TRA -share/thot/schemas/ExposeH1.TRA -share/thot/schemas/ExtIndexH.TRA -share/thot/schemas/FeuilleA.TRA -share/thot/schemas/FeuilleH.TRA -share/thot/schemas/FichierA.TRA -share/thot/schemas/FichierH.TRA -share/thot/schemas/FichierT.TRA -share/thot/schemas/LettreA.TRA -share/thot/schemas/MathH.TRA -share/thot/schemas/MathT.TRA -share/thot/schemas/ParagraphA.TRA -share/thot/schemas/ParagraphH.TRA -share/thot/schemas/ParagraphT.TRA -share/thot/schemas/ParagraphW.TRA -share/thot/schemas/RapportA.TRA -share/thot/schemas/RapportH.TRA -share/thot/schemas/RapportHM.TRA -share/thot/schemas/RapportT.TRA -share/thot/schemas/RefBibA.TRA -share/thot/schemas/RefBibB.TRA -share/thot/schemas/RefBibBH.TRA -share/thot/schemas/RefBibH.TRA -share/thot/schemas/RefBibT.TRA -share/thot/schemas/RefBibT1.TRA -share/thot/schemas/RefBibWA.TRA -share/thot/schemas/RefBibWM.TRA -share/thot/schemas/TableA.TRA -share/thot/schemas/TableH.TRA -share/thot/schemas/TableT.TRA -share/thot/schemas/Arbre2.conf -share/thot/schemas/Draw2.conf -share/thot/schemas/Draw3.conf -share/thot/schemas/Expose.conf -share/thot/schemas/ExtCss.conf -share/thot/schemas/ExtIndex.conf -share/thot/schemas/Feuille.conf -share/thot/schemas/Fichier.conf -share/thot/schemas/Lettre.conf -share/thot/schemas/Math.conf -share/thot/schemas/Palette.conf -share/thot/schemas/Paragraphe.conf -share/thot/schemas/Rapport.conf -share/thot/schemas/Table.conf -share/thot/schemas/Arbre2.fr -share/thot/schemas/Draw2.fr -share/thot/schemas/Draw3.fr -share/thot/schemas/Math.fr -share/thot/schemas/Expose.fr -share/thot/schemas/ExtIndex.fr -share/thot/schemas/Feuille.fr -share/thot/schemas/Fichier.fr -share/thot/schemas/Lettre.fr -share/thot/schemas/Paragraphe.fr -share/thot/schemas/Rapport.fr -share/thot/schemas/RefBib.fr -share/thot/schemas/Table.fr -share/thot/schemas/Arbre2.en -share/thot/schemas/Draw2.en -share/thot/schemas/Draw3.en -share/thot/schemas/Expose.en -share/thot/schemas/ExtIndex.en -share/thot/schemas/Feuille.en -share/thot/schemas/Fichier.en -share/thot/schemas/Lettre.en -share/thot/schemas/Math.en -share/thot/schemas/Paragraphe.en -share/thot/schemas/Rapport.en -share/thot/schemas/RefBib.en -share/thot/schemas/Table.en -@dir share/thot/doc |