diff options
author | Erwin Lansing <erwin@FreeBSD.org> | 2009-06-15 14:42:15 +0000 |
---|---|---|
committer | Erwin Lansing <erwin@FreeBSD.org> | 2009-06-15 14:42:15 +0000 |
commit | 6c2bab88b879722cfff030c943bfa2ca8c532541 (patch) | |
tree | 90a48930c239c38f3da031b24f00f0e0b5b26e70 /lang/pm3-base/files/patch-eb | |
parent | - Use glib2 instead of obsolete glib1.2 (diff) |
Remove pm3-* and friends as it hasn't been able to build for
over a year.
2008-09-19 lang/pm3-base: Has been broken for more than 6 months
2009-01-19 lang/pm3-forms: depends on broken, expired port
2009-01-19 lang/pm3-gui: depends on broken, expired port
2009-01-19 lang/pm3-m3tk: depends on broken, expired port
2009-01-19 lang/pm3-net: depends on broken, expired port
2009-01-19 lang/pm3-netobj: depends on broken, expired port
graphics/juno-2
Notes
Notes:
svn path=/head/; revision=235873
Diffstat (limited to 'lang/pm3-base/files/patch-eb')
-rw-r--r-- | lang/pm3-base/files/patch-eb | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/lang/pm3-base/files/patch-eb b/lang/pm3-base/files/patch-eb deleted file mode 100644 index e06a6cab9c6c..000000000000 --- a/lang/pm3-base/files/patch-eb +++ /dev/null @@ -1,38 +0,0 @@ ---- language/modula3/m3compiler/m3where/src/Main.m3.orig Mon Jun 7 10:12:38 1999 -+++ language/modula3/m3compiler/m3where/src/Main.m3 Sat Sep 8 14:48:05 2001 -@@ -302,9 +302,10 @@ - m3_template := Env.Get("M3_TEMPLATE_DIR"); - path : TEXT; - subpath : TEXT; -- nextsep : INTEGER := 0; -- prevsep : INTEGER := 0; -+ nextsep : INTEGER; -+ prevsep : INTEGER := -1; - sep : CHAR; -+ filename : TEXT; - BEGIN - IF m3_template # NIL THEN - template_dir := m3_template; -@@ -321,13 +322,17 @@ - REPEAT - nextsep := Text.FindChar(path, sep, prevsep + 1); - IF nextsep # -1 THEN -- subpath := Text.Sub(path, prevsep, nextsep - prevsep - 1); -+ subpath := Text.Sub(path, prevsep + 1, nextsep - prevsep - 1); - ELSE -- subpath := Text.Sub(path, prevsep); -+ subpath := Text.Sub(path, prevsep + 1); - END; -- IF M3File.IsReadable(subpath & template) THEN -- template_dir := subpath; -- RETURN; -+ IF Text.Length(subpath) > 0 THEN -+ filename := subpath & SL & template; -+ IF M3File.IsReadable(filename) AND -+ NOT M3File.IsDirectory(filename) THEN -+ template_dir := subpath; -+ RETURN; -+ END; - END; - prevsep := nextsep; - UNTIL prevsep = -1; |