1 | # -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4 |
---|
2 | # $Id$ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | PortGroup python26 1.0 |
---|
6 | |
---|
7 | name gcalcli |
---|
8 | version 1.4 |
---|
9 | categories-append devel |
---|
10 | maintainers nomaintainer |
---|
11 | description Google Calendar Command Line Interface |
---|
12 | long_description \ |
---|
13 | gcalcli is a Python application that allows you to access your Google \ |
---|
14 | Calendar from a command line. It is easy to get your agenda, search \ |
---|
15 | for events and quickly add new events. Additionally, gcalcli can be \ |
---|
16 | used as a reminder service to execute any application you want. |
---|
17 | license MIT |
---|
18 | platforms darwin |
---|
19 | homepage http://code.google.com/p/gcalcli |
---|
20 | master_sites http://gcalcli.googlecode.com/files/ |
---|
21 | distname gcalcli-${version} |
---|
22 | extract.suffix .tgz |
---|
23 | |
---|
24 | checksums sha1 65edd3b1a825a178746485ca5d8321a40c400794 |
---|
25 | |
---|
26 | depends_lib port:py26-gdata \ |
---|
27 | port:py26-elementtree \ |
---|
28 | port:py26-dateutil |
---|
29 | use_configure no |
---|
30 | |
---|
31 | post-patch { |
---|
32 | reinplace "s|^#!/usr/bin/python|#!${prefix}/bin/python|" ${workpath}/gcalcli |
---|
33 | } |
---|
34 | |
---|
35 | build {} |
---|
36 | |
---|
37 | destroot { |
---|
38 | xinstall -m 755 ${workpath}/gcalcli ${destroot}${prefix}/bin/$name |
---|
39 | } |
---|
40 | |
---|