Ticket #14614: Portfile

File Portfile, 1.0 KB (added by mbrooksclark@…, 17 years ago)
Line 
1# $Id$
2
3PortSystem       1.0
4
5name             radlib
6version          2.7.3
7categories       devel
8maintainers      mac.com:mbrooksclark
9platforms        darwin
10
11description      Rapid Application Development Library
12long_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
18homepage         http://www.radlib.teel.ws/
19master_sites     sourceforge:radlib
20
21checksums        md5 a6576c3347ca8a70bc17a751ab091e51 \
22                 sha1 2d88da3384abe36c821ac6e1542d3dc6e1dbe686 \
23                 rmd160 554232347e174b366d33372fe397afa4ea22e6da
24
25variant mysql5 description {Includes mySQL database support} {
26  configure.args-append  --enable-mysql
27  depends_lib-append     port:mysql5
28}
29
30variant pgresql description {Includes PostgreSQL database support} {
31  configure.args-append  --enable-pgresql
32  depends_lib-append     port:postgresql83
33}