Ticket #26049: Portfile

File Portfile, 2.0 KB (added by pixilla (Bradley Giesbrecht), 13 years ago)
Line 
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
4PortSystem          1.0
5
6name                ACE
7version             6.0.1
8categories          devel
9maintainers         pixilla
10platforms           darwin
11description         ACE is an object-oriented framework that implements many core patterns for \
12                    concurrent communication software.
13long_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
24homepage            http://www.cs.wustl.edu/~schmidt/ACE.html
25master_sites        http://download.dre.vanderbilt.edu/previous_versions
26
27checksums           sha1    27b63f309d247d1a208fc7ce194bc2b56153bac9 \
28                    rmd160  559fae18b42f0d479229708b114917b514a0ad7d
29
30worksrcdir          ACE_wrappers
31configure.dir       ${worksrcpath}/build
32configure.cmd       ../configure
33build.dir           ${worksrcpath}/build
34
35patchfiles          patch-configure.diff
36
37configure.args-append \
38                    --with-openssl=${prefix} \
39                    --with-openssl-include=${prefix}/include/openssl \
40                    --with-openssl-libdir=${prefix}/lib
41
42pre-configure {
43    xinstall -d ${worksrcpath}/build
44}