# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4
# $Id$

PortSystem          1.0

name                radlib

version             2.12.0

categories          devel

maintainers         macports.org:mbclark

platforms           darwin

license             BSD

use_autoconf        yes

description         Rapid Application Development Library
long_description \
  radlib is a rapid application development library for unix \
  multi-process applications. It uses SYS V IPC facilities and FIFOs \
  to provide an RTOS-like, event-driven, distributed framework. \
  Processes may be run as daemons or have a controlling terminal.

homepage            http://www.radlib.teel.ws/

master_sites        sourceforge:radlib

checksums           md5     1330d46ab22e43425169d7dc75f5f2ea \
                    sha1    1b3feace6d0361436c9e4ce9b06856195a5ac1b1 \
                    rmd160  3509e555a35da26fc6e86a1f1134ef29d07f95c9

variant mysql5 description {Includes mySQL5 database support} {
  configure.args-append     --enable-mysql
  configure.cflags-append   -I${prefix}/include/mysql5/mysql
  configure.ldflags-append  -L${prefix}/lib/mysql5/mysql
  depends_lib-append        path:lib/libssl.dylib:openssl port:zlib path:bin/mysql_config5:mysql5
}

variant sqlite3 description {Include sqlite3 database support} {
  configure.args-append     --enable-sqlite
  depends_lib-append        port:sqlite3
}

if {![variant_isset mysql5]} {
    default_variants +sqlite3
}