diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2007-01-27 13:18:02 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2007-01-27 13:18:02 +0000 |
commit | 1ea214c56fb5409ee7eee484bd2fb4c6153ae604 (patch) | |
tree | 80dce58680dcb7b259cedd56b4650ee355fbf0ac /devel/devtodo | |
parent | 18b29611e75cb168c2f0b7c3dc453b88367e8a49 (diff) |
Notes
Diffstat (limited to 'devel/devtodo')
-rw-r--r-- | devel/devtodo/Makefile | 2 | ||||
-rw-r--r-- | devel/devtodo/files/patch-Todo.h | 11 | ||||
-rw-r--r-- | devel/devtodo/files/patch-TodoDB.h | 11 |
3 files changed, 23 insertions, 1 deletions
diff --git a/devel/devtodo/Makefile b/devel/devtodo/Makefile index 09e7d9436e71..fb868ce39c80 100644 --- a/devel/devtodo/Makefile +++ b/devel/devtodo/Makefile @@ -10,7 +10,7 @@ PORTVERSION= 0.1.19 CATEGORIES= devel MASTER_SITES= http://swapoff.org/files/devtodo/ -MAINTAINER= ports@FreeBSD.org +MAINTAINER= pav@FreeBSD.org COMMENT= Tool to effectively maintain todo lists aimed at developers GNU_CONFIGURE= yes diff --git a/devel/devtodo/files/patch-Todo.h b/devel/devtodo/files/patch-Todo.h new file mode 100644 index 000000000000..f8e43a8de29b --- /dev/null +++ b/devel/devtodo/files/patch-Todo.h @@ -0,0 +1,11 @@ +--- src/Todo.h.orig Fri Sep 3 11:35:13 2004 ++++ src/Todo.h Sat Jan 27 14:10:54 2007 +@@ -14,6 +14,8 @@ + 01/02/01 Initial creation + */ + ++class TodoDB; ++ + class Todo { + public : + friend class TodoDB; diff --git a/devel/devtodo/files/patch-TodoDB.h b/devel/devtodo/files/patch-TodoDB.h new file mode 100644 index 000000000000..44bba33a9fbb --- /dev/null +++ b/devel/devtodo/files/patch-TodoDB.h @@ -0,0 +1,11 @@ +--- src/TodoDB.h.orig Fri Sep 3 11:35:14 2004 ++++ src/TodoDB.h Sat Jan 27 14:11:37 2007 +@@ -108,7 +108,7 @@ + void initColour(); + void initColourPost(); + Todo::Priority getPriority(string current = ""); +- int TodoDB::markDone(Todo &todo); ++ int markDone(Todo &todo); + + void formatItem(ostream &out, int depth, Todo const &item, string const &format); + |