Ticket #10836: Portfile.txt

File Portfile.txt, 951 bytes (added by rene@…, 17 years ago)
Line 
1# $Id: Portfile,v 1.9 2006/04/20 20:52:51 mww Exp $
2
3PortSystem 1.0
4PortGroup python24 1.0
5
6name                    py-ctypes
7version                 1.0.0
8categories              python
9platforms               darwin
10maintainers             mww@opendarwin.org
11description             create and manipulate C data types in Python
12long_description        ctypes is a Python package to create and manipulate C \
13                                data types in Python, and to call functions in dynamic \
14                                link libraries/shared dlls. It allows wrapping these \
15                                libraries in pure Python.
16
17homepage                http://starship.python.net/crew/theller/ctypes/
18master_sites    sourceforge:ctypes
19checksums               md5 6e42e2fb47de008aaa55a840bb080dcd
20distname                ctypes-${version}
21
22#depends_lib-append     port:libffi
23
24test.run                yes
25test.cmd                ${build.cmd}
26test.target             test
27
28post-destroot {
29        xinstall -m 644 -W ${worksrcpath} LICENSE.txt README.CVS \
30                README.txt ${destroot}${prefix}/share/doc/${name}
31}
32
33#platform darwin 8 {
34#       configure.env-append    CC=/usr/bin/gcc-4.0 CPP=/usr/bin/cpp-4.0
35#}