pkgsrc/time/devtodo/Makefile
rillig 4b99e3b3f6 Updated devtodo to 0.1.20.
0.1.20
- A few bugfixes.
- Added XML declaration parsing/saving. This is a stop-gap at best, but will
  hopefully be useful to some.
- Removed reliance on builtin regex library. Hopefully the completely broken
  version of glibc that instigated the inclusion of it is now out of
  circulation.
- Fixed a whole bunch of compiler warnings on more recent GCC versions.
- --not-done now marks sub-tasks as not done. Thanks to an anonymous
  user for picking this up.

0.1.19
- Updated my E-Mail address after about a year of having the wrong one :)
- Removed informational message at top of .todo files as it was rather useless
  and actually annoying to some people placing their .todo files under version
  control systems.
- Added a XSLT -> XHTML+CSS transform from Francesco Poli.
- Added a bash completion script from the Gentoo projects maintainer Aaron
  Walker.
- Fixed seg fault visible on 64-bit systems but present on all. Thanks to the
  Debian project for notifying me and providing a fix.
2007-12-01 16:52:09 +00:00

38 lines
908 B
Makefile

# $NetBSD: Makefile,v 1.26 2007/12/01 16:52:09 rillig Exp $
DISTNAME= devtodo-0.1.20
CATEGORIES= time
MASTER_SITES= http://swapoff.org/files/devtodo/
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://swapoff.org/DevTodo
COMMENT= Display and manage a list of items that are outstanding
USE_LANGUAGES= c c++
USE_LIBTOOL= YES
GNU_CONFIGURE= YES
# We don't need curses, just termcap.
CONFIGURE_ENV+= ac_cv_lib_curses_tputs=no
USE_GNU_READLINE= # uses rl_startup_hook()
CONTRIBFILES= changelog2html \
changelog2todo \
tdrec \
todo-nodone-html.xslt \
todo2html-2.xslt \
todo2html.xslt \
todo2pdf.README \
todo2pdf.sh \
todo2pdf.xslt
post-install:
.for CFILE in ${CONTRIBFILES}
${INSTALL_DATA} ${WRKSRC}/contrib/${CFILE} \
${PREFIX}/share/examples/devtodo
.endfor
.include "../../devel/readline/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"