Ticket #26494: Portfile.2

File Portfile.2, 1.3 KB (added by list-ener@…, 13 years ago)

Portfile for devel/generatorrunner

Line 
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
4PortSystem      1.0
5PortGroup   qt4 1.0
6PortGroup   cmake 1.0
7
8name            generatorrunner
9version         0.6.5
10#revision    1
11categories      devel
12platforms       macosx
13maintainers     openmaintainer
14description     GeneratorRunner is a tool for binding development for C++/Qt-libraries.
15long_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.
22homepage        http://www.pyside.org/
23master_sites    http://www.pyside.org/files/
24distname        generatorrunner-${version}
25use_bzip2           yes
26dist_subdir         devel
27
28depends_lib-append      port:apiextractor
29
30checksums           md5     e523429a6bdb84107aa48bed81af4b59 \
31                    sha1    d48ef2ba2afc9493622e28506c5c3a074fc80f21 \
32                    rmd160  6a836fdebfe0b89c7d6dc33859ba7e5e452f9e71
33
34worksrcdir          ${distname}/build
35
36configure.args-append   ..
37
38post-extract {
39    # Need to create the build dir:
40    file mkdir ${worksrcpath}
41}