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 | name py27-jcc |
---|
6 | version 2.12 |
---|
7 | |
---|
8 | PortGroup python27 1.0 |
---|
9 | categories python devel |
---|
10 | platforms darwin |
---|
11 | maintainers |
---|
12 | license apache |
---|
13 | homepage http://lucene.apache.org/pylucene/jcc/index.html |
---|
14 | description JCC is a C++ code generator for calling Java from C++/Python |
---|
15 | long_description ${description}. \ |
---|
16 | JCC is a C++ code generator for producing the code \ |
---|
17 | necessary to call into Java classes from CPython via \ |
---|
18 | Java's Native Invocation Interface (JNI).\ |
---|
19 | JCC generates C++ wrapper classes that hide all \ |
---|
20 | the gory details of JNI access as well Java memory \ |
---|
21 | and object reference management.\ |
---|
22 | JCC generates CPython types that make these C++ classes\ accessible from a Python interpreter. JCC attempts to make\ these Python types pythonic by detecting iterators and\ property accessors. Iterators and mappings may also be\ declared to JCC. |
---|
23 | |
---|
24 | master_sites http://pypi.python.org/packages/source/J/JCC/ |
---|
25 | |
---|
26 | distname JCC-${version} |
---|
27 | |
---|
28 | checksums md5 41fd82c4b77f3c5618bc9dd8dfe455a7 |
---|
29 | |
---|
30 | |
---|