mirror of
https://github.com/macports/macports-ports.git
synced 2026-07-12 18:20:25 -07:00
116 lines
4.1 KiB
Tcl
116 lines
4.1 KiB
Tcl
# -*- 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
|
|
|
|
PortSystem 1.0
|
|
PortGroup muniversal 1.0
|
|
|
|
name db62
|
|
version 6.2.32
|
|
revision 0
|
|
|
|
categories databases
|
|
license AGPL-3
|
|
maintainers nomaintainer
|
|
|
|
description The Berkeley DB package, version 6.2
|
|
long_description \
|
|
Version 6.2 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 https://www.oracle.com/database/berkeley-db/db.html
|
|
|
|
set branch [join [lrange [split ${version} .] 0 1] {}]
|
|
master_sites https://download.oracle.com/berkeley-db/
|
|
distname db-${version}
|
|
|
|
checksums rmd160 6a3bc6562aea20184f8ee60800461dca31b50c4f \
|
|
sha256 a9c5e2b004a5777aa03510cfe5cd766a4a3b777713406b02809c17c8e0e7a8fb \
|
|
size 45342417
|
|
|
|
patchfiles patch-yosemite-libtool.diff \
|
|
patch-src_dbinc_atomic.h.diff
|
|
|
|
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}
|
|
|
|
set cxx_stdlibflags {}
|
|
if {[string match *clang* ${configure.cxx}] && ${configure.cxx_stdlib} ne ""} {
|
|
set cxx_stdlibflags -stdlib=${configure.cxx_stdlib}
|
|
}
|
|
configure.cxx ${configure.cxx} ${cxx_stdlibflags}
|
|
|
|
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} eq "macosx" && ${os.major} < 11} {
|
|
default_variants +java
|
|
}
|
|
|
|
variant sql description {Build the SQL API} {
|
|
configure.args-append --enable-sql
|
|
# build with -DSQLITE_ENABLE_COLUMN_METADATA
|
|
# required by libgda5 to enable Berkeley DB SQL support
|
|
configure.cppflags-append -DSQLITE_ENABLE_COLUMN_METADATA
|
|
}
|
|
default_variants +sql
|
|
|
|
variant tcl description {build Tcl API} {
|
|
depends_lib-append port:tcl
|
|
configure.args-append --enable-tcl --with-tcl=${prefix}/lib
|
|
}
|
|
|
|
if {${universal_possible} && [variant_isset universal]} {
|
|
# configure fails with aarch64 but it seems to work fine with arm
|
|
set merger_host(arm64) arm-apple-${os.platform}${os.version}
|
|
|
|
if {${os.arch} eq "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 none
|