From owner-svn-ports-all@freebsd.org Mon Dec 18 22:52:23 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 129DCE8F916; Mon, 18 Dec 2017 22:52:23 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D85CE7535D; Mon, 18 Dec 2017 22:52:22 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id vBIMqLE7054422; Mon, 18 Dec 2017 22:52:21 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vBIMqLeL054417; Mon, 18 Dec 2017 22:52:21 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201712182252.vBIMqLeL054417@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Mon, 18 Dec 2017 22:52:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r456692 - in head/editors: . dte dte/files X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/editors: . dte dte/files X-SVN-Commit-Revision: 456692 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Dec 2017 22:52:23 -0000 Author: yuri Date: Mon Dec 18 22:52:21 2017 New Revision: 456692 URL: https://svnweb.freebsd.org/changeset/ports/456692 Log: New port: editors/dte: Small and easy to use console text editor PR: 224340 Submitted by: Dmitri Goutnik Approved by: adamw (mentor) Differential Revision: https://reviews.freebsd.org/D13498 Added: head/editors/dte/ head/editors/dte/Makefile (contents, props changed) head/editors/dte/distinfo (contents, props changed) head/editors/dte/files/ head/editors/dte/files/patch-config_binding_default (contents, props changed) head/editors/dte/pkg-descr (contents, props changed) Modified: head/editors/Makefile Modified: head/editors/Makefile ============================================================================== --- head/editors/Makefile Mon Dec 18 22:43:44 2017 (r456691) +++ head/editors/Makefile Mon Dec 18 22:52:21 2017 (r456692) @@ -29,6 +29,7 @@ SUBDIR += dkns SUBDIR += dlangide SUBDIR += drjava + SUBDIR += dte SUBDIR += e3 SUBDIR += ecce SUBDIR += edith Added: head/editors/dte/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/editors/dte/Makefile Mon Dec 18 22:52:21 2017 (r456692) @@ -0,0 +1,35 @@ +# $FreeBSD$ + +PORTNAME= dte +DISTVERSIONPREFIX= v +DISTVERSION= 1.5 +CATEGORIES= editors + +MAINTAINER= dg@syrec.org +COMMENT= Small and easy to use console text editor + +LICENSE= GPLv2 +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= iconv gmake ncurses +MAKEFILE= ${WRKSRC}/GNUmakefile +MAKE_ARGS= V=1 prefix=${PREFIX} mandir=${PREFIX}/man +USE_GITHUB= yes +GH_ACCOUNT= craigbarnes +TEST_TARGET= check + +PLIST_FILES= bin/dte \ + man/man1/dte.1.gz \ + man/man5/dte-syntax.5.gz \ + man/man5/dterc.5.gz \ + +PORTDOCS= README.md + +OPTIONS_DEFINE= DOCS + +post-install: + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/dte + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_MAN} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR} + +.include Added: head/editors/dte/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/editors/dte/distinfo Mon Dec 18 22:52:21 2017 (r456692) @@ -0,0 +1,3 @@ +TIMESTAMP = 1513255480 +SHA256 (craigbarnes-dte-v1.5_GH0.tar.gz) = a59a52bac1d7400c10a13f9b1f45c584efb90bd7315f59b70445498abed889ca +SIZE (craigbarnes-dte-v1.5_GH0.tar.gz) = 223623 Added: head/editors/dte/files/patch-config_binding_default ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/editors/dte/files/patch-config_binding_default Mon Dec 18 22:52:21 2017 (r456692) @@ -0,0 +1,10 @@ +--- config/binding/default.orig 2017-12-14 13:44:20 UTC ++++ config/binding/default +@@ -9,6 +9,7 @@ bind pgdown pgdown + bind delete delete + bind ^\[ unselect + bind ^\? erase ++bind ^H erase + + bind C-left 'word-bwd -s' + bind C-right 'word-fwd -s' Added: head/editors/dte/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/editors/dte/pkg-descr Mon Dec 18 22:52:21 2017 (r456692) @@ -0,0 +1,13 @@ +A small and easy to use console text editor, featuring + + - Multiple buffers/tabs + - Unlimited undo/redo + - Search and replace + - Syntax highlighting + - Customizable color schemes + - Customizable key bindings + - Command language with auto-completion + - Jump to definition (using ctags) + - Jump to compiler error + +WWW: https://craigbarnes.gitlab.io/dte/