Ticket #14513: Portfile

File Portfile, 1.1 KB (added by mbrooksclark@…, 16 years ago)
Line 
1# $Id$
2
3PortSystem 1.0
4
5name             radlib
6
7version          2.7.2
8
9categories       devel
10
11maintainers      mac.com:mbrooksclark
12
13homepage         http://www.radlib.teel.ws/
14
15description      Rapid Application Development Library
16
17long_description \
18                                radlib is a rapid application development library \
19                                for unix multi-process applications. It uses SYS V \
20                                IPC facilities and FIFOs to provide an RTOS-like, \
21                                event-driven, distributed framework. Processes may \
22                                be run as daemons or have a controlling terminal.
23
24platforms        darwin
25
26master_sites Ê  sourceforge:radlib
27
28checksums                       md5 3f2c8a4cf2fd42b3375885683b009489 \
29                                        sha1 60a5ded641690cff3c47b377b94279f3c51f0f3e \
30                                        rmd160 44e6f429ed546f339caf2c44ab1d554625d75134
31                                       
32                                       
33variant mysql5  description {Includes mySQL database support} {
34                                        configure.args-append --enable-mysql
35                                        depends_lib-append port:mysql5
36                                        }
37                                       
38variant pgresql description {Includes PostgreSQL database support} {
39                                        configure.args-append --enable-pgresql
40                                        depends_lib-append port:postgresql83
41                                        }
42