View | Details | Raw Unified | Return to bug 224340 | Differences between
and this patch

Collapse All | Expand All

(-)editors/dte/Makefile (+35 lines)
Line 0 Link Here
1
# $FreeBSD$
2
3
PORTNAME=	dte
4
DISTVERSIONPREFIX=	v
5
DISTVERSION=	1.5
6
CATEGORIES=	editors
7
8
MAINTAINER=	dg@syrec.org
9
COMMENT=	Small and easy to use console text editor
10
11
LICENSE=	GPLv2
12
LICENSE_FILE=	${WRKSRC}/LICENSE
13
14
USES=		gmake ncurses iconv
15
MAKEFILE=	${WRKSRC}/GNUmakefile
16
MAKE_ARGS=	V=1 prefix=${PREFIX} mandir=${PREFIX}/man
17
USE_GITHUB=	yes
18
GH_ACCOUNT=	craigbarnes
19
TEST_TARGET=	check
20
21
PLIST_FILES=	bin/dte \
22
		man/man1/dte.1.gz \
23
		man/man5/dte-syntax.5.gz \
24
		man/man5/dterc.5.gz \
25
26
PORTDOCS=	README.md
27
28
OPTIONS_DEFINE=	DOCS
29
30
post-install:
31
	${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/dte
32
	@${MKDIR} ${STAGEDIR}${DOCSDIR}
33
	${INSTALL_MAN} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR}
34
35
.include <bsd.port.mk>
(-)editors/dte/distinfo (+3 lines)
Line 0 Link Here
1
TIMESTAMP = 1513255480
2
SHA256 (craigbarnes-dte-v1.5_GH0.tar.gz) = a59a52bac1d7400c10a13f9b1f45c584efb90bd7315f59b70445498abed889ca
3
SIZE (craigbarnes-dte-v1.5_GH0.tar.gz) = 223623
(-)editors/dte/files/patch-config_binding_default (+10 lines)
Line 0 Link Here
1
--- config/binding/default.orig	2017-12-14 13:44:20 UTC
2
+++ config/binding/default
3
@@ -9,6 +9,7 @@ bind pgdown pgdown
4
 bind delete delete
5
 bind ^\[ unselect
6
 bind ^\? erase
7
+bind ^H erase
8
 
9
 bind C-left 'word-bwd -s'
10
 bind C-right 'word-fwd -s'
(-)editors/dte/pkg-descr (+13 lines)
Line 0 Link Here
1
A small and easy to use console text editor, featuring
2
3
  - Multiple buffers/tabs
4
  - Unlimited undo/redo
5
  - Search and replace
6
  - Syntax highlighting
7
  - Customizable color schemes
8
  - Customizable key bindings
9
  - Command language with auto-completion
10
  - Jump to definition (using ctags)
11
  - Jump to compiler error
12
13
WWW: https://craigbarnes.gitlab.io/dte/

Return to bug 224340