of time. It is built around two major ideas - tasks and events. Tasks are the things time is spend on, repeatedly. For example, ironing laundry is a task. The laundry done for two hours on last Tuesday is an event in that task. When doing laundry multiple times, the events will be accumulated, and can later be printed in activity reports or weekly time sheets. So in case laundry would be done for three hours on Wednesday again, the activity report for the "Ironing Laundry" task would list the event on tuesday, the event on wednesday and a total of five hours. WWW: https://github.com/KDAB/Charm PR: ports/167729 Submitted by: Andriy Gapon <avg@icyb.net.ua>
37 lines
832 B
Makefile
37 lines
832 B
Makefile
# New ports collection makefile for: charm
|
|
# Date created: 12 Feb 2012
|
|
# Whom: Andriy Gapon <avg@icyb.net.ua>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= charmtimetracker
|
|
PORTVERSION= 1.6.0
|
|
CATEGORIES= deskutils kde
|
|
MASTER_SITES= http://nodeload.github.com/KDAB/Charm/tarball/
|
|
DISTNAME= ${PORTVERSION}
|
|
EXTRACT_SUFX=
|
|
DIST_SUBDIR= ${PORTNAME}
|
|
|
|
MAINTAINER= avg@icyb.net.ua
|
|
COMMENT= Time tracker
|
|
|
|
LICENSE= GPLv2
|
|
LICENSE_FILE= ${WRKSRC}/License.txt
|
|
|
|
WRKSRC= ${WRKDIR}/KDAB-Charm-3151d25
|
|
|
|
USE_CMAKE= yes
|
|
CMAKE_ARGS+= -DCharm_VERSION:STRING=${PORTVERSION}
|
|
USE_KDE4= kdehier kdeprefix
|
|
USE_QT_VER= 4
|
|
QT_COMPONENTS= qmake_build moc_build rcc_build uic_build corelib gui network \
|
|
qtestlib sql sql-sqlite3 xml
|
|
USE_XORG= ice x11 xext xscrnsaver
|
|
INSTALLS_ICONS= yes
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
PORTDOCS= ReadMe.txt License.txt
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|