Ticket #15091: Portfile

File Portfile, 1.2 KB (added by mbrooksclark@…, 16 years ago)
Line 
1# $Id$
2
3PortSystem       1.0
4
5name             radlib
6version          2.7.5
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 73e01cd9e1f03cb67bc23bc5bd7b412d \
22                 sha1 6ffde7f2523354fbde472f77672c25422cfb6ab9 \
23                 rmd160 2122589fc16e4be7416ffb511c7d5c704535d80f
24
25variant 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
32variant pgresql83 description {Includes PostgreSQL database support} {
33  configure.args-append     --enable-pgresql
34  depends_lib-append        port:postgresql83
35}