Add a port of TuDu, a command line (curses) program to manage hierarchical
"todo" lists. PR: 198722
This commit is contained in:
parent
f9b1cecaea
commit
11126a6604
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=399971
5 changed files with 37 additions and 0 deletions
|
@ -442,6 +442,7 @@
|
|||
SUBDIR += tpp
|
||||
SUBDIR += translate
|
||||
SUBDIR += ttyrec
|
||||
SUBDIR += tudu
|
||||
SUBDIR += tvbrowser
|
||||
SUBDIR += typetrainer
|
||||
SUBDIR += uk-phone
|
||||
|
|
23
misc/tudu/Makefile
Normal file
23
misc/tudu/Makefile
Normal file
|
@ -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>
|
2
misc/tudu/distinfo
Normal file
2
misc/tudu/distinfo
Normal file
|
@ -0,0 +1,2 @@
|
|||
SHA256 (tudu-0.10.tar.gz) = a40f420eb08fc3b4fe3c75abc9ef3eeddf32e20ff893d17d530f020b0be4e114
|
||||
SIZE (tudu-0.10.tar.gz) = 61199
|
6
misc/tudu/pkg-descr
Normal file
6
misc/tudu/pkg-descr
Normal file
|
@ -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/
|
5
misc/tudu/pkg-plist
Normal file
5
misc/tudu/pkg-plist
Normal file
|
@ -0,0 +1,5 @@
|
|||
bin/tudu
|
||||
@sample etc/tudurc.sample
|
||||
man/man1/tudu.1.gz
|
||||
%%DATADIR%%/tudu.dtd
|
||||
%%DATADIR%%/welcome.xml
|
Loading…
Reference in a new issue