1 | # -*- coding: utf-8; mode: tcl; tab-width: 4; truncate-lines: t; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:et:sw=4:ts=4:sts=4 |
---|
2 | # $Id$ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | |
---|
6 | name ACE |
---|
7 | version 5.6.9 |
---|
8 | categories devel |
---|
9 | maintainers pixilla |
---|
10 | platforms darwin |
---|
11 | description ACE is an object-oriented framework that implements many core patterns for \ |
---|
12 | concurrent communication software. |
---|
13 | long_description The ADAPTIVE Communication Environment (ACE) is a freely available, \ |
---|
14 | open-source object-oriented (OO) framework that implements many core \ |
---|
15 | patterns for concurrent communication software. ACE provides a rich set \ |
---|
16 | of reusable C++ wrapper facades and framework components that perform \ |
---|
17 | common communication software tasks across a range of OS platforms. The \ |
---|
18 | communication software tasks provided by ACE include event \ |
---|
19 | demultiplexing and event handler dispatching, signal handling, service \ |
---|
20 | initialization, interprocess communication, shared memory management, \ |
---|
21 | message routing, dynamic (re)configuration of distributed services, \ |
---|
22 | concurrent execution and synchronization. |
---|
23 | |
---|
24 | homepage http://www.cs.wustl.edu/~schmidt/ACE.html |
---|
25 | master_sites http://download.dre.vanderbilt.edu/previous_versions |
---|
26 | |
---|
27 | checksums sha1 6dae2fa5cb5d2f2c9764d22a6335388268fbe448 |
---|
28 | |
---|
29 | worksrcdir ACE_wrappers |
---|
30 | configure.dir ${worksrcpath}/build |
---|
31 | configure.cmd ../configure |
---|
32 | build.dir ${worksrcpath}/build |
---|
33 | |
---|
34 | patchfiles Message_Queue_Test.diff |
---|
35 | |
---|
36 | configure.args-append \ |
---|
37 | --with-openssl=${prefix} \ |
---|
38 | --with-openssl-include=${prefix}/include/openssl \ |
---|
39 | --with-openssl-libdir=${prefix}/lib |
---|
40 | |
---|
41 | pre-configure { |
---|
42 | xinstall -d ${worksrcpath}/build |
---|
43 | } |
---|