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 | |
---|
6 | name antlr3c |
---|
7 | version 3.4.0 |
---|
8 | categories net |
---|
9 | platforms darwin |
---|
10 | license BSD |
---|
11 | maintainers nomaintainer |
---|
12 | description ANother Tool for Language Recognition |
---|
13 | long_description ANTLR is a language tool that provides a framework for constructing recognizers, \ |
---|
14 | interpreters, compilers, and translators from grammatical descriptions containing \ |
---|
15 | actions in a variety of target languages. |
---|
16 | |
---|
17 | homepage http://www.antlr3.org/api/C/ |
---|
18 | distname antlr3 |
---|
19 | |
---|
20 | # Git seems to check out /into/ ${worksrcdir}, hence the fiddling with paths below |
---|
21 | fetch.type git |
---|
22 | git.url git://git.linphone.org/antlr3 |
---|
23 | git.branch linphone |
---|
24 | |
---|
25 | autoreconf.dir ${worksrcpath}/runtime/C |
---|
26 | autoconf.dir ${worksrcpath}/runtime/C |
---|
27 | automake.dir ${worksrcpath}/runtime/C |
---|
28 | |
---|
29 | use_autoreconf yes |
---|
30 | use_automake yes |
---|
31 | use_autoconf yes |
---|
32 | |
---|
33 | configure.cmd cd ${worksrcpath}/runtime/C && ./configure |
---|
34 | build.cmd make -C runtime/C |
---|