Ticket #34067: Portfile

File Portfile, 976 bytes (added by 3add3287 (3add3287), 12 years ago)

Portfile for py-pykml

Line 
1# -*- coding: utf-8; mode: tcl; tab-width: 4; truncate-lines: t; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:et:sw=4:ts=4:sts=4
2# $Id$
3
4PortSystem 1.0
5PortGroup python 1.0
6
7name                py-pykml
8version             0.1.0
9
10categories          python devel geo
11maintainers         nomaintainer
12description         python module for parsing and authoring KML
13long_description    PyKML is a Python package for parsing and authoring KML documents.
14
15platforms           darwin
16supported_archs     noarch
17
18homepage            http://pypi.python.org/pypi/pykml
19master_sites        http://pypi.python.org/packages/source/p/pykml/
20distname            pykml-${version}
21
22python.versions     26 27 31 32
23python.default_version 27
24
25checksums           rmd160 4b235201195658dd8bec763347f9a2bff340e93a \
26                    sha256  6efaa4c31ddeefbbdd256a278175a38aea556b08e752f340098c95229a2df66a
27
28if {$subport != $name} {
29        depends_lib             port:py${python.version}-lxml
30}