Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 22 Oct 2015 13:05:55 +0000 (UTC)
From:      Alexey Dokuchaev <danfe@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r399971 - in head/misc: . tudu
Message-ID:  <201510221305.t9MD5t4f090749@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: danfe
Date: Thu Oct 22 13:05:55 2015
New Revision: 399971
URL: https://svnweb.freebsd.org/changeset/ports/399971

Log:
  Add a port of TuDu, a command line (curses) program to manage hierarchical
  "todo" lists.
  
  PR:	198722

Added:
  head/misc/tudu/
  head/misc/tudu/Makefile   (contents, props changed)
  head/misc/tudu/distinfo   (contents, props changed)
  head/misc/tudu/pkg-descr   (contents, props changed)
  head/misc/tudu/pkg-plist   (contents, props changed)
Modified:
  head/misc/Makefile

Modified: head/misc/Makefile
==============================================================================
--- head/misc/Makefile	Thu Oct 22 12:41:35 2015	(r399970)
+++ head/misc/Makefile	Thu Oct 22 13:05:55 2015	(r399971)
@@ -442,6 +442,7 @@
     SUBDIR += tpp
     SUBDIR += translate
     SUBDIR += ttyrec
+    SUBDIR += tudu
     SUBDIR += tvbrowser
     SUBDIR += typetrainer
     SUBDIR += uk-phone

Added: head/misc/tudu/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/misc/tudu/Makefile	Thu Oct 22 13:05:55 2015	(r399971)
@@ -0,0 +1,23 @@
+# Created by: mp39590@gmail.com
+# $FreeBSD$
+
+PORTNAME=	tudu
+PORTVERSION=	0.10
+CATEGORIES=	misc
+MASTER_SITES=	http://code.meskio.net/tudu/
+
+MAINTAINER=	mp39590@gmail.com
+COMMENT=	Command line program for managing "todo" lists
+
+LICENSE=	GPLv3
+
+USES=		ncurses
+GNU_CONFIGURE=	yes
+
+post-patch:
+	@${REINPLACE_CMD} -E 's|cd (.+) && (\$$\{MAKE\})|\2 -C \1|' \
+		${WRKSRC}/Makefile.acr
+	@${REINPLACE_CMD} -e '/tudurc/s,SYSCONFDIR),&/tudurc.sample,' \
+		${WRKSRC}/data/Makefile.acr
+
+.include <bsd.port.mk>

Added: head/misc/tudu/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/misc/tudu/distinfo	Thu Oct 22 13:05:55 2015	(r399971)
@@ -0,0 +1,2 @@
+SHA256 (tudu-0.10.tar.gz) = a40f420eb08fc3b4fe3c75abc9ef3eeddf32e20ff893d17d530f020b0be4e114
+SIZE (tudu-0.10.tar.gz) = 61199

Added: head/misc/tudu/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/misc/tudu/pkg-descr	Thu Oct 22 13:05:55 2015	(r399971)
@@ -0,0 +1,6 @@
+TuDu is a command line tool to manage hierarchical "todo" lists.  Each
+task has a title, a long text description, a deadline (TuDu warns you
+when the date is close), and a scheduled date.  There are categories
+and priorities.
+
+WWW: http://code.meskio.net/tudu/

Added: head/misc/tudu/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/misc/tudu/pkg-plist	Thu Oct 22 13:05:55 2015	(r399971)
@@ -0,0 +1,5 @@
+bin/tudu
+@sample etc/tudurc.sample
+man/man1/tudu.1.gz
+%%DATADIR%%/tudu.dtd
+%%DATADIR%%/welcome.xml



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201510221305.t9MD5t4f090749>