# -*- 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: Portfile 91178 2012-03-25 07:57:31Z afb@macports.org $

PortSystem 1.0
PortGroup  muniversal 1.0

name			db53
version			5.3.15
set branch		[join [lrange [split ${version} .] 0 1] {}]
categories		databases
license			Sleepycat
maintainers		afb openmaintainer
platforms		darwin
description		The Berkeley DB package, version 5.3
long_description	\
    Version 5.3 of the Berkeley Data Base library which \
    offers (key/value) storage with optional concurrent \
    access or transactions interface.  This port will \
    install the AES (American Encryption Standard) \
    enabled version.

homepage        http://www.oracle.com/us/products/database/berkeley-db/db/
master_sites    http://download.oracle.com/berkeley-db/

distname		db-${version}

checksums		\
    md5     5493fb5f7cc3915887c836b096f18773 \
    sha1    7683b632a01ff3543c379a120809a942ec457738 \
    rmd160  8c7bb36fd85ec99220be6f5c0df8de7d1fcc6040

configure.dir  ${worksrcpath}/build_unix
build.dir      ${configure.dir}

configure.cmd		../dist/configure
configure.args		\
    --enable-cxx \
    --includedir=\\\${prefix}/include/db${branch} \
    --libdir=\\\${prefix}/lib/db${branch}

use_parallel_build	yes

destroot.destdir	\
    prefix=${destroot}${prefix} \
    docdir=${destroot}${prefix}/share/doc/${name}

post-destroot {
	foreach bin [glob -tails -directory ${destroot}${prefix}/bin/ db_*] {
        set newbin [regsub {^db_} ${bin} "db${branch}_"]
		move ${destroot}${prefix}/bin/${bin} \
			${destroot}${prefix}/bin/${newbin}
	}
	if { [variant_isset sql] } {
		move ${destroot}${prefix}/bin/dbsql \
			${destroot}${prefix}/bin/db${branch}sql
	}
}

variant java description {Build the Java API} {
    configure.args-append  --enable-java
    platform macosx {
        pre-configure {
            if {![file isfile "/System/Library/Frameworks/JavaVM.framework/Headers/jni.h"]} {
                ui_error "${name} requires the Java for Mac OS X development headers."
                if {${os.major} == 10} {
                    ui_error "Download the Java Developer Package from: <https://connect.apple.com/cgi-bin/WebObjects/MemberSite.woa/wa/getSoftware?bundleID=20719>"
                } elseif {${os.major} == 9} {
                    ui_error "Download the Java Developer Package from: <https://connect.apple.com/cgi-bin/WebObjects/MemberSite.woa/wa/getSoftware?bundleID=20720>"
                } else {
                    ui_error "Make sure your Xcode installation is complete."
                }
                return -code error "missing Java headers"
            }
        }
    }
}
if {${os.subplatform} == "macosx" && ${os.major} < 11} {
    default_variants +java
}

variant sql description {Build the SQL API} {
    patchfiles-append      patch-sqlite.diff
    configure.args-append  --enable-sql
}
default_variants +sql

variant tcl description {build Tcl API} {
    depends_lib-append     port:tcl
    configure.args-append  --enable-tcl --with-tcl=${prefix}/lib
}

if { [variant_isset universal] } {
    if { ${os.arch}=="i386" } {
        if { ${os.major} >= 10 } {
            set merger_configure_args(ppc) --with-mutex=Darwin/_spin_lock_try
        }
        set merger_configure_args(ppc64)   --with-mutex=Darwin/_spin_lock_try
    } else {
        set merger_configure_args(i386)    --with-mutex=x86/gcc-assembly
        set merger_configure_args(x86_64)  --with-mutex=x86_64/gcc-assembly
    }
}

livecheck.type  regexm
livecheck.url   http://www.oracle.com/technetwork/database/berkeleydb/downloads/index-082944.html
livecheck.regex {Berkeley\s+DB\s+(5\.3(?:\.\d+)*)\.tar\.gz}
