summaryrefslogtreecommitdiff
path: root/textproc/opensched/files
diff options
context:
space:
mode:
Diffstat (limited to 'textproc/opensched/files')
-rw-r--r--textproc/opensched/files/patch-Makefile79
-rw-r--r--textproc/opensched/files/patch-src__Makefile11
-rw-r--r--textproc/opensched/files/patch-src__graph.c58
-rw-r--r--textproc/opensched/files/patch-src__loadfile.c10
-rw-r--r--textproc/opensched/files/patch-src__print.c75
-rw-r--r--textproc/opensched/files/patch-test__Makefile13
-rw-r--r--textproc/opensched/files/patch-test__test.tex41
7 files changed, 0 insertions, 287 deletions
diff --git a/textproc/opensched/files/patch-Makefile b/textproc/opensched/files/patch-Makefile
deleted file mode 100644
index 70368a5dfaf7..000000000000
--- a/textproc/opensched/files/patch-Makefile
+++ /dev/null
@@ -1,79 +0,0 @@
-*** Makefile.orig Tue Nov 16 04:02:39 1999
---- Makefile Wed Jan 31 14:51:57 2001
-***************
-*** 13,26 ****
-
- build: opensched manpage
-
-! all: opensched printman test sample
-
- BINDIR=/usr/local/bin
- MANDIR=/usr/local/man/man1
-
- install: opensched manpage
-! install -o root -g root -m 755 opensched $(BINDIR)
-! install -o root -g root -m 755 doc/opensched.1 $(MANDIR)
-
- browseman: manpage
- groff -t -man -Tlatin1 doc/opensched.1 | less
---- 13,26 ----
-
- build: opensched manpage
-
-! all: opensched printman test
-
- BINDIR=/usr/local/bin
- MANDIR=/usr/local/man/man1
-
- install: opensched manpage
-! install -o root -g 0 -m 755 src/opensched $(BINDIR)
-! install -o root -g 0 -m 755 doc/opensched.1 $(MANDIR)
-
- browseman: manpage
- groff -t -man -Tlatin1 doc/opensched.1 | less
-***************
-*** 33,42 ****
-
- opensched: dummy
- # opensched:
-! (cd src; make opensched)
-
- gcc-dos: dummy
-! pushd src; make gcc-dos; popd
-
- backup: veryclean
- /bin/rm -rf opensched-`cat VERSION`
---- 33,42 ----
-
- opensched: dummy
- # opensched:
-! (cd src; ${MAKE} opensched)
-
- gcc-dos: dummy
-! pushd src; ${MAKE} gcc-dos; popd
-
- backup: veryclean
- /bin/rm -rf opensched-`cat VERSION`
-***************
-*** 66,75 ****
- /bin/chmod 755 `find . -type d -or -name '*.sh' -or -name opensched`
-
- test: opensched dummy
-! (cd test; make test)
-
- sample: opensched dummy
-! (cd sample; make sample)
-
- dummy:
-
---- 66,75 ----
- /bin/chmod 755 `find . -type d -or -name '*.sh' -or -name opensched`
-
- test: opensched dummy
-! (cd test; ${MAKE} test)
-
- sample: opensched dummy
-! (cd sample; ${MAKE} sample)
-
- dummy:
-
diff --git a/textproc/opensched/files/patch-src__Makefile b/textproc/opensched/files/patch-src__Makefile
deleted file mode 100644
index b11f8d9caded..000000000000
--- a/textproc/opensched/files/patch-src__Makefile
+++ /dev/null
@@ -1,11 +0,0 @@
---- src/Makefile.orig Tue Oct 26 01:41:45 1999
-+++ src/Makefile Sat Oct 19 15:13:56 2002
-@@ -1,6 +1,6 @@
--CFLAGS=-Wall -g
-+CFLAGS+=-Wall
- LIBS=-lm
--CC=gcc
-+CC?=cc
- CDEPEND = $(CC) -M
- CDEPENDFLAGS =
-
diff --git a/textproc/opensched/files/patch-src__graph.c b/textproc/opensched/files/patch-src__graph.c
deleted file mode 100644
index 45a6cfbf64b8..000000000000
--- a/textproc/opensched/files/patch-src__graph.c
+++ /dev/null
@@ -1,58 +0,0 @@
-*** src/graph.c.org Wed Jan 31 15:15:27 2001
---- src/graph.c Wed Jan 31 15:22:39 2001
-***************
-*** 66,71 ****
---- 66,95 ----
- fprintf(f," fill\n");
- fprintf(f," } def\n");
-
-+ fprintf(f,"/REDBOX\n");
-+ fprintf(f," {\n");
-+ fprintf(f," /y2 exch def /y1 exch def /x2 exch def /x1 exch def\n");
-+ fprintf(f," x1 y1 moveto\n");
-+ fprintf(f," x2 y1 lineto\n");
-+ fprintf(f," x2 y2 lineto\n");
-+ fprintf(f," x1 y2 lineto\n");
-+ fprintf(f," closepath\n");
-+ fprintf(f," 1 %f %f setrgbcolor\n",tg_gray,tg_gray);
-+ fprintf(f," fill\n");
-+ fprintf(f," } def\n");
-+
-+ fprintf(f,"/BLUEBOX\n");
-+ fprintf(f," {\n");
-+ fprintf(f," /y2 exch def /y1 exch def /x2 exch def /x1 exch def\n");
-+ fprintf(f," x1 y1 moveto\n");
-+ fprintf(f," x2 y1 lineto\n");
-+ fprintf(f," x2 y2 lineto\n");
-+ fprintf(f," x1 y2 lineto\n");
-+ fprintf(f," closepath\n");
-+ fprintf(f," %f %f 1 setrgbcolor\n",tg_gray,tg_gray);
-+ fprintf(f," fill\n");
-+ fprintf(f," } def\n");
-+
- fprintf(f,"/OUTLINE\n");
- fprintf(f," {\n");
- fprintf(f," /y2 exch def /y1 exch def /x2 exch def /x1 exch def\n");
-***************
-*** 267,273 ****
- for( i=tb->start; i<=tb->finish; ++i )
- {
- tb_x1 = MapX( i, start, finish );
-! fprintf(f,"%d %d %d %d BOX\n", tb_x1, tb_x1+tg_width, tb_y1, tb_y2);
- }
- }
-
---- 291,303 ----
- for( i=tb->start; i<=tb->finish; ++i )
- {
- tb_x1 = MapX( i, start, finish );
-! if (t->children > 0)
-! fprintf(f,"%d %d %d %d REDBOX\n",
-! tb_x1, tb_x1+tg_width, tb_y1, tb_y2);
-! else
-! fprintf(f,"%d %d %d %d BLUEBOX\n",
-! tb_x1, tb_x1+tg_width, tb_y1, tb_y2);
-!
- }
- }
-
diff --git a/textproc/opensched/files/patch-src__loadfile.c b/textproc/opensched/files/patch-src__loadfile.c
deleted file mode 100644
index da635f22e5fc..000000000000
--- a/textproc/opensched/files/patch-src__loadfile.c
+++ /dev/null
@@ -1,10 +0,0 @@
---- src/loadfile.c.orig Sat Oct 19 15:29:13 2002
-+++ src/loadfile.c Sat Oct 19 15:28:40 2002
-@@ -268,6 +268,7 @@
- t = (TASK*)malloc(sizeof(TASK));
- if ( t == NULL )
- Error("Can't malloc task in AddTask()");
-+ memset(t, 0, sizeof(TASK));
-
- t->id = strdup(id);
- t->name = strdup(name);
diff --git a/textproc/opensched/files/patch-src__print.c b/textproc/opensched/files/patch-src__print.c
deleted file mode 100644
index 4d4a8b71c1fa..000000000000
--- a/textproc/opensched/files/patch-src__print.c
+++ /dev/null
@@ -1,75 +0,0 @@
-*** src/print.c.org Wed Jan 31 14:29:34 2001
---- src/print.c Wed Jan 31 14:30:44 2001
-***************
-*** 579,612 ****
-
- SortMilestones();
-
-! fprintf(f, "\\subsection{Milestone List}\n\\label{milestones}\n\n");
-!
-! fprintf(f, "\\begin{itemize}\n");
-!
-! for ( i = 0; i < Nmilestones; ++i )
-! {
- m = sorted_milestones[i].milestone;
-!
- fprintf(f, "\\item ");
- if ( milestone_ids )
-! fprintf(f, "%s %s\\\\",
-! TeXFix(buf1,m->id),
-! TeXFix(buf2,m->name));
- else
-! fprintf(f, "%s\\\\",
-! TeXFix(buf2,m->name));
- fprintf(f, " \\emph{%s}\n\n",
- days[m->day].s);
- if ( m->bday != INVALIDDAYNO )
- {
-! fprintf(f, "Baseline\\\\\emph{%s}\n",
-! days[m->bday].s);
- }
- fprintf(f, "\n\n");
-! }
-!
-! fprintf(f, "\\end{itemize}\n\n");
-
- fprintf(f,"\\subsection{Resources And Task Assignment}\n\n");
-
- for( rl=reslist; rl!=NULL; rl=rl->next )
---- 579,614 ----
-
- SortMilestones();
-
-! if (Nmilestones > 0) {
-! fprintf(f, "\\subsection{Milestone List}\n\\label{milestones}\n\n");
-!
-! fprintf(f, "\\begin{itemize}\n");
-!
-! for ( i = 0; i < Nmilestones; ++i )
-! {
- m = sorted_milestones[i].milestone;
-!
- fprintf(f, "\\item ");
- if ( milestone_ids )
-! fprintf(f, "%s %s\\\\",
-! TeXFix(buf1,m->id),
-! TeXFix(buf2,m->name));
- else
-! fprintf(f, "%s\\\\",
-! TeXFix(buf2,m->name));
- fprintf(f, " \\emph{%s}\n\n",
- days[m->day].s);
- if ( m->bday != INVALIDDAYNO )
- {
-! fprintf(f, "Baseline\\\\\emph{%s}\n",
-! days[m->bday].s);
- }
- fprintf(f, "\n\n");
-! }
-
-+ fprintf(f, "\\end{itemize}\n\n");
-+ }
-+
- fprintf(f,"\\subsection{Resources And Task Assignment}\n\n");
-
- for( rl=reslist; rl!=NULL; rl=rl->next )
diff --git a/textproc/opensched/files/patch-test__Makefile b/textproc/opensched/files/patch-test__Makefile
deleted file mode 100644
index ef8cda7936dd..000000000000
--- a/textproc/opensched/files/patch-test__Makefile
+++ /dev/null
@@ -1,13 +0,0 @@
-*** test/Makefile.org Wed Jan 31 14:21:51 2001
---- test/Makefile Wed Jan 31 14:22:01 2001
-***************
-*** 14,17 ****
- dvips test -o test.ps
-
- test_gantt_1.eps: test.sched
-! ../opensched test.sched
---- 14,17 ----
- dvips test -o test.ps
-
- test_gantt_1.eps: test.sched
-! ../src/opensched test.sched
diff --git a/textproc/opensched/files/patch-test__test.tex b/textproc/opensched/files/patch-test__test.tex
deleted file mode 100644
index b6aa38331fbf..000000000000
--- a/textproc/opensched/files/patch-test__test.tex
+++ /dev/null
@@ -1,41 +0,0 @@
-*** test/test.tex.org Wed Jan 31 14:26:20 2001
---- test/test.tex Wed Jan 31 14:34:28 2001
-***************
-*** 1,4 ****
-! \documentstyle[rotate,times,12pt,epsf,supertabular]{article}
- \textwidth=7.0in
- \textheight=8.0in
- \oddsidemargin=-0.25in
---- 1,9 ----
-! \documentclass[dvips,12pt]{article}
-! \usepackage{epsfig}
-! \usepackage{supertabular}
-! \usepackage{rotate}
-! \usepackage{float}
-!
- \textwidth=7.0in
- \textheight=8.0in
- \oddsidemargin=-0.25in
-***************
-*** 36,44 ****
-
- \section{GANTT Charts}
-
-! \centerline{
-! \rotate[l]{\epsfxsize=0.95\textheight \epsfbox{test_gantt_1.eps}}
-! }
-
- \end{document}
-
---- 41,51 ----
-
- \section{GANTT Charts}
-
-! \begin{figure}[H]
-! \begin{center}
-! \epsfig{figure=./test_gantt_1.eps,width=8in,angle=270}
-! \end{center}
-! \end{figure}
-
- \end{document}
-