freebsd-ports/deskutils/taskcoach/Makefile
Fernando Apesteguía 27be7145dd deskutils/taskcoach: update to 1.4.4
Changes: https://www.taskcoach.org/changes.html

Bugs fixed:

* TaskCoach would not start on Fedora 23 using LXDE. This probably concerns
other distributions as well.
* Reminders would fire randomly or not at all.

Features added:

* Per-task effort total time consolidation, patch provided by rogerdc@gmail.com
* Add a viewer for task dependencies based on igraph (contributed by Matthias
Tafelmeier). Not available on all platforms.

Dependency changed:

* Task Coach now uses Mercurial for version control. This only affects you if
you want to develop or use Task Coach source code.

Reported by:	portscout
2018-12-10 17:56:43 +00:00

39 lines
1 KiB
Makefile

# $FreeBSD$
PORTNAME= taskcoach
DISTVERSION= 1.4.4
CATEGORIES= deskutils python
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/Release-${PORTVERSION}
DISTNAME= TaskCoach-${PORTVERSION}
MAINTAINER= ports@FreeBSD.org
COMMENT= Friendly task manager
LICENSE= GPLv3
LICENSE_FILE= ${WRKSRC}/LICENSE.txt
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}twisted>=0:devel/py-twisted@${PY_FLAVOR}
USES= python:2.7 shebangfix
SHEBANG_FILES= taskcoach.py
USE_PYTHON= distutils autoplist noflavors
USE_WX= 3.0+
WX_COMPS= python:lib
NO_ARCH= yes
PLIST_FILES= bin/taskcoach \
share/applications/taskcoach.desktop \
share/pixmaps/taskcoach.png
post-patch:
@${REINPLACE_CMD} -e 's|taskcoach.py|taskcoach|' \
${WRKSRC}/build.in/linux_common/taskcoach.desktop
post-install:
${INSTALL_SCRIPT} ${WRKSRC}/taskcoach.py \
${STAGEDIR}${PREFIX}/bin/taskcoach
${INSTALL_DATA} ${WRKSRC}/build.in/linux_common/taskcoach.desktop \
${STAGEDIR}${PREFIX}/share/applications/
${INSTALL_DATA} ${WRKSRC}/icons.in/taskcoach.png \
${STAGEDIR}${PREFIX}/share/pixmaps
.include <bsd.port.mk>