Ticket #14753: Portfile

File Portfile, 1.3 KB (added by mbrooksclark@…, 16 years ago)

Portfile for radlib2.7.4

Line 
1# $Id$
2
3PortSystem       1.0
4
5name             radlib
6version          2.7.4
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 7d8ea595faa61d87b2e83d70f1f274b7 \
22                 sha1 0b97f0b160cb36ac386c5071f5fe86e98a3276a5 \
23                 rmd160 a161c347a99bb9ac505f524acc3b58567b4b5c3a
24
25variant mysql description {Includes mySQL database support} {
26  configure.args-append     --enable-mysql
27  depends_lib-append        port:mysql
28}
29
30variant mysql5 description {Includes mySQL5 database support} {
31  configure.args-append     --enable-mysql
32  configure.cflags-append   -I${prefix}/include/mysql5/mysql
33  configure.ldflags-append  -L${prefix}/lib/mysql5/mysql
34  depends_lib-append        port:mysql5
35}
36
37variant pgresql83 description {Includes PostgreSQL database support} {
38  configure.args-append     --enable-pgresql
39  depends_lib-append        port:postgresql83
40}