1 | # $Id$ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | |
---|
5 | name radlib |
---|
6 | version 2.7.5 |
---|
7 | categories devel |
---|
8 | maintainers mac.com:mbrooksclark |
---|
9 | platforms darwin |
---|
10 | |
---|
11 | description Rapid Application Development Library |
---|
12 | long_description \ |
---|
13 | radlib is a rapid application development library for unix \ |
---|
14 | multi-process applications. It uses SYS V IPC facilities and FIFOs \ |
---|
15 | to provide an RTOS-like, event-driven, distributed framework. \ |
---|
16 | Processes may be run as daemons or have a controlling terminal. |
---|
17 | |
---|
18 | homepage http://www.radlib.teel.ws/ |
---|
19 | master_sites sourceforge:radlib |
---|
20 | |
---|
21 | checksums md5 73e01cd9e1f03cb67bc23bc5bd7b412d \ |
---|
22 | sha1 6ffde7f2523354fbde472f77672c25422cfb6ab9 \ |
---|
23 | rmd160 2122589fc16e4be7416ffb511c7d5c704535d80f |
---|
24 | |
---|
25 | variant mysql5 description {Includes mySQL5 database support} { |
---|
26 | configure.args-append --enable-mysql |
---|
27 | configure.cflags-append -I${prefix}/include/mysql5/mysql |
---|
28 | configure.ldflags-append -L${prefix}/lib/mysql5/mysql |
---|
29 | depends_lib-append port:mysql5 |
---|
30 | } |
---|
31 | |
---|
32 | variant pgresql83 description {Includes PostgreSQL database support} { |
---|
33 | configure.args-append --enable-pgresql |
---|
34 | depends_lib-append port:postgresql83 |
---|
35 | } |
---|