| 1 |
# Copyright 1999-2012 Gentoo Foundation
|
| 2 |
# Distributed under the terms of the GNU General Public License v2
|
| 3 |
# $Header: /var/cvsroot/gentoo-x86/eclass/mysql-autotools.eclass,v 1.9 2012/06/07 22:06:04 zmedico Exp $
|
| 4 |
|
| 5 |
# @ECLASS: mysql-autotools.eclass
|
| 6 |
# @MAINTAINER:
|
| 7 |
# MySQL Team <mysql-bugs@gentoo.org>
|
| 8 |
# Robin H. Johnson <robbat2@gentoo.org>
|
| 9 |
# Jorge Manuel B. S. Vicetto <jmbsvicetto@gentoo.org>
|
| 10 |
# Luca Longinotti <chtekk@gentoo.org>
|
| 11 |
# @AUTHOR:
|
| 12 |
# Francesco Riosa <vivo@gentoo.org> (retired)
|
| 13 |
# @BLURB: This eclass provides support for autotools based mysql releases
|
| 14 |
# @DESCRIPTION:
|
| 15 |
# The mysql-autotools.eclass provides the support to build the mysql
|
| 16 |
# ebuilds using the autotools build system. This eclass provides
|
| 17 |
# the src_unpack, src_prepare, src_configure, src_compile, scr_install,
|
| 18 |
# pkg_preinst, pkg_postinst, pkg_config and pkg_postrm phase hooks.
|
| 19 |
|
| 20 |
inherit autotools flag-o-matic multilib
|
| 21 |
|
| 22 |
#
|
| 23 |
# HELPER FUNCTIONS:
|
| 24 |
#
|
| 25 |
|
| 26 |
# @FUNCTION: mysql-autotools_disable_test
|
| 27 |
# @DESCRIPTION:
|
| 28 |
# Helper function to disable specific tests.
|
| 29 |
mysql-autotools_disable_test() {
|
| 30 |
|
| 31 |
local rawtestname testname testsuite reason mysql_disable_file
|
| 32 |
rawtestname="${1}" ; shift
|
| 33 |
reason="${@}"
|
| 34 |
ewarn "test '${rawtestname}' disabled: '${reason}'"
|
| 35 |
|
| 36 |
testsuite="${rawtestname/.*}"
|
| 37 |
testname="${rawtestname/*.}"
|
| 38 |
mysql_disable_file="${S}/mysql-test/t/disabled.def"
|
| 39 |
#einfo "rawtestname=${rawtestname} testname=${testname} testsuite=${testsuite}"
|
| 40 |
echo "${testname} : ${reason}" >> "${mysql_disable_file}"
|
| 41 |
|
| 42 |
# ${S}/mysql-tests/t/disabled.def
|
| 43 |
#
|
| 44 |
# ${S}/mysql-tests/suite/federated/disabled.def
|
| 45 |
#
|
| 46 |
# ${S}/mysql-tests/suite/jp/t/disabled.def
|
| 47 |
# ${S}/mysql-tests/suite/ndb/t/disabled.def
|
| 48 |
# ${S}/mysql-tests/suite/rpl/t/disabled.def
|
| 49 |
# ${S}/mysql-tests/suite/parts/t/disabled.def
|
| 50 |
# ${S}/mysql-tests/suite/rpl_ndb/t/disabled.def
|
| 51 |
# ${S}/mysql-tests/suite/ndb_team/t/disabled.def
|
| 52 |
# ${S}/mysql-tests/suite/binlog/t/disabled.def
|
| 53 |
# ${S}/mysql-tests/suite/innodb/t/disabled.def
|
| 54 |
if [ -n "${testsuite}" ]; then
|
| 55 |
for mysql_disable_file in \
|
| 56 |
${S}/mysql-test/suite/${testsuite}/disabled.def \
|
| 57 |
${S}/mysql-test/suite/${testsuite}/t/disabled.def \
|
| 58 |
FAILED ; do
|
| 59 |
[ -f "${mysql_disable_file}" ] && break
|
| 60 |
done
|
| 61 |
if [ "${mysql_disabled_file}" != "FAILED" ]; then
|
| 62 |
echo "${testname} : ${reason}" >> "${mysql_disable_file}"
|
| 63 |
else
|
| 64 |
ewarn "Could not find testsuite disabled.def location for ${rawtestname}"
|
| 65 |
fi
|
| 66 |
fi
|
| 67 |
}
|
| 68 |
|
| 69 |
# @FUNCTION: mysql-autotools_configure_minimal
|
| 70 |
# @DESCRIPTION:
|
| 71 |
# Helper function to configure a minimal build
|
| 72 |
mysql-autotools_configure_minimal() {
|
| 73 |
|
| 74 |
# These are things we exclude from a minimal build, please
|
| 75 |
# note that the server actually does get built and installed,
|
| 76 |
# but we then delete it before packaging.
|
| 77 |
local minimal_exclude_list="server embedded-server extra-tools innodb bench berkeley-db row-based-replication readline"
|
| 78 |
|
| 79 |
for i in ${minimal_exclude_list} ; do
|
| 80 |
myconf="${myconf} --without-${i}"
|
| 81 |
done
|
| 82 |
myconf="${myconf} --with-extra-charsets=none"
|
| 83 |
myconf="${myconf} --enable-local-infile"
|
| 84 |
|
| 85 |
if use static ; then
|
| 86 |
myconf="${myconf} --with-client-ldflags=-all-static"
|
| 87 |
myconf="${myconf} --disable-shared --with-pic"
|
| 88 |
else
|
| 89 |
myconf="${myconf} --enable-shared --enable-static"
|
| 90 |
fi
|
| 91 |
|
| 92 |
if ! use latin1 ; then
|
| 93 |
myconf="${myconf} --with-charset=utf8"
|
| 94 |
myconf="${myconf} --with-collation=utf8_general_ci"
|
| 95 |
else
|
| 96 |
myconf="${myconf} --with-charset=latin1"
|
| 97 |
myconf="${myconf} --with-collation=latin1_swedish_ci"
|
| 98 |
fi
|
| 99 |
|
| 100 |
# MariaDB requires this flag in order to link to GPLv3 readline v6 or greater
|
| 101 |
# A note is added to the configure output
|
| 102 |
if [[ "${PN}" == "mariadb" ]] && mysql_version_is_at_least "5.1.61" ; then
|
| 103 |
myconf="${myconf} --disable-distribution"
|
| 104 |
fi
|
| 105 |
}
|
| 106 |
|
| 107 |
# @FUNCTION: mysql-autotools_configure_common
|
| 108 |
# @DESCRIPTION:
|
| 109 |
# Helper function to configure the common builds
|
| 110 |
mysql-autotools_configure_common() {
|
| 111 |
|
| 112 |
myconf="${myconf} $(use_with big-tables)"
|
| 113 |
myconf="${myconf} --enable-local-infile"
|
| 114 |
myconf="${myconf} --with-extra-charsets=all"
|
| 115 |
myconf="${myconf} --with-mysqld-user=mysql"
|
| 116 |
myconf="${myconf} --with-server"
|
| 117 |
myconf="${myconf} --with-unix-socket-path=${EPREFIX}/var/run/mysqld/mysqld.sock"
|
| 118 |
myconf="${myconf} --without-libwrap"
|
| 119 |
|
| 120 |
if use static ; then
|
| 121 |
myconf="${myconf} --with-mysqld-ldflags=-all-static"
|
| 122 |
myconf="${myconf} --with-client-ldflags=-all-static"
|
| 123 |
myconf="${myconf} --disable-shared --with-pic"
|
| 124 |
else
|
| 125 |
myconf="${myconf} --enable-shared --enable-static"
|
| 126 |
fi
|
| 127 |
|
| 128 |
if use debug ; then
|
| 129 |
myconf="${myconf} --with-debug=full"
|
| 130 |
else
|
| 131 |
myconf="${myconf} --without-debug"
|
| 132 |
if ( use cluster ); then
|
| 133 |
myconf="${myconf} --without-ndb-debug"
|
| 134 |
fi
|
| 135 |
fi
|
| 136 |
|
| 137 |
if [ -n "${MYSQL_DEFAULT_CHARSET}" -a -n "${MYSQL_DEFAULT_COLLATION}" ]; then
|
| 138 |
ewarn "You are using a custom charset of ${MYSQL_DEFAULT_CHARSET}"
|
| 139 |
ewarn "and a collation of ${MYSQL_DEFAULT_COLLATION}."
|
| 140 |
ewarn "You MUST file bugs without these variables set."
|
| 141 |
myconf="${myconf} --with-charset=${MYSQL_DEFAULT_CHARSET}"
|
| 142 |
myconf="${myconf} --with-collation=${MYSQL_DEFAULT_COLLATION}"
|
| 143 |
elif ! use latin1 ; then
|
| 144 |
myconf="${myconf} --with-charset=utf8"
|
| 145 |
myconf="${myconf} --with-collation=utf8_general_ci"
|
| 146 |
else
|
| 147 |
myconf="${myconf} --with-charset=latin1"
|
| 148 |
myconf="${myconf} --with-collation=latin1_swedish_ci"
|
| 149 |
fi
|
| 150 |
|
| 151 |
if use embedded ; then
|
| 152 |
myconf="${myconf} --with-embedded-privilege-control"
|
| 153 |
myconf="${myconf} --with-embedded-server"
|
| 154 |
else
|
| 155 |
myconf="${myconf} --without-embedded-privilege-control"
|
| 156 |
myconf="${myconf} --without-embedded-server"
|
| 157 |
fi
|
| 158 |
|
| 159 |
}
|
| 160 |
|
| 161 |
# @FUNCTION: mysql-autotools_configure_51
|
| 162 |
# @DESCRIPTION:
|
| 163 |
# Helper function to configure 5.1 and later builds
|
| 164 |
mysql-autotools_configure_51() {
|
| 165 |
|
| 166 |
# TODO: !!!! readd --without-readline
|
| 167 |
# the failure depend upon config/ac-macros/readline.m4 checking into
|
| 168 |
# readline.h instead of history.h
|
| 169 |
myconf="${myconf} $(use_with ssl ssl "${EPREFIX}"/usr)"
|
| 170 |
myconf="${myconf} --enable-assembler"
|
| 171 |
myconf="${myconf} --with-geometry"
|
| 172 |
myconf="${myconf} --with-readline"
|
| 173 |
myconf="${myconf} --with-zlib-dir=${EPREFIX}/usr/"
|
| 174 |
myconf="${myconf} --without-pstack"
|
| 175 |
myconf="${myconf} --with-plugindir=${EPREFIX}/usr/$(get_libdir)/mysql/plugin"
|
| 176 |
|
| 177 |
# This is an explict die here, because if we just forcibly disable it, then the
|
| 178 |
# user's data is not accessible.
|
| 179 |
use max-idx-128 && die "Bug #336027: upstream has a corruption issue with max-idx-128 presently"
|
| 180 |
#use max-idx-128 && myconf="${myconf} --with-max-indexes=128"
|
| 181 |
myconf="${myconf} $(use_enable community community-features)"
|
| 182 |
if use community; then
|
| 183 |
myconf="${myconf} $(use_enable profiling)"
|
| 184 |
else
|
| 185 |
myconf="${myconf} --disable-profiling"
|
| 186 |
fi
|
| 187 |
|
| 188 |
# Scan for all available plugins
|
| 189 |
local plugins_avail="$(
|
| 190 |
LANG=C \
|
| 191 |
find "${S}" \
|
| 192 |
\( \
|
| 193 |
-name 'plug.in' \
|
| 194 |
-o -iname 'configure.in' \
|
| 195 |
-o -iname 'configure.ac' \
|
| 196 |
\) \
|
| 197 |
-print0 \
|
| 198 |
| xargs -0 sed -r -n \
|
| 199 |
-e '/^MYSQL_STORAGE_ENGINE/{
|
| 200 |
s~MYSQL_STORAGE_ENGINE\([[:space:]]*\[?([-_a-z0-9]+)\]?.*,~\1 ~g ;
|
| 201 |
s~^([^ ]+).*~\1~gp;
|
| 202 |
}' \
|
| 203 |
| tr -s '\n' ' '
|
| 204 |
)"
|
| 205 |
|
| 206 |
# 5.1 introduces a new way to manage storage engines (plugins)
|
| 207 |
# like configuration=none
|
| 208 |
# This base set are required, and will always be statically built.
|
| 209 |
local plugins_sta="csv myisam myisammrg heap"
|
| 210 |
local plugins_dyn=""
|
| 211 |
local plugins_dis="example ibmdb2i"
|
| 212 |
|
| 213 |
# These aren't actually required by the base set, but are really useful:
|
| 214 |
plugins_sta="${plugins_sta} archive blackhole"
|
| 215 |
|
| 216 |
# Now the extras
|
| 217 |
if use extraengine ; then
|
| 218 |
# like configuration=max-no-ndb, archive and example removed in 5.1.11
|
| 219 |
# not added yet: ibmdb2i
|
| 220 |
# Not supporting as examples: example,daemon_example,ftexample
|
| 221 |
plugins_sta="${plugins_sta} partition"
|
| 222 |
|
| 223 |
if [[ "${PN}" != "mariadb" ]] ; then
|
| 224 |
elog "Before using the Federated storage engine, please be sure to read"
|
| 225 |
elog "http://dev.mysql.com/doc/refman/5.1/en/federated-limitations.html"
|
| 226 |
plugins_dyn="${plugins_dyn} federated"
|
| 227 |
else
|
| 228 |
elog "MariaDB includes the FederatedX engine. Be sure to read"
|
| 229 |
elog "http://askmonty.org/wiki/index.php/Manual:FederatedX_storage_engine"
|
| 230 |
plugins_dyn="${plugins_dyn} federatedx"
|
| 231 |
fi
|
| 232 |
else
|
| 233 |
plugins_dis="${plugins_dis} partition federated"
|
| 234 |
fi
|
| 235 |
|
| 236 |
# Upstream specifically requests that InnoDB always be built:
|
| 237 |
# - innobase, innodb_plugin
|
| 238 |
# Build falcon if available for 6.x series.
|
| 239 |
for i in innobase falcon ; do
|
| 240 |
[ -e "${S}"/storage/${i} ] && plugins_sta="${plugins_sta} ${i}"
|
| 241 |
done
|
| 242 |
for i in innodb_plugin ; do
|
| 243 |
[ -e "${S}"/storage/${i} ] && plugins_dyn="${plugins_dyn} ${i}"
|
| 244 |
done
|
| 245 |
|
| 246 |
# like configuration=max-no-ndb
|
| 247 |
if ( use cluster ) ; then
|
| 248 |
plugins_sta="${plugins_sta} ndbcluster partition"
|
| 249 |
plugins_dis="${plugins_dis//partition}"
|
| 250 |
myconf="${myconf} --with-ndb-binlog"
|
| 251 |
else
|
| 252 |
plugins_dis="${plugins_dis} ndbcluster"
|
| 253 |
fi
|
| 254 |
|
| 255 |
if [[ "${PN}" == "mariadb" ]] ; then
|
| 256 |
# In MariaDB, InnoDB is packaged in the xtradb directory, so it's not
|
| 257 |
# caught above.
|
| 258 |
# This is not optional, without it several upstream testcases fail.
|
| 259 |
# Also strongly recommended by upstream.
|
| 260 |
if [[ "${PV}" < "5.2.0" ]] ; then
|
| 261 |
myconf="${myconf} --with-maria-tmp-tables"
|
| 262 |
plugins_sta="${plugins_sta} maria"
|
| 263 |
else
|
| 264 |
myconf="${myconf} --with-aria-tmp-tables"
|
| 265 |
plugins_sta="${plugins_sta} aria"
|
| 266 |
fi
|
| 267 |
|
| 268 |
[ -e "${S}"/storage/innobase ] || [ -e "${S}"/storage/xtradb ] ||
|
| 269 |
die "The ${P} package doesn't provide innobase nor xtradb"
|
| 270 |
|
| 271 |
for i in innobase xtradb ; do
|
| 272 |
[ -e "${S}"/storage/${i} ] && plugins_sta="${plugins_sta} ${i}"
|
| 273 |
done
|
| 274 |
|
| 275 |
myconf="${myconf} $(use_with libevent)"
|
| 276 |
|
| 277 |
if mysql_version_is_at_least "5.2" ; then
|
| 278 |
for i in oqgraph ; do
|
| 279 |
use ${i} \
|
| 280 |
&& plugins_dyn="${plugins_dyn} ${i}" \
|
| 281 |
|| plugins_dis="${plugins_dis} ${i}"
|
| 282 |
done
|
| 283 |
fi
|
| 284 |
|
| 285 |
if mysql_version_is_at_least "5.2.5" ; then
|
| 286 |
for i in sphinx ; do
|
| 287 |
use ${i} \
|
| 288 |
&& plugins_dyn="${plugins_dyn} ${i}" \
|
| 289 |
|| plugins_dis="${plugins_dis} ${i}"
|
| 290 |
done
|
| 291 |
fi
|
| 292 |
fi
|
| 293 |
|
| 294 |
if pbxt_available && [[ "${PBXT_NEWSTYLE}" == "1" ]]; then
|
| 295 |
use pbxt \
|
| 296 |
&& plugins_sta="${plugins_sta} pbxt" \
|
| 297 |
|| plugins_dis="${plugins_dis} pbxt"
|
| 298 |
fi
|
| 299 |
|
| 300 |
use static && \
|
| 301 |
plugins_sta="${plugins_sta} ${plugins_dyn}" && \
|
| 302 |
plugins_dyn=""
|
| 303 |
|
| 304 |
einfo "Available plugins: ${plugins_avail}"
|
| 305 |
einfo "Dynamic plugins: ${plugins_dyn}"
|
| 306 |
einfo "Static plugins: ${plugins_sta}"
|
| 307 |
einfo "Disabled plugins: ${plugins_dis}"
|
| 308 |
|
| 309 |
# These are the static plugins
|
| 310 |
myconf="${myconf} --with-plugins=${plugins_sta// /,}"
|
| 311 |
# And the disabled ones
|
| 312 |
for i in ${plugins_dis} ; do
|
| 313 |
myconf="${myconf} --without-plugin-${i}"
|
| 314 |
done
|
| 315 |
}
|
| 316 |
|
| 317 |
pbxt_src_configure() {
|
| 318 |
|
| 319 |
mysql_init_vars
|
| 320 |
|
| 321 |
pushd "${WORKDIR}/pbxt-${PBXT_VERSION}" &>/dev/null
|
| 322 |
|
| 323 |
einfo "Reconfiguring dir '${PWD}'"
|
| 324 |
eautoreconf
|
| 325 |
|
| 326 |
local myconf=""
|
| 327 |
myconf="${myconf} --with-mysql=${S} --libdir=${EPREFIX}/usr/$(get_libdir)"
|
| 328 |
use debug && myconf="${myconf} --with-debug=full"
|
| 329 |
econf ${myconf} || die "Problem configuring PBXT storage engine"
|
| 330 |
}
|
| 331 |
|
| 332 |
pbxt_src_compile() {
|
| 333 |
|
| 334 |
# TODO: is it safe/needed to use emake here ?
|
| 335 |
make || die "Problem making PBXT storage engine (${myconf})"
|
| 336 |
|
| 337 |
popd
|
| 338 |
# TODO: modify test suite for PBXT
|
| 339 |
}
|
| 340 |
|
| 341 |
pbxt_src_install() {
|
| 342 |
|
| 343 |
pushd "${WORKDIR}/pbxt-${PBXT_VERSION}" &>/dev/null
|
| 344 |
emake install DESTDIR="${D}" || die "Failed to install PBXT"
|
| 345 |
popd
|
| 346 |
}
|
| 347 |
|
| 348 |
#
|
| 349 |
# EBUILD FUNCTIONS
|
| 350 |
#
|
| 351 |
|
| 352 |
# @FUNCTION: mysql-autotools_src_prepare
|
| 353 |
# @DESCRIPTION:
|
| 354 |
# Apply patches to the source code and remove unneeded bundled libs.
|
| 355 |
mysql-autotools_src_prepare() {
|
| 356 |
|
| 357 |
cd "${S}"
|
| 358 |
|
| 359 |
# Apply the patches for this MySQL version
|
| 360 |
EPATCH_SUFFIX="patch"
|
| 361 |
mkdir -p "${EPATCH_SOURCE}" || die "Unable to create epatch directory"
|
| 362 |
# Clean out old items
|
| 363 |
rm -f "${EPATCH_SOURCE}"/*
|
| 364 |
# Now link in right patches
|
| 365 |
mysql_mv_patches
|
| 366 |
# And apply
|
| 367 |
epatch
|
| 368 |
|
| 369 |
# last -fPIC fixup, per bug #305873
|
| 370 |
i="${S}"/storage/innodb_plugin/plug.in
|
| 371 |
[ -f "${i}" ] && sed -i -e '/CFLAGS/s,-prefer-non-pic,,g' "${i}"
|
| 372 |
|
| 373 |
# Additional checks, remove bundled zlib
|
| 374 |
rm -f "${S}/zlib/"*.[ch]
|
| 375 |
sed -i -e "s/zlib\/Makefile dnl/dnl zlib\/Makefile/" "${S}/configure.in"
|
| 376 |
rm -f "scripts/mysqlbug"
|
| 377 |
|
| 378 |
# Make charsets install in the right place
|
| 379 |
find . -name 'Makefile.am' \
|
| 380 |
-exec sed --in-place -e 's!$(pkgdatadir)!'${MY_SHAREDSTATEDIR}'!g' {} \;
|
| 381 |
|
| 382 |
# Remove what needs to be recreated, so we're sure it's actually done
|
| 383 |
einfo "Cleaning up old buildscript files"
|
| 384 |
find . -name Makefile \
|
| 385 |
-o -name Makefile.in \
|
| 386 |
-o -name configure \
|
| 387 |
-exec rm -f {} \;
|
| 388 |
rm -f "ltmain.sh"
|
| 389 |
rm -f "scripts/mysqlbug"
|
| 390 |
|
| 391 |
local rebuilddirlist d
|
| 392 |
|
| 393 |
if xtradb_patch_available && use xtradb ; then
|
| 394 |
einfo "Adding storage engine: Percona XtraDB (replacing InnoDB)"
|
| 395 |
pushd "${S}"/storage >/dev/null
|
| 396 |
i="innobase"
|
| 397 |
o="${WORKDIR}/storage-${i}.mysql-upstream"
|
| 398 |
# Have we been here already?
|
| 399 |
[ -d "${o}" ] && rm -f "${i}"
|
| 400 |
# Or maybe we haven't
|
| 401 |
[ -d "${i}" -a ! -d "${o}" ] && mv "${i}" "${o}"
|
| 402 |
cp -ral "${WORKDIR}/${XTRADB_P}" "${i}"
|
| 403 |
popd >/dev/null
|
| 404 |
fi
|
| 405 |
|
| 406 |
if pbxt_patch_available && [[ "${PBXT_NEWSTYLE}" == "1" ]] && use pbxt ; then
|
| 407 |
einfo "Adding storage engine: PBXT"
|
| 408 |
pushd "${S}"/storage >/dev/null
|
| 409 |
i='pbxt'
|
| 410 |
[ -d "${i}" ] && rm -rf "${i}"
|
| 411 |
cp -ral "${WORKDIR}/${PBXT_P}" "${i}"
|
| 412 |
popd >/dev/null
|
| 413 |
fi
|
| 414 |
|
| 415 |
rebuilddirlist="."
|
| 416 |
# This does not seem to be needed presently. robbat2 2010/02/23
|
| 417 |
#einfo "Updating innobase cmake"
|
| 418 |
## TODO: check this with a cmake expert
|
| 419 |
#cmake \
|
| 420 |
# -DCMAKE_C_COMPILER=$(type -P $(tc-getCC)) \
|
| 421 |
# -DCMAKE_CXX_COMPILER=$(type -P $(tc-getCXX)) \
|
| 422 |
# "storage/innobase"
|
| 423 |
|
| 424 |
for d in ${rebuilddirlist} ; do
|
| 425 |
einfo "Reconfiguring dir '${d}'"
|
| 426 |
pushd "${d}" &>/dev/null
|
| 427 |
eautoreconf
|
| 428 |
popd &>/dev/null
|
| 429 |
done
|
| 430 |
}
|
| 431 |
|
| 432 |
# @FUNCTION: mysql-autotools_src_configure
|
| 433 |
# @DESCRIPTION:
|
| 434 |
# Configure mysql to build the code for Gentoo respecting the use flags.
|
| 435 |
mysql-autotools_src_configure() {
|
| 436 |
|
| 437 |
# Make sure the vars are correctly initialized
|
| 438 |
mysql_init_vars
|
| 439 |
|
| 440 |
# $myconf is modified by the configure_* functions
|
| 441 |
local myconf=""
|
| 442 |
|
| 443 |
if use minimal ; then
|
| 444 |
mysql-autotools_configure_minimal
|
| 445 |
else
|
| 446 |
mysql-autotools_configure_common
|
| 447 |
mysql-autotools_configure_51
|
| 448 |
fi
|
| 449 |
|
| 450 |
# Bug #114895, bug #110149
|
| 451 |
filter-flags "-O" "-O[01]"
|
| 452 |
|
| 453 |
# glib-2.3.2_pre fix, bug #16496
|
| 454 |
append-flags "-DHAVE_ERRNO_AS_DEFINE=1"
|
| 455 |
|
| 456 |
# As discovered by bug #246652, doing a double-level of SSP causes NDB to
|
| 457 |
# fail badly during cluster startup.
|
| 458 |
if [[ $(gcc-major-version) -lt 4 ]]; then
|
| 459 |
filter-flags "-fstack-protector-all"
|
| 460 |
fi
|
| 461 |
|
| 462 |
CXXFLAGS="${CXXFLAGS} -fno-exceptions -fno-strict-aliasing"
|
| 463 |
CXXFLAGS="${CXXFLAGS} -felide-constructors -fno-rtti"
|
| 464 |
mysql_version_is_at_least "5.0" \
|
| 465 |
&& CXXFLAGS="${CXXFLAGS} -fno-implicit-templates"
|
| 466 |
export CXXFLAGS
|
| 467 |
|
| 468 |
# bug #283926, with GCC4.4, this is required to get correct behavior.
|
| 469 |
append-flags -fno-strict-aliasing
|
| 470 |
|
| 471 |
# bug #335185, #335995, with >= GCC4.3.3 on x86 only, omit-frame-pointer
|
| 472 |
# causes a mis-compile.
|
| 473 |
# Upstream bugs:
|
| 474 |
# http://gcc.gnu.org/bugzilla/show_bug.cgi?id=38562
|
| 475 |
# http://bugs.mysql.com/bug.php?id=45205
|
| 476 |
use x86 && version_is_at_least "4.3.3" "$(gcc-fullversion)" && \
|
| 477 |
append-flags -fno-omit-frame-pointer && \
|
| 478 |
filter-flags -fomit-frame-pointer
|
| 479 |
|
| 480 |
econf \
|
| 481 |
--libexecdir="${EPREFIX}/usr/sbin" \
|
| 482 |
--sysconfdir="${MY_SYSCONFDIR}" \
|
| 483 |
--localstatedir="${MY_LOCALSTATEDIR}" \
|
| 484 |
--sharedstatedir="${MY_SHAREDSTATEDIR}" \
|
| 485 |
--libdir="${MY_LIBDIR}" \
|
| 486 |
--includedir="${MY_INCLUDEDIR}" \
|
| 487 |
--with-low-memory \
|
| 488 |
--with-client-ldflags=-lstdc++ \
|
| 489 |
--enable-thread-safe-client \
|
| 490 |
--with-comment="Gentoo Linux ${PF}" \
|
| 491 |
--without-docs \
|
| 492 |
--with-LIBDIR="$(get_libdir)" \
|
| 493 |
${myconf} || die "econf failed"
|
| 494 |
|
| 495 |
# TODO: Move this before autoreconf !!!
|
| 496 |
find . -type f -name Makefile -print0 \
|
| 497 |
| xargs -0 -n100 sed -i \
|
| 498 |
-e 's|^pkglibdir *= *$(libdir)/mysql|pkglibdir = $(libdir)|;s|^pkgincludedir *= *$(includedir)/mysql|pkgincludedir = $(includedir)|'
|
| 499 |
|
| 500 |
if [[ $EAPI == 2 ]] && [[ "${PBXT_NEWSTYLE}" != "1" ]]; then
|
| 501 |
pbxt_patch_available && use pbxt && pbxt_src_configure
|
| 502 |
fi
|
| 503 |
}
|
| 504 |
|
| 505 |
# @FUNCTION: mysql-autotools_src_compile
|
| 506 |
# @DESCRIPTION:
|
| 507 |
# Compile the mysql code.
|
| 508 |
mysql-autotools_src_compile() {
|
| 509 |
|
| 510 |
emake || die "emake failed"
|
| 511 |
|
| 512 |
if [[ "${PBXT_NEWSTYLE}" != "1" ]]; then
|
| 513 |
pbxt_patch_available && use pbxt && pbxt_src_compile
|
| 514 |
fi
|
| 515 |
}
|
| 516 |
|
| 517 |
# @FUNCTION: mysql-autotools_src_install
|
| 518 |
# @DESCRIPTION:
|
| 519 |
# Install mysql.
|
| 520 |
mysql-autotools_src_install() {
|
| 521 |
|
| 522 |
# Make sure the vars are correctly initialized
|
| 523 |
mysql_init_vars
|
| 524 |
|
| 525 |
emake install \
|
| 526 |
DESTDIR="${D}" \
|
| 527 |
benchdir_root="${MY_SHAREDSTATEDIR}" \
|
| 528 |
testroot="${MY_SHAREDSTATEDIR}" \
|
| 529 |
|| die "emake install failed"
|
| 530 |
|
| 531 |
if [[ "${PBXT_NEWSTYLE}" != "1" ]]; then
|
| 532 |
pbxt_patch_available && use pbxt && pbxt_src_install
|
| 533 |
fi
|
| 534 |
|
| 535 |
# Convenience links
|
| 536 |
einfo "Making Convenience links for mysqlcheck multi-call binary"
|
| 537 |
dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlanalyze"
|
| 538 |
dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlrepair"
|
| 539 |
dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqloptimize"
|
| 540 |
|
| 541 |
# Various junk (my-*.cnf moved elsewhere)
|
| 542 |
einfo "Removing duplicate /usr/share/mysql files"
|
| 543 |
rm -Rf "${ED}/usr/share/info"
|
| 544 |
for removeme in "mysql-log-rotate" mysql.server* \
|
| 545 |
binary-configure* my-*.cnf mi_test_all*
|
| 546 |
do
|
| 547 |
rm -f "${D}"/${MY_SHAREDSTATEDIR}/${removeme}
|
| 548 |
done
|
| 549 |
|
| 550 |
# Clean up stuff for a minimal build
|
| 551 |
if use minimal ; then
|
| 552 |
einfo "Remove all extra content for minimal build"
|
| 553 |
rm -Rf "${D}${MY_SHAREDSTATEDIR}"/{mysql-test,sql-bench}
|
| 554 |
rm -f "${ED}"/usr/bin/{mysql{_install_db,manager*,_secure_installation,_fix_privilege_tables,hotcopy,_convert_table_format,d_multi,_fix_extensions,_zap,_explain_log,_tableinfo,d_safe,_install,_waitpid,binlog,test},myisam*,isam*,pack_isam}
|
| 555 |
rm -f "${ED}/usr/sbin/mysqld"
|
| 556 |
rm -f "${D}${MY_LIBDIR}"/lib{heap,merge,nisam,my{sys,strings,sqld,isammrg,isam},vio,dbug}.a
|
| 557 |
fi
|
| 558 |
|
| 559 |
# Unless they explicitly specific USE=test, then do not install the
|
| 560 |
# testsuite. It DOES have a use to be installed, esp. when you want to do a
|
| 561 |
# validation of your database configuration after tuning it.
|
| 562 |
if use !test ; then
|
| 563 |
rm -rf "${D}"/${MY_SHAREDSTATEDIR}/mysql-test
|
| 564 |
fi
|
| 565 |
|
| 566 |
# Configuration stuff
|
| 567 |
case ${MYSQL_PV_MAJOR} in
|
| 568 |
5.[1-9]|6*|7*) mysql_mycnf_version="5.1" ;;
|
| 569 |
esac
|
| 570 |
einfo "Building default my.cnf (${mysql_mycnf_version})"
|
| 571 |
insinto "${MY_SYSCONFDIR#${EPREFIX}}"
|
| 572 |
doins scripts/mysqlaccess.conf
|
| 573 |
mycnf_src="my.cnf-${mysql_mycnf_version}"
|
| 574 |
sed -e "s!@DATADIR@!${MY_DATADIR}!g" \
|
| 575 |
-e "s!/tmp!${EPREFIX}/tmp!" \
|
| 576 |
-e "s!/usr!${EPREFIX}/usr!" \
|
| 577 |
-e "s!= /var!= ${EPREFIX}/var!" \
|
| 578 |
"${FILESDIR}/${mycnf_src}" \
|
| 579 |
> "${TMPDIR}/my.cnf.ok"
|
| 580 |
if use latin1 ; then
|
| 581 |
sed -i \
|
| 582 |
-e "/character-set/s|utf8|latin1|g" \
|
| 583 |
"${TMPDIR}/my.cnf.ok"
|
| 584 |
fi
|
| 585 |
newins "${TMPDIR}/my.cnf.ok" my.cnf
|
| 586 |
|
| 587 |
# Minimal builds don't have the MySQL server
|
| 588 |
if ! use minimal ; then
|
| 589 |
einfo "Creating initial directories"
|
| 590 |
# Empty directories ...
|
| 591 |
diropts "-m0750"
|
| 592 |
if [[ "${PREVIOUS_DATADIR}" != "yes" ]] ; then
|
| 593 |
dodir "${MY_DATADIR#${EPREFIX}}"
|
| 594 |
keepdir "${MY_DATADIR#${EPREFIX}}"
|
| 595 |
chown -R mysql:mysql "${D}/${MY_DATADIR}"
|
| 596 |
fi
|
| 597 |
|
| 598 |
diropts "-m0755"
|
| 599 |
for folder in "${MY_LOGDIR#${EPREFIX}}" "/var/run/mysqld" ; do
|
| 600 |
dodir "${folder}"
|
| 601 |
keepdir "${folder}"
|
| 602 |
chown -R mysql:mysql "${ED}/${folder}"
|
| 603 |
done
|
| 604 |
fi
|
| 605 |
|
| 606 |
# Docs
|
| 607 |
einfo "Installing docs"
|
| 608 |
for i in README ChangeLog EXCEPTIONS-CLIENT INSTALL-SOURCE ; do
|
| 609 |
[[ -f "$i" ]] && dodoc "$i"
|
| 610 |
done
|
| 611 |
doinfo "${S}"/Docs/mysql.info
|
| 612 |
|
| 613 |
# Minimal builds don't have the MySQL server
|
| 614 |
if ! use minimal ; then
|
| 615 |
einfo "Including support files and sample configurations"
|
| 616 |
docinto "support-files"
|
| 617 |
for script in \
|
| 618 |
"${S}"/support-files/my-*.cnf \
|
| 619 |
"${S}"/support-files/magic \
|
| 620 |
"${S}"/support-files/ndb-config-2-node.ini
|
| 621 |
do
|
| 622 |
[[ -f "$script" ]] && dodoc "${script}"
|
| 623 |
done
|
| 624 |
|
| 625 |
docinto "scripts"
|
| 626 |
for script in "${S}"/scripts/mysql* ; do
|
| 627 |
[[ -f "$script" ]] && [[ "${script%.sh}" == "${script}" ]] && dodoc "${script}"
|
| 628 |
done
|
| 629 |
|
| 630 |
fi
|
| 631 |
|
| 632 |
mysql_lib_symlinks "${ED}"
|
| 633 |
}
|