Date: Thu, 27 Jan 2000 23:15:29 -0500 (EST) From: brett@peloton.runet.edu To: FreeBSD-gnats-submit@freebsd.org Subject: ports/16414: update of cooledit port Message-ID: <200001280415.XAA16587@peloton.runet.edu>
next in thread | raw e-mail | index | archive | help
>Number: 16414 >Category: ports >Synopsis: update of cooledit port to latest greatest version >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Jan 27 20:20:00 PST 2000 >Closed-Date: >Last-Modified: >Originator: Brett Taylor >Release: FreeBSD 3.4-STABLE i386 >Organization: Radford University >Environment: FreeBSD 3.4-STABLE #0: Fri Jan 7 10:58:02 EST 2000 >Description: I've been slack in updating this port. I've updated cooledit to the latest so that it can be package-ified for 4.0-RELEASE and so I stop getting unfetchable distfile reminders. :-) >How-To-Repeat: apply diff below >Fix: diff -ruN cooledit.orig/Makefile cooledit/Makefile --- cooledit.orig/Makefile Wed Sep 8 23:03:17 1999 +++ cooledit/Makefile Wed Jan 26 18:30:20 2000 @@ -6,7 +6,7 @@ # $FreeBSD: ports/editors/cooledit/Makefile,v 1.18 1999/09/09 03:03:17 cpiazza Exp $ # -DISTNAME= cooledit-3.11.3 +DISTNAME= cooledit-3.12.0 CATEGORIES= editors MASTER_SITES= ${MASTER_SITE_SUNSITE} \ http://www.netins.net/showcase/Comput-IT/cooledit/src/ diff -ruN cooledit.orig/files/md5 cooledit/files/md5 --- cooledit.orig/files/md5 Thu Jul 8 13:40:59 1999 +++ cooledit/files/md5 Wed Jan 26 18:33:56 2000 @@ -1 +1 @@ -MD5 (cooledit-3.11.3.tar.gz) = ea0f8aa393d1a77c76c0d7f2ffd358b7 +MD5 (cooledit-3.12.0.tar.gz) = 6071b98029c366e7d42e08ccafc71949 diff -ruN cooledit.orig/patches/patch-ae cooledit/patches/patch-ae --- cooledit.orig/patches/patch-ae Tue Jun 8 20:05:14 1999 +++ cooledit/patches/patch-ae Wed Jan 26 18:35:45 2000 @@ -1,5 +1,5 @@ ---- syntax/Makefile.in.orig Mon Jun 7 15:12:47 1999 -+++ syntax/Makefile.in Mon Jun 7 15:15:31 1999 +--- syntax/Makefile.in.orig Tue Nov 30 02:34:36 1999 ++++ syntax/Makefile.in Wed Jan 26 18:35:05 2000 @@ -99,7 +99,7 @@ VERSION = @VERSION@ l = @l@ @@ -7,5 +7,5 @@ -syntaxdir = $(libdir)/cooledit/syntax +syntaxdir = $(datadir)/cooledit/syntax - syntax_DATA = c.syntax changelog.syntax diff.syntax diffc.syntax html.syntax java.syntax latex.syntax lsm.syntax makefile.syntax ml.syntax nroff.syntax pascal.syntax perl.syntax python.syntax sh.syntax smalltalk.syntax texinfo.syntax unknown.syntax swig.syntax + syntax_DATA = c.syntax changelog.syntax diff.syntax diffc.syntax html.syntax java.syntax latex.syntax lsm.syntax makefile.syntax ml.syntax nroff.syntax pascal.syntax perl.syntax python.syntax sh.syntax smalltalk.syntax texinfo.syntax unknown.syntax swig.syntax mail.syntax ada95.syntax diff -ruN cooledit.orig/patches/patch-af cooledit/patches/patch-af --- cooledit.orig/patches/patch-af Thu Jul 8 13:40:59 1999 +++ cooledit/patches/patch-af Wed Jan 26 18:36:47 2000 @@ -1,6 +1,6 @@ ---- widget/syntax.c.orig Fri Jun 11 16:24:41 1999 -+++ widget/syntax.c Sat Jun 12 08:30:33 1999 -@@ -729,7 +729,7 @@ +--- widget/syntax.c.orig Tue Nov 30 02:34:27 1999 ++++ widget/syntax.c Wed Jan 26 18:36:26 2000 +@@ -590,7 +590,7 @@ f = fopen (p, "r"); if (f) return f; @@ -8,4 +8,4 @@ + strcpy (p, DATADIR "/cooledit/syntax/"); strcat (p, filename); syntax_free (error_file_name); - error_file_name = strdup (p); + error_file_name = (char *) strdup (p); diff -ruN cooledit.orig/patches/patch-ah cooledit/patches/patch-ah --- cooledit.orig/patches/patch-ah Thu Jul 8 13:41:00 1999 +++ cooledit/patches/patch-ah Thu Jan 27 23:00:51 2000 @@ -1,15 +1,15 @@ ---- editor/coolpython.c.orig Fri Jun 11 16:24:42 1999 -+++ editor/coolpython.c Sat Jun 12 08:30:33 1999 -@@ -1485,7 +1485,7 @@ +--- editor/coolpython.c.orig Thu Jan 27 22:59:34 2000 ++++ editor/coolpython.c Thu Jan 27 23:00:34 2000 +@@ -1487,7 +1487,7 @@ PyDict_SetItemString (d, "Mod3Mask", PyInt_FromLong ((long) Mod3Mask)); PyDict_SetItemString (d, "Mod4Mask", PyInt_FromLong ((long) Mod4Mask)); PyDict_SetItemString (d, "Mod5Mask", PyInt_FromLong ((long) Mod5Mask)); - PyDict_SetItemString (d, "LIBDIR", PyString_FromString (LIBDIR)); + PyDict_SetItemString (d, "DATADIR", PyString_FromString (DATADIR)); - } - void coolpython_run_file (char *filename) -@@ -1544,7 +1544,7 @@ + PyDict_SetItemString (d, "Mod5Mask", PyInt_FromLong ((long) Mod5Mask)); + +@@ -1569,7 +1569,7 @@ import sys\n\ sys.path.append('%s')\n\ sys.path.append('%s%s')\n\ @@ -18,7 +18,7 @@ e = PyRun_String (s, Py_file_input, name_space, name_space); if (!e) { PyErr_Print (); -@@ -1553,7 +1553,7 @@ +@@ -1578,7 +1578,7 @@ } Py_DECREF (e); coolpython_constants (name_space); diff -ruN cooledit.orig/pkg/PLIST cooledit/pkg/PLIST --- cooledit.orig/pkg/PLIST Fri Jun 11 13:03:21 1999 +++ cooledit/pkg/PLIST Thu Jan 27 23:09:57 2000 @@ -16,6 +16,7 @@ @exec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -m %B @unexec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -R share/cooledit/global.py +share/cooledit/syntax/ada95.syntax share/cooledit/syntax/c.syntax share/cooledit/syntax/changelog.syntax share/cooledit/syntax/diff.syntax @@ -24,6 +25,7 @@ share/cooledit/syntax/java.syntax share/cooledit/syntax/latex.syntax share/cooledit/syntax/lsm.syntax +share/cooledit/syntax/mail.syntax share/cooledit/syntax/makefile.syntax share/cooledit/syntax/ml.syntax share/cooledit/syntax/nroff.syntax >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200001280415.XAA16587>