1 | # -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=portfile:et:sw=4:ts=4:sts=4 |
---|
2 | # $Id$ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | PortGroup github 1.0 |
---|
6 | PortGroup python 1.0 |
---|
7 | |
---|
8 | github.setup llvmpy llvmpy 0.8.2 |
---|
9 | fetch.type git |
---|
10 | |
---|
11 | name py-llvm |
---|
12 | categories-append devel |
---|
13 | license {Permissive BSD} |
---|
14 | maintainers maiar.org:jason-macports openmaintainer |
---|
15 | description Python bindings for LLVM |
---|
16 | long_description llvmpy is a Python wrapper around the llvm C++ library \ |
---|
17 | which allows simple access to compiler tools. |
---|
18 | |
---|
19 | platforms darwin |
---|
20 | supported_archs noarch |
---|
21 | |
---|
22 | python.versions 27 |
---|
23 | python.default_version 27 |
---|
24 | |
---|
25 | if {${subport} != ${name}} { |
---|
26 | depends_build-append port:py${python.version}-distribute \ |
---|
27 | port:llvm-3.1 |
---|
28 | |
---|
29 | } |
---|