Changelog: Release 1.2.31 - November 13, 2011 This is a mixed bugfix and feature release. Bugs fixed: - Immediately update the number of tasks completed in the status bar of the task viewer when the user marks a task completed. (SF#3185805) - When adding new tasks, Task Coach would first show them briefly as inactive before showing them as active. (SF#3085362) - Only "preset" dates on new tasks. - When changing a date/time inline, hitting enter in the date part of the control would close the inline control, but not change the date. (SF#3428503) - The inline edit controls for dates/times didn't use the preferences for start and end of working day. (SF#3431160) - Using drag and drop to change dates in the calendar view would produce erroneous results in some configurations. (SF#3428525) - In some configurations, some hours would not be drawn in the calendar view in vertical mode. (SF#3428524) Features added: - When exporting to CSV, dates and times can optionally be put in separate columns. - When exporting to CSV and HTML, the columns to be exported can be changed in the export dialog. - Simple task statistics viewer added that shows a pie chart of the distribution of task states.
32 lines
917 B
Makefile
32 lines
917 B
Makefile
# $NetBSD: Makefile,v 1.8 2011/11/16 13:52:13 ryo-on Exp $
|
|
#
|
|
|
|
DISTNAME= TaskCoach-1.2.31
|
|
PKGNAME= ${DISTNAME:tl}
|
|
CATEGORIES= time
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=taskcoach/}
|
|
|
|
MAINTAINER= ryoon@NetBSD.org
|
|
HOMEPAGE= http://www.taskcoach.org/
|
|
COMMENT= Task Coach is a simple open source todo manager
|
|
LICENSE= gnu-gpl-v3
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
USE_LANGUAGES= # none
|
|
|
|
DEPENDS+= ${PYPKGPREFIX}-wxWidgets>=2.8.9.1:../../x11/py-wxWidgets
|
|
|
|
PYDISTUTILSPKG= YES
|
|
|
|
SUBST_CLASSES+= fix-cdll
|
|
SUBST_STAGE.fix-cdll= pre-configure
|
|
SUBST_FILES.fix-cdll= taskcoachlib/powermgt/xsm.py
|
|
SUBST_SED.fix-cdll= -e 's,libSM.so.6,${X11BASE}/lib/libSM.so,'
|
|
SUBST_SED.fix-cdll+= -e 's,libICE.so.6,${X11BASE}/lib/libICE.so,'
|
|
|
|
.include "../../lang/python/application.mk"
|
|
.include "../../lang/python/extension.mk"
|
|
.include "../../x11/libICE/buildlink3.mk"
|
|
.include "../../x11/libSM/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|