summaryrefslogtreecommitdiff
path: root/editors/lpe
diff options
context:
space:
mode:
authorMaxim Sobolev <sobomax@FreeBSD.org>2001-12-21 08:34:33 +0000
committerMaxim Sobolev <sobomax@FreeBSD.org>2001-12-21 08:34:33 +0000
commit3f2c56f12bfeb7a3b72f5260d33711938d37667a (patch)
tree52e1527ef31708f7b65b8a75a2176141356f1af1 /editors/lpe
parentRemove obsolete libxpg4-related hunk. This doesn't make any functional (diff)
o Change maintainer to ryan@sasknow.com
o Update lpe from 1.2.5_2 to newest release, 1.2.6 o Update MASTER_SITES, WWW, and author's email to reflect new location o Update/delete patch files for new version: + Bug fix patches corrected by 1.2.6 removed + New bug fix to correct man page language (cz vs. cs) + New bug fix to correct syntax highlighting in some editing modes (New bug fixes have been sent to the author for inclusion in the next official release) PR: 32915 Submitted by: Ryan Thompson <ryan@sasknow.com> Approved by: old maintainer
Notes
Notes: svn path=/head/; revision=51919
Diffstat (limited to 'editors/lpe')
-rw-r--r--editors/lpe/Makefile10
-rw-r--r--editors/lpe/distinfo2
-rw-r--r--editors/lpe/files/patch-af25
-rw-r--r--editors/lpe/files/patch-perlmode.c12
-rw-r--r--editors/lpe/files/patch-sgmlmode.c11
-rw-r--r--editors/lpe/files/patch-src_cfg-core.c14
-rw-r--r--editors/lpe/pkg-descr6
-rw-r--r--editors/lpe/pkg-plist2
8 files changed, 32 insertions, 50 deletions
diff --git a/editors/lpe/Makefile b/editors/lpe/Makefile
index 3a94993dc33a..0f28f86e9eba 100644
--- a/editors/lpe/Makefile
+++ b/editors/lpe/Makefile
@@ -6,14 +6,12 @@
#
PORTNAME= lpe
-PORTVERSION= 1.2.5
-PORTREVISION= 2
+PORTVERSION= 1.2.6
CATEGORIES= editors
-MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} \
- http://cdsmith.twu.net/opensource/lpe/
+MASTER_SITES= ftp://ftp.twu.net/users/cdsmith/lpe/
MASTER_SITE_SUBDIR= ${PORTNAME}
-MAINTAINER= calle.madestrand@norrgarden.se
+MAINTAINER= ryan@sasknow.com
LIB_DEPENDS= slang.1:${PORTSDIR}/devel/libslang \
intl.1:${PORTSDIR}/devel/gettext
@@ -26,6 +24,6 @@ CONFIGURE_ENV= LDFLAGS="-L${PREFIX}/lib -L${LOCALBASE}/lib" \
CONFIGURE_ARGS= --includedir=${LOCALBASE}/include
MAN1= lpe.1
-MANLANG= bg cz de es fr pl ru
+MANLANG= bg cs de es fr pl ru
.include <bsd.port.mk>
diff --git a/editors/lpe/distinfo b/editors/lpe/distinfo
index 357f477934bd..c2773d954590 100644
--- a/editors/lpe/distinfo
+++ b/editors/lpe/distinfo
@@ -1 +1 @@
-MD5 (lpe-1.2.5.tar.gz) = b7d327a9d381621033986fd13f9d30d6
+MD5 (lpe-1.2.6.tar.gz) = 59feaf93bb6b57e8c3b876261b2bcaa3
diff --git a/editors/lpe/files/patch-af b/editors/lpe/files/patch-af
deleted file mode 100644
index 4f1654e58739..000000000000
--- a/editors/lpe/files/patch-af
+++ /dev/null
@@ -1,25 +0,0 @@
---- src/lpe.c Thu Apr 19 02:16:41 2001
-+++ src/lpe.c Thu Apr 19 03:08:30 2001
-@@ -48,13 +48,17 @@
- {
- buffer *node;
-
-- while (the_buf->next != the_buf)
-+ if (the_buf->text != NULL)
- {
-- node = the_buf->next;
-- the_buf->next = the_buf->next->next;
-- the_buf->next->prev = the_buf;
-- free(node);
-+ while (the_buf->next != the_buf)
-+ {
-+ node = the_buf->next;
-+ the_buf->next = the_buf->next->next;
-+ the_buf->next->prev = the_buf;
-+ free(node);
-+ }
- }
-+
- free(the_buf);
- }
-
diff --git a/editors/lpe/files/patch-perlmode.c b/editors/lpe/files/patch-perlmode.c
new file mode 100644
index 000000000000..442c21734ab0
--- /dev/null
+++ b/editors/lpe/files/patch-perlmode.c
@@ -0,0 +1,12 @@
+--- src/modes/perlmode.c.orig Sun Dec 9 16:54:40 2001
++++ src/modes/perlmode.c Sun Dec 9 16:54:56 2001
+@@ -156,7 +156,7 @@
+ mode_util_set_slang_color ( "cmode", "illegal", COLOR_ILLEGAL, COLOR_ILLEGAL_FG, COLOR_ILLEGAL_BG );
+ mode_util_set_slang_color ( "cmode", "debug", COLOR_DEBUG, COLOR_DEBUG_FG, COLOR_DEBUG_BG );
+ mode_util_set_slang_color ( "perlmode", "variable", COLOR_VARIABLE, "brightcyan", "black" );
+- mode_util_set_slang_color ( "perlmode", "shell", COLOR_SHELL, "magneta", "black" );
++ mode_util_set_slang_color ( "perlmode", "shell", COLOR_SHELL, "magenta", "black" );
+ #ifdef HIGHLIGHT_REGEXPS
+- mode_util_set_slang_color ( "perlmode", "regexp", COLOR_REGEXP, "magneta", "black" );
++ mode_util_set_slang_color ( "perlmode", "regexp", COLOR_REGEXP, "magenta", "black" );
+ #endif /* HIGHLIGHT_REGEXPS */
diff --git a/editors/lpe/files/patch-sgmlmode.c b/editors/lpe/files/patch-sgmlmode.c
new file mode 100644
index 000000000000..a276360f6c27
--- /dev/null
+++ b/editors/lpe/files/patch-sgmlmode.c
@@ -0,0 +1,11 @@
+--- src/modes/sgmlmode.c.orig Sun Dec 9 21:23:46 2001
++++ src/modes/sgmlmode.c Sun Dec 9 21:24:16 2001
+@@ -71,7 +71,7 @@
+ mode_util_set_slang_color("sgmlmode", "argument", COLOR_ARGUMENT, "blue", "black" );
+ mode_util_set_slang_color("sgmlmode", "special", COLOR_SPECIAL, "brown", "black" );
+ mode_util_set_slang_color("sgmlmode", "value", COLOR_VALUE, "brightblue", "black" );
+- mode_util_set_slang_color("sgmlmode", "slash_text", COLOR_SLASH_TEXT, "magneta", "black" );
++ mode_util_set_slang_color("sgmlmode", "slash_text", COLOR_SLASH_TEXT, "magenta", "black" );
+ mode_util_set_slang_color("sgmlmode", "symbol", COLOR_SYMBOL, COLOR_SYMBOL_FG, COLOR_SYMBOL_BG );
+ mode_util_set_slang_color("sgmlmode", "brace", COLOR_BRACE, COLOR_BRACE_FG, COLOR_BRACE_BG );
+ mode_util_set_slang_color("sgmlmode", "illegal", COLOR_ILLEGAL, COLOR_ILLEGAL_FG, COLOR_ILLEGAL_BG );
diff --git a/editors/lpe/files/patch-src_cfg-core.c b/editors/lpe/files/patch-src_cfg-core.c
deleted file mode 100644
index f8c556701519..000000000000
--- a/editors/lpe/files/patch-src_cfg-core.c
+++ /dev/null
@@ -1,14 +0,0 @@
-
-$FreeBSD$
-
---- src/cfg-core.c 2001/04/08 15:27:13 1.1
-+++ src/cfg-core.c 2001/04/08 15:27:39
-@@ -62,7 +62,7 @@
- /*
- * We search for "\n[name]=" in the lookup table...
- */
-- t_sstring = (char *) malloc (strlen (name) + 5);
-+ t_sstring = (char *) alloca (strlen (name) + 5);
- sprintf (t_sstring, "\n%s=", name);
- if ((t_hentry = strstr (LpeOptionHash, t_sstring)) != NULL)
- {
diff --git a/editors/lpe/pkg-descr b/editors/lpe/pkg-descr
index ec45efeac34c..0e60c28affd3 100644
--- a/editors/lpe/pkg-descr
+++ b/editors/lpe/pkg-descr
@@ -3,7 +3,7 @@ via plug-in modules for C, C++, perl, html, sgml and more.
Author: Chris Smith <cd_smith@ou.edu>
-WWW: http://cdsmith.twu.net/opensource/lpe/
+WWW: http://cdsmith.twu.net/professional/opensource/lpe.html
--Chris Piazza
-cpiazza@FreeBSD.org
+-Ryan Thompson
+ryan@sasknow.com
diff --git a/editors/lpe/pkg-plist b/editors/lpe/pkg-plist
index 2bb1e0881bcb..6ed2047c09ab 100644
--- a/editors/lpe/pkg-plist
+++ b/editors/lpe/pkg-plist
@@ -18,7 +18,7 @@ share/doc/lpe/README
share/doc/lpe/TODO
share/doc/lpe/examples/custom.ex
share/locale/bg/LC_MESSAGES/lpe.mo
-share/locale/cz/LC_MESSAGES/lpe.mo
+share/locale/cs/LC_MESSAGES/lpe.mo
share/locale/de/LC_MESSAGES/lpe.mo
share/locale/es/LC_MESSAGES/lpe.mo
share/locale/fr/LC_MESSAGES/lpe.mo