diff options
-rw-r--r-- | deskutils/Makefile | 1 | ||||
-rw-r--r-- | deskutils/gcalcli/Makefile | 33 | ||||
-rw-r--r-- | deskutils/gcalcli/distinfo | 3 | ||||
-rw-r--r-- | deskutils/gcalcli/pkg-descr | 6 |
4 files changed, 43 insertions, 0 deletions
diff --git a/deskutils/Makefile b/deskutils/Makefile index 6999d47..ec73d50 100644 --- a/deskutils/Makefile +++ b/deskutils/Makefile @@ -58,6 +58,7 @@ SUBDIR += gaddr SUBDIR += ganttproject SUBDIR += gcal + SUBDIR += gcalcli SUBDIR += gdeskcal SUBDIR += gdeskcal-skins SUBDIR += gdesklets diff --git a/deskutils/gcalcli/Makefile b/deskutils/gcalcli/Makefile new file mode 100644 index 0000000..bb908a32 --- /dev/null +++ b/deskutils/gcalcli/Makefile @@ -0,0 +1,33 @@ +# ex:ts=8 +# Ports collection makefile for: gcalcli +# Date created: Oct 2, 2007 +# Whom: ijliao +# +# $FreeBSD$ +# + +PORTNAME= gcalcli +PORTVERSION= 1.2 +CATEGORIES= deskutils +MASTER_SITES= http://gcalcli.googlecode.com/files/ +EXTRACT_SUFX= .tgz + +MAINTAINER= ijliao@FreeBSD.org +COMMENT= Google Calendar Command Line Interface + +RUN_DEPENDS= ${PYTHON_SITELIBDIR}/gdata/__init__.py:${PORTSDIR}/devel/py-gdata \ + ${PYTHON_SITELIBDIR}/dateutil/__init__.py:${PORTSDIR}/devel/py-dateutil + +USE_PYTHON= yes +NO_WRKSUBDIR= yes +NO_BUILD= yes + +PLIST_FILES= bin/gcalcli + +post-patch: + @${REINPLACE_CMD} -e "s,/usr/bin/python,${SETENV} python," ${WRKSRC}/${PORTNAME} + +do-install: + ${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin + +.include <bsd.port.mk> diff --git a/deskutils/gcalcli/distinfo b/deskutils/gcalcli/distinfo new file mode 100644 index 0000000..b41fc3e --- /dev/null +++ b/deskutils/gcalcli/distinfo @@ -0,0 +1,3 @@ +MD5 (gcalcli-1.2.tgz) = f93c551dcd20814c27f7aaa4d7812780 +SHA256 (gcalcli-1.2.tgz) = e52cc20487c352de7df40afc19057b2aca24dcd79f908ed0cb707040f1ed4a86 +SIZE (gcalcli-1.2.tgz) = 5831 diff --git a/deskutils/gcalcli/pkg-descr b/deskutils/gcalcli/pkg-descr new file mode 100644 index 0000000..faf4547 --- /dev/null +++ b/deskutils/gcalcli/pkg-descr @@ -0,0 +1,6 @@ +gcalcli is a Python application that allows you to access you Google Calendar +from a command line. It's easy to get your agenda, search for events, and +quickly add new events. Additionally gcalcli can be used as a reminder service +to execute any application you want. + +WWW: http://code.google.com/p/gcalcli/ |