svn commit: r364261 - in head/deskutils: . vit
Pietro Cerutti
gahr at FreeBSD.org
Thu Aug 7 10:35:09 UTC 2014
Author: gahr
Date: Thu Aug 7 10:35:08 2014
New Revision: 364261
URL: http://svnweb.freebsd.org/changeset/ports/364261
QAT: https://qat.redports.org/buildarchive/r364261/
Log:
- New port: deskutils/vit
VIT (Visual Interactive Taskwarrior) is a lightweight, curses-based front end
for Taskwarrior that provides a convenient way to quickly navigate and process
tasks. VIT allows you to interact with tasks in a Vi-intuitive way. A goal of
VIT is to allow you to customize the way in which you use Taskwarrior's core
commands as well as to provide a framework for easily dispatching external
commands (both user scripts and Taskwarrior's many External Scripts).
WWW: http://tasktools.org/projects/vit.html
Added:
head/deskutils/vit/
head/deskutils/vit/Makefile (contents, props changed)
head/deskutils/vit/distinfo (contents, props changed)
head/deskutils/vit/pkg-descr (contents, props changed)
Modified:
head/deskutils/Makefile
Modified: head/deskutils/Makefile
==============================================================================
--- head/deskutils/Makefile Thu Aug 7 10:30:30 2014 (r364260)
+++ head/deskutils/Makefile Thu Aug 7 10:35:08 2014 (r364261)
@@ -235,6 +235,7 @@
SUBDIR += tuxcards
SUBDIR += vboxgtk
SUBDIR += virt-manager
+ SUBDIR += vit
SUBDIR += vnc2flv
SUBDIR += vym
SUBDIR += wammu
Added: head/deskutils/vit/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/deskutils/vit/Makefile Thu Aug 7 10:35:08 2014 (r364261)
@@ -0,0 +1,39 @@
+# Created by: gahr
+# $FreeBSD$
+
+PORTNAME= vit
+PORTVERSION= 1.2
+CATEGORIES= deskutils
+MASTER_SITES= http://taskwarrior.org/download/
+
+MAINTAINER= gahr at FreeBSD.org
+COMMENT= Curses-based interface to taskwarrior
+
+LICENSE= GPLv3
+
+RUN_DEPENDS= p5-Curses>=0:${PORTSDIR}/devel/p5-Curses \
+ p5-Time-HiRes>=0:${PORTSDIR}/devel/p5-Time-HiRes \
+ task:${PORTSDIR}/deskutils/taskwarrior
+BUILD_DEPENDS:= ${RUN_DEPENDS}
+
+USES= perl5 shebangfix
+SHEBANG_FILES= vit.pl
+GNU_CONFIGURE= yes
+ALL_TARGET= build
+
+PLIST_FILES= bin/vit \
+ etc/vit-commands \
+ man/man1/vit.1.gz \
+ man/man5/vitrc.5.gz
+
+post-patch:
+ ${REINPLACE_CMD} -e '1774,1778d' \
+ ${WRKSRC}/${CONFIGURE_SCRIPT}
+
+do-install:
+ ${INSTALL_SCRIPT} ${WRKSRC}/vit ${STAGEDIR}${PREFIX}/bin
+ ${INSTALL_DATA} ${WRKSRC}/commands ${STAGEDIR}${PREFIX}/etc/vit-commands
+ ${INSTALL_MAN} ${WRKSRC}/vit.1 ${STAGEDIR}${PREFIX}/man/man1
+ ${INSTALL_MAN} ${WRKSRC}/vitrc.5 ${STAGEDIR}${PREFIX}/man/man5
+
+.include <bsd.port.mk>
Added: head/deskutils/vit/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/deskutils/vit/distinfo Thu Aug 7 10:35:08 2014 (r364261)
@@ -0,0 +1,2 @@
+SHA256 (vit-1.2.tar.gz) = a78dee573130c8d6bc92cf60fafac0abc78dd2109acfba587cb0ae202ea5bbd0
+SIZE (vit-1.2.tar.gz) = 48729
Added: head/deskutils/vit/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/deskutils/vit/pkg-descr Thu Aug 7 10:35:08 2014 (r364261)
@@ -0,0 +1,8 @@
+VIT (Visual Interactive Taskwarrior) is a lightweight, curses-based front end
+for Taskwarrior that provides a convenient way to quickly navigate and process
+tasks. VIT allows you to interact with tasks in a Vi-intuitive way. A goal of
+VIT is to allow you to customize the way in which you use Taskwarrior's core
+commands as well as to provide a framework for easily dispatching external
+commands (both user scripts and Taskwarrior's many External Scripts).
+
+WWW: http://tasktools.org/projects/vit.html
More information about the svn-ports-all
mailing list