diff options
author | mef <mef@pkgsrc.org> | 2020-06-21 04:09:24 +0000 |
---|---|---|
committer | mef <mef@pkgsrc.org> | 2020-06-21 04:09:24 +0000 |
commit | b0424483864ce49f24c3e2ac4a39fdd00a7f2a37 (patch) | |
tree | cb2b32ce19ab402e939400d980d95e70a62d1385 /editors | |
parent | 031ef27de19f574f648738e9c32f8e080da8e376 (diff) | |
download | pkgsrc-b0424483864ce49f24c3e2ac4a39fdd00a7f2a37.tar.gz |
(editors/fe) Updated 1.9
(pkgsrc)
- Silence pkglint, LICENSE (gnu-gpl-v1), add comment on patches
(upstream)
The following things were changed compared to version 1.8:
o Look for <ncurses/ncurses.h>, as used by Cygwin.
o Use LC_CTYPE to determine printable characters and display
unprintable characters as \xx, not as M-chr.
o Allow M-. instead of C-space and C-x . instead of M-C-@.
o Accept +line as option to jump to a specific line besides -l line.
Diffstat (limited to 'editors')
-rw-r--r-- | editors/fe/Makefile | 6 | ||||
-rw-r--r-- | editors/fe/distinfo | 14 | ||||
-rw-r--r-- | editors/fe/patches/patch-aa | 17 | ||||
-rw-r--r-- | editors/fe/patches/patch-ab | 5 |
4 files changed, 25 insertions, 17 deletions
diff --git a/editors/fe/Makefile b/editors/fe/Makefile index 77075fa10a8..0cc4f452cc7 100644 --- a/editors/fe/Makefile +++ b/editors/fe/Makefile @@ -1,13 +1,13 @@ -# $NetBSD: Makefile,v 1.15 2015/08/18 07:31:06 wiz Exp $ +# $NetBSD: Makefile,v 1.16 2020/06/21 04:09:24 mef Exp $ -DISTNAME= fe-1.8 -PKGREVISION= 2 +DISTNAME= fe-1.9 CATEGORIES= editors MASTER_SITES= http://www.moria.de/~michael/fe/ MAINTAINER= pkgsrc-users@NetBSD.org HOMEPAGE= http://www.moria.de/~michael/fe/ COMMENT= Folding editor +LICENSE= gnu-gpl-v1 GNU_CONFIGURE= yes USE_TOOLS+= msgfmt diff --git a/editors/fe/distinfo b/editors/fe/distinfo index ab080426321..a46d11356cb 100644 --- a/editors/fe/distinfo +++ b/editors/fe/distinfo @@ -1,8 +1,8 @@ -$NetBSD: distinfo,v 1.4 2015/11/03 03:32:16 agc Exp $ +$NetBSD: distinfo,v 1.5 2020/06/21 04:09:24 mef Exp $ -SHA1 (fe-1.8.tar.gz) = b956e5e4c9c9bc925903d0c0b6de0b7b829fcce6 -RMD160 (fe-1.8.tar.gz) = a3d186dbc042fe74fbfdc8e83d6237a50fea692d -SHA512 (fe-1.8.tar.gz) = c00f23769193b8b74867da32e7424ecb7f807a0186c8f91cd007f83a543777e1ca70909ee17a54ac8e7da743cd3fcb6b0e8cdd6d2fefbfb6766122ade125893b -Size (fe-1.8.tar.gz) = 169151 bytes -SHA1 (patch-aa) = 3686219a0f3fac572772344718384cf06cf5baba -SHA1 (patch-ab) = 4b72dbe1eabfdb7f65c20f9d2db03950c636f97c +SHA1 (fe-1.9.tar.gz) = 0b288c2c11351548f5bfb5c0255dc79656182854 +RMD160 (fe-1.9.tar.gz) = 4aef68638cacc7e4e12c7fb8808d59a8bf56e2f6 +SHA512 (fe-1.9.tar.gz) = 38121a21c1539ff8ad4f61b92ddfd0582c100f1bc1c5524faf7a60a162c5f8a0b2d1528da7719e522e9b75a527166223c2636f78c9f516abbb33434a9f6e6251 +Size (fe-1.9.tar.gz) = 178678 bytes +SHA1 (patch-aa) = 20c0e2e3f6685b00188b0a78577bfb7f0cf57a20 +SHA1 (patch-ab) = ffd6a6ed87d8567a04835c2098afb022bf2f2eb0 diff --git a/editors/fe/patches/patch-aa b/editors/fe/patches/patch-aa index 1245d668460..156f2b154dd 100644 --- a/editors/fe/patches/patch-aa +++ b/editors/fe/patches/patch-aa @@ -1,12 +1,17 @@ -$NetBSD: patch-aa,v 1.2 2008/01/12 04:17:38 bjs Exp $ +$NetBSD: patch-aa,v 1.3 2020/06/21 04:09:24 mef Exp $ ---- configure.orig 2007-09-12 09:58:44.000000000 -0400 +date: 2007-01-31 08:52:53 +0900; author: wiz; state: Exp; +Second try at fixing the bulk build of this package -- +let the curses test always succeed. + +--- configure.orig 2011-03-04 19:05:52.000000000 +0000 +++ configure -@@ -3170,6 +3170,7 @@ fi - +@@ -3294,6 +3294,8 @@ rm -f core *.core core.conftest.* gmon.o + fi LIBS=$ORIG_LIBS +curses_ok=yes ++ if test "$curses_ok" = yes; then - { echo "$as_me:$LINENO: checking for modern curses without raw() bug" >&5 - echo $ECHO_N "checking for modern curses without raw() bug... $ECHO_C" >&6; } + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for modern curses without raw() bug" >&5 + $as_echo_n "checking for modern curses without raw() bug... " >&6; } diff --git a/editors/fe/patches/patch-ab b/editors/fe/patches/patch-ab index f53f6aff283..b20e01f564d 100644 --- a/editors/fe/patches/patch-ab +++ b/editors/fe/patches/patch-ab @@ -1,4 +1,7 @@ -$NetBSD: patch-ab,v 1.1 2008/01/12 04:17:38 bjs Exp $ +$NetBSD: patch-ab,v 1.2 2020/06/21 04:09:24 mef Exp $ + +Update to version 1.8. This version adds folding for C++ programs. +While here, add user-destdir support. --- Makefile.in.orig 2007-08-31 14:47:09.000000000 -0400 +++ Makefile.in |