You've already forked macports-ports
mirror of
https://github.com/macports/macports-ports.git
synced 2026-07-12 18:20:25 -07:00
280 lines
12 KiB
Tcl
280 lines
12 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 legacysupport 1.0
|
|
# CLOCK_REALTIME
|
|
legacysupport.newest_darwin_requires_legacy 15
|
|
|
|
name mariadb-10.11
|
|
set name_mysql ${name}
|
|
version 10.11.18
|
|
set version_branch [join [lrange [split ${version} .] 0 1] .]
|
|
# Please set revision_client and revision_server to 0 if you bump
|
|
# version; these can be changed independently for the 2 subports, but
|
|
# can be changed at the same time if that's what's required.
|
|
set revision_client 1
|
|
set revision_server 0
|
|
categories databases
|
|
homepage https://mariadb.org/
|
|
maintainers {@BjarneDMat mathiesen.info:macintosh} openmaintainer
|
|
|
|
if {$subport eq $name} {
|
|
|
|
PortGroup cmake 1.1
|
|
PortGroup select 1.0
|
|
PortGroup boost 1.0
|
|
PortGroup openssl 1.0
|
|
|
|
boost.version 1.88
|
|
compiler.cxx_standard 2011
|
|
|
|
openssl.branch 3
|
|
|
|
# https://trac.macports.org/ticket/60805
|
|
compiler.blacklist-append {clang < 900}
|
|
|
|
revision ${revision_client}
|
|
|
|
license GPL-2
|
|
description Multithreaded SQL database server
|
|
long_description Mariadb is a fork of the MySQL server, a multi-threaded SQL database.
|
|
|
|
master_sites https://downloads.mariadb.org/rest-api/mariadb/${version}/
|
|
distname mariadb-${version}
|
|
checksums rmd160 96da148f4584b810b3efb62de8cccdfc207a302f \
|
|
sha256 a46852c68075be7c31c7b33fee233c5b5a00c8c28117f5204d124e4f2fd56fa8 \
|
|
size 114604451
|
|
|
|
cmake.build_type Release
|
|
|
|
depends_build-append port:bison
|
|
depends_lib-append port:curl \
|
|
port:judy \
|
|
port:libxml2 \
|
|
port:ncurses \
|
|
port:pcre2 \
|
|
port:tcp_wrappers \
|
|
port:zlib \
|
|
port:lzo2 \
|
|
port:libfmt12 \
|
|
port:snappy
|
|
depends_run-append port:mysql_select
|
|
|
|
select.group mysql
|
|
select.file ${filespath}/${name_mysql}
|
|
|
|
post-extract {
|
|
file mkdir ${cmake.build_dir}/macports
|
|
copy ${filespath}/macports-default.cnf \
|
|
${filespath}/my.cnf \
|
|
${cmake.build_dir}/macports/
|
|
}
|
|
|
|
patch.pre_args-replace -p0 -p1
|
|
patchfiles patch-cmake-install_layout.cmake.diff \
|
|
patch-CMakeLists.txt.diff \
|
|
patch-libmariadb_cmake_install.cmake.diff \
|
|
patch-libmariadb_libmariadb_CMakeLists.txt.diff \
|
|
patch-server_storage_perfschema_my_thread.h.diff \
|
|
patch-cmake_mysql_version.cmake.diff \
|
|
patch-cmake_mysql_columnstore_version.cmake.diff \
|
|
patch-client_mysqltest.cc.diff \
|
|
patch-sql-my_json_writer.cc.diff
|
|
|
|
# temporary fix for C/C++ flag discovery
|
|
patchfiles-append patch-fix-flag-discovery.diff
|
|
|
|
post-patch {
|
|
reinplace "s|@NAME@|${name_mysql}|g" \
|
|
${worksrcpath}/cmake/install_layout.cmake \
|
|
${worksrcpath}/libmariadb/cmake/install.cmake \
|
|
${cmake.build_dir}/macports/macports-default.cnf \
|
|
${cmake.build_dir}/macports/my.cnf
|
|
reinplace "s|@PREFIX@|${prefix}|g" \
|
|
${cmake.build_dir}/macports/macports-default.cnf \
|
|
${cmake.build_dir}/macports/my.cnf
|
|
move ${worksrcpath}/VERSION ${worksrcpath}/VERSION.txt
|
|
move ${worksrcpath}/storage/columnstore/columnstore/VERSION ${worksrcpath}/storage/columnstore/columnstore/VERSION.txt
|
|
}
|
|
|
|
configure.args-delete \
|
|
-DCMAKE_INSTALL_NAME_DIR=${prefix}/lib
|
|
configure.args-append \
|
|
-DCMAKE_INSTALL_NAME_DIR:STRING=${prefix}/lib/${name_mysql}/mysql \
|
|
-DINSTALL_LAYOUT:STRING=MACPORTS \
|
|
-DSYSCONFDIR:PATH=${prefix}/etc/${name_mysql} \
|
|
-DMYSQL_UNIX_ADDR:PATH=${prefix}/var/run/${name_mysql}/mysqld.sock \
|
|
-DMYSQL_DATADIR:PATH=${prefix}/var/db/${name_mysql} \
|
|
-DDEFAULT_CHARSET:STRING=utf8 \
|
|
-DDEFAULT_COLLATION:STRING=utf8_general_ci \
|
|
-DWITH_EMBEDDED_SERVER:BOOL=ON \
|
|
-DWITH_ZLIB:STRING=system \
|
|
-DWITH_UNIT_TESTS:BOOL=ON \
|
|
-DPLUGIN_CASSANDRA=NO \
|
|
-DPLUGIN_MROONGA=NO \
|
|
-DPLUGIN_ROCKSDB=NO \
|
|
-DPLUGIN_TOKUDB=NO \
|
|
-DENABLE_GCOV:BOOL=OFF \
|
|
-DENABLE_DTRACE:BOOL=OFF \
|
|
-DWITH_READLINE:BOOL=ON \
|
|
-DWITH_LIBWRAP:BOOL=ON \
|
|
-DWITH_SSL:STRING=yes \
|
|
-DWITH_SSL_PATH=${prefix} \
|
|
-DMYSQL_MAINTAINER_MODE:STRING=AUTO \
|
|
-DICONV_LIBRARIES=${prefix}/lib/libiconv.dylib \
|
|
-DICONV_INCLUDE_DIR:PATH=${prefix}/include \
|
|
-DLIBFMT_INCLUDE_DIR:PATH=${prefix}/include/libfmt12 \
|
|
-DCONNECT_WITH_JDBC=OFF \
|
|
-DCONNECT_WITH_LIBXML2=ON \
|
|
-DCONNECT_WITH_MONGO=OFF \
|
|
-DCONNECT_WITH_ODBC=OFF \
|
|
-DCONNECT_WITH_REST=OFF \
|
|
-DWITH_PCRE=system \
|
|
-DBISON_EXECUTABLE=${prefix}/bin/bison
|
|
|
|
configure.checks.implicit_function_declaration.whitelist-append select getthrid
|
|
|
|
post-destroot {
|
|
# proc portdestroot::destroot_finish fails to find and compress our man pages
|
|
# so borrow the compress command and run on our files now.
|
|
set manpath "${destroot}${prefix}/share/man"
|
|
set gzip [findBinary gzip ${portutil::autoconf::gzip_path}]
|
|
foreach manpage [glob -type f ${destroot}${prefix}/share/man/${name_mysql}/man\[1-9\]/*] {
|
|
# Fix paths in manpages
|
|
reinplace -q "s|/etc/|${prefix}/etc/${name_mysql}/|g" ${manpage}
|
|
# Compress all manpages with gzip
|
|
system "$gzip -9vf ${manpage}"
|
|
}
|
|
#foreach samp_conffile [glob -type f ${destroot}${prefix}/share/${name_mysql}/support-files/my-*.cnf] {
|
|
# # Fix paths in sample configuration files
|
|
# reinplace -q "s|/etc/my.cnf|${prefix}/etc/${name_mysql}/my.cnf|g" ${samp_conffile}
|
|
#}
|
|
xinstall -m 755 -o root -d \
|
|
${destroot}${prefix}/etc/${name_mysql}
|
|
copy ${cmake.build_dir}/macports/macports-default.cnf \
|
|
${destroot}${prefix}/etc/${name_mysql}/
|
|
xinstall -m 755 -o root -d \
|
|
${destroot}${prefix}/share/${name_mysql}/support-files/macports
|
|
copy ${cmake.build_dir}/macports/my.cnf \
|
|
${destroot}${prefix}/share/${name_mysql}/support-files/macports/
|
|
}
|
|
|
|
post-install {
|
|
if {![file exists ${prefix}/etc/LaunchDaemons/org.macports.${name_mysql}/org.macports.${name_mysql}-server.plist]} {
|
|
ui_msg "The ${name_mysql} client has been installed."
|
|
ui_msg "To install the ${name_mysql} server, install the ${name_mysql}-server port."
|
|
}
|
|
}
|
|
|
|
post-activate {
|
|
if {![file exists ${prefix}/etc/${name_mysql}/my.cnf]} {
|
|
copy ${prefix}/share/${name_mysql}/support-files/macports/my.cnf \
|
|
${prefix}/etc/${name_mysql}/
|
|
}
|
|
}
|
|
|
|
variant system_readline description {Use system readline instead of bundled readline} {
|
|
# Add readline support.
|
|
# "-DWITH_READLINE:BOOL=OFF" has the peculiar meaning "do not use the bundled copy
|
|
# of readline but use the system's (i.e. MacPorts') copy of readline"
|
|
depends_lib-append port:readline
|
|
configure.args-delete -DWITH_READLINE:BOOL=ON
|
|
configure.args-append -DWITH_READLINE:BOOL=OFF
|
|
}
|
|
|
|
notes "
|
|
On activation if no ${prefix}/etc/${name_mysql}/my.cnf file exists one
|
|
will be created which loads
|
|
${prefix}/etc/${name_mysql}/macports-default.cnf.
|
|
|
|
If a ${prefix}/etc/${name_mysql}/my.cnf file exists MacPorts does not
|
|
touch it and any changes you make to ${prefix}/etc/${name_mysql}/my.cnf
|
|
will be preserved (e.g., during port upgrades, deactivations or
|
|
activations). ${prefix}/etc/${name_mysql}/my.cnf is a good place to
|
|
customize your ${name_mysql} installation.
|
|
|
|
Any changes made to ${prefix}/etc/${name_mysql}/macports-default.cnf
|
|
will be lost during port upgrades, deactivations or activations so you
|
|
are advised to not make changes here. Currently
|
|
${prefix}/etc/${name_mysql}/macports-default.cnf contains only one
|
|
directive; to disable networking. With disabled networking it is
|
|
possible to install and have running all the MacPorts mysql ports
|
|
simultaneously.
|
|
"
|
|
|
|
livecheck.url https://downloads.mariadb.org/rest-api/mariadb/${version_branch}/latest
|
|
livecheck.regex {"release_id": *"([0-9.]+)"}
|
|
}
|
|
|
|
subport ${name_mysql}-server {
|
|
|
|
revision ${revision_server}
|
|
license BSD
|
|
description Run ${name_mysql} as server
|
|
long_description {*}${description}
|
|
|
|
supported_archs noarch
|
|
distfiles
|
|
|
|
depends_run port:${name_mysql}
|
|
|
|
if {"darwin" eq ${os.platform} && ${os.major} > 8} {
|
|
set mysqluser _mysql
|
|
} else {
|
|
set mysqluser mysql
|
|
}
|
|
add_users ${mysqluser} group=${mysqluser} realname=MySQL\ Server
|
|
|
|
pre-extract {
|
|
copy ${filespath}/org.macports.mysql-server.plist ${workpath}/org.macports.${subport}.plist
|
|
}
|
|
|
|
post-patch {
|
|
reinplace "s|@NAMEMYSQL@|${name_mysql}|g" \
|
|
${workpath}/org.macports.${subport}.plist
|
|
reinplace "s|@PREFIX@|${prefix}|g" \
|
|
${workpath}/org.macports.${subport}.plist
|
|
reinplace "s|@SUBPORT@|${subport}|g" \
|
|
${workpath}/org.macports.${subport}.plist
|
|
reinplace "s|@USER@|${mysqluser}|g" \
|
|
${workpath}/org.macports.${subport}.plist
|
|
reinplace "s|@GROUP@|${mysqluser}|g" \
|
|
${workpath}/org.macports.${subport}.plist
|
|
}
|
|
|
|
use_configure no
|
|
|
|
build {}
|
|
|
|
destroot {
|
|
xinstall -d -m 755 ${destroot}${prefix}/etc/LaunchDaemons/org.macports.${subport}
|
|
xinstall -m 0644 -o root -W ${workpath} \
|
|
org.macports.${subport}.plist \
|
|
${destroot}${prefix}/etc/LaunchDaemons/org.macports.${subport}
|
|
xinstall -d -m 755 ${destroot}/Library/LaunchDaemons
|
|
ln -s ${prefix}/etc/LaunchDaemons/org.macports.${subport}/org.macports.${subport}.plist \
|
|
${destroot}/Library/LaunchDaemons/org.macports.${subport}.plist
|
|
xinstall -m 755 -o root -d \
|
|
${destroot}${prefix}/var/run
|
|
xinstall -m 755 -o ${mysqluser} -g ${mysqluser} -d \
|
|
${destroot}${prefix}/etc/${name_mysql} \
|
|
${destroot}${prefix}/var/db/${name_mysql} \
|
|
${destroot}${prefix}/var/log/${name_mysql} \
|
|
${destroot}${prefix}/var/run/${name_mysql}
|
|
destroot.keepdirs-append \
|
|
${destroot}${prefix}/var/db/${name_mysql} \
|
|
${destroot}${prefix}/var/log/${name_mysql} \
|
|
${destroot}${prefix}/var/run/${name_mysql}
|
|
}
|
|
|
|
notes "
|
|
If this is a new install you might want to run:
|
|
|
|
\$ sudo mkdir -p ${prefix}/var/db/${name_mysql}
|
|
\$ sudo chown ${mysqluser}:${mysqluser} ${prefix}/var/db/${name_mysql}
|
|
\$ sudo -u ${mysqluser} ${prefix}/lib/${name_mysql}/bin/mariadb-install-db
|
|
"
|
|
|
|
livecheck.type none
|
|
}
|