1 | # -*- coding: utf-8; mode: tcl; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 4; truncate-lines: t -*- vim:fenc=utf-8:et:sw=4:ts=4:sts=4 |
---|
2 | # $Id$ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | PortGroup qt4 1.0 |
---|
6 | PortGroup cmake 1.0 |
---|
7 | |
---|
8 | name generatorrunner |
---|
9 | version 0.6.5 |
---|
10 | #revision 1 |
---|
11 | categories devel |
---|
12 | platforms macosx |
---|
13 | maintainers openmaintainer |
---|
14 | description GeneratorRunner is a tool for binding development for C++/Qt-libraries. |
---|
15 | long_description \ |
---|
16 | GeneratorRunner is a tool that eases the development of binding \ |
---|
17 | generators for C++ and Qt-based libraries by providing a framework \ |
---|
18 | to help automating most of the process. It uses the ApiExtractor \ |
---|
19 | library to parse the header files and manipulate the classes \ |
---|
20 | information while generating the binding code using front-end \ |
---|
21 | modules provided by the user. |
---|
22 | homepage http://www.pyside.org/ |
---|
23 | master_sites http://www.pyside.org/files/ |
---|
24 | distname generatorrunner-${version} |
---|
25 | use_bzip2 yes |
---|
26 | dist_subdir devel |
---|
27 | |
---|
28 | depends_lib-append port:apiextractor |
---|
29 | |
---|
30 | checksums md5 e523429a6bdb84107aa48bed81af4b59 \ |
---|
31 | sha1 d48ef2ba2afc9493622e28506c5c3a074fc80f21 \ |
---|
32 | rmd160 6a836fdebfe0b89c7d6dc33859ba7e5e452f9e71 |
---|
33 | |
---|
34 | worksrcdir ${distname}/build |
---|
35 | |
---|
36 | configure.args-append .. |
---|
37 | |
---|
38 | post-extract { |
---|
39 | # Need to create the build dir: |
---|
40 | file mkdir ${worksrcpath} |
---|
41 | } |
---|