mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-23 09:10:43 +00:00
84c0b97637
server (preferably local) and a decent browser (Firefox, not IE6). It is designed to work vaguely with fans of GTD and act as a slightly more advanced task manager which can be kept on your computer, rather than over the internet (although in theory you can put it up on the internet). Here is a quick summary of the main features: * Sections for tasks organising them by immediate, this week, this month, this year and lifetime tasks * Add and filter by contexts and projects (for Getting Things Done fans) * Print lists on 3 x 5 index cards * Automatically list all items for today * Highlighting of current and overdue items * Mark items as done on the spot, with a done button for each * Small. As in really really ridiculously small (~160KB download file) * It's free, but that's probably stating the obvious WWW: http://taskstep.cunningtitle.co.uk/ - Babak Farrokhi babak@farrokhi.net PR: ports/99180 Submitted by: Babak Farrokhi <babak@farrokhi.net>
42 lines
991 B
Makefile
42 lines
991 B
Makefile
# New ports collection makefile for: taskstep
|
|
# Date created: 2006-06-19
|
|
# Whom: Babak Farrokhi <babak@farrokhi.net>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= taskstep
|
|
PORTVERSION= 0.5
|
|
CATEGORIES= deskutils www
|
|
MASTER_SITES= http://taskstep.cunningtitle.co.uk/releases/
|
|
DISTNAME= ${PORTNAME}-05
|
|
|
|
MAINTAINER= babak@farrokhi.net
|
|
COMMENT= Web based to-do list manager written in php
|
|
|
|
NO_BUILD= YES
|
|
USE_PHP= mysql
|
|
WANT_PHP_WEB= YES
|
|
USE_ZIP= YES
|
|
EXTRACT_AFTER_ARGS= -d ${WRKSRC}
|
|
|
|
TASKSTEP?= www/taskstep
|
|
PLIST_SUB+= TASKSTEP=${TASKSTEP}
|
|
SUB_LIST+= TASKSTEP=${TASKSTEP}
|
|
SUB_FILES= pkg-message
|
|
|
|
pre-everything::
|
|
@${ECHO_CMD}
|
|
@${ECHO_CMD} "Set, if you need, relative to PREFIX (default: /usr/local):"
|
|
@${ECHO_CMD} "TASKSTEP=${TASKSTEP} (default: www/taskstep)"
|
|
@${ECHO_CMD}
|
|
|
|
do-install:
|
|
@${MKDIR} ${PREFIX}/${TASKSTEP}
|
|
@${CP} -R ${WRKSRC}/ ${PREFIX}/${TASKSTEP}
|
|
@${CHOWN} -R ${WWWOWN}:${WWWGRP} ${PREFIX}/${TASKSTEP}
|
|
@${CHMOD} -R 755 ${PREFIX}/${TASKSTEP}
|
|
@${CAT} ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.mk>
|