| 1 | # Copyright 1999-2007 Gentoo Foundation |
1 | # Copyright 1999-2009 Gentoo Foundation |
| 2 | # Distributed under the terms of the GNU General Public License v2 |
2 | # Distributed under the terms of the GNU General Public License v2 |
| 3 | # $Header: /var/cvsroot/gentoo-x86/eclass/mysql.eclass,v 1.107 2009/02/28 10:49:50 robbat2 Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/mysql.eclass,v 1.120 2009/12/09 18:46:53 robbat2 Exp $ |
| 4 | |
4 | |
|
|
5 | # @ECLASS: mysql.eclass |
|
|
6 | # @MAINTAINER: |
| 5 | # Author: Francesco Riosa (Retired) <vivo@gentoo.org> |
7 | # Author: Francesco Riosa (Retired) <vivo@gentoo.org> |
| 6 | # Maintainer: MySQL Team <mysql-bugs@gentoo.org> |
8 | # Maintainers: MySQL Team <mysql-bugs@gentoo.org> |
| 7 | # - Luca Longinotti <chtekk@gentoo.org> |
9 | # - Luca Longinotti <chtekk@gentoo.org> |
| 8 | # - Robin H. Johnson <robbat2@gentoo.org> |
10 | # - Robin H. Johnson <robbat2@gentoo.org> |
|
|
11 | # @BLURB: This eclass provides most of the functions for mysql ebuilds |
|
|
12 | # @DESCRIPTION: |
|
|
13 | # The mysql.eclass provides almost all the code to build the mysql ebuilds |
|
|
14 | # including the src_unpack, src_prepare, src_configure, src_compile, |
|
|
15 | # scr_install, pkg_preinst, pkg_postinst, pkg_config and pkg_postrm |
|
|
16 | # phase hooks. |
| 9 | |
17 | |
| 10 | WANT_AUTOCONF="latest" |
18 | WANT_AUTOCONF="latest" |
| 11 | WANT_AUTOMAKE="latest" |
19 | WANT_AUTOMAKE="latest" |
| 12 | |
20 | |
| 13 | inherit eutils flag-o-matic gnuconfig autotools mysql_fx versionator |
21 | inherit eutils flag-o-matic gnuconfig autotools mysql_fx versionator |
|
|
22 | |
|
|
23 | case "${EAPI:-0}" in |
|
|
24 | 2) |
|
|
25 | EXPORT_FUNCTIONS pkg_setup \ |
|
|
26 | src_unpack src_prepare \ |
|
|
27 | src_configure src_compile \ |
|
|
28 | src_install \ |
|
|
29 | pkg_preinst pkg_postinst \ |
|
|
30 | pkg_config pkg_postrm |
|
|
31 | IUSE_DEFAULT_ON='+' |
|
|
32 | ;; |
|
|
33 | 0 | 1) |
|
|
34 | EXPORT_FUNCTIONS pkg_setup \ |
|
|
35 | src_unpack \ |
|
|
36 | src_compile \ |
|
|
37 | src_install \ |
|
|
38 | pkg_preinst pkg_postinst \ |
|
|
39 | pkg_config pkg_postrm |
|
|
40 | ;; |
|
|
41 | *) |
|
|
42 | die "Unsupported EAPI: ${EAPI}" ;; |
|
|
43 | esac |
| 14 | |
44 | |
| 15 | # Shorten the path because the socket path length must be shorter than 107 chars |
45 | # Shorten the path because the socket path length must be shorter than 107 chars |
| 16 | # and we will run a mysql server during test phase |
46 | # and we will run a mysql server during test phase |
| 17 | S="${WORKDIR}/mysql" |
47 | S="${WORKDIR}/mysql" |
| 18 | |
48 | |
| 19 | [[ "${MY_EXTRAS_VER}" == "latest" ]] && MY_EXTRAS_VER="20070108" |
49 | [[ "${MY_EXTRAS_VER}" == "latest" ]] && MY_EXTRAS_VER="20090228-0714Z" |
| 20 | if [[ "${MY_EXTRAS_VER}" == "live" ]]; then |
50 | if [[ "${MY_EXTRAS_VER}" == "live" ]]; then |
| 21 | EGIT_PROJECT=mysql-extras |
51 | EGIT_PROJECT=mysql-extras |
| 22 | EGIT_REPO_URI="git://git.overlays.gentoo.org/proj/mysql-extras.git" |
52 | EGIT_REPO_URI="git://git.overlays.gentoo.org/proj/mysql-extras.git" |
| 23 | inherit git |
53 | inherit git |
| 24 | fi |
54 | fi |
| 25 | |
55 | |
| 26 | if [[ ${PR#r} -lt 60 ]] ; then |
56 | # @ECLASS-VARIABLE: MYSQL_VERSION_ID |
| 27 | IS_BITKEEPER=0 |
57 | # @DESCRIPTION: |
| 28 | elif [[ ${PR#r} -lt 90 ]] ; then |
|
|
| 29 | IS_BITKEEPER=60 |
|
|
| 30 | else |
|
|
| 31 | IS_BITKEEPER=90 |
|
|
| 32 | fi |
|
|
| 33 | |
|
|
| 34 | # MYSQL_VERSION_ID will be: |
58 | # MYSQL_VERSION_ID will be: |
| 35 | # major * 10e6 + minor * 10e4 + micro * 10e2 + gentoo revision number, all [0..99] |
59 | # major * 10e6 + minor * 10e4 + micro * 10e2 + gentoo revision number, all [0..99] |
| 36 | # This is an important part, because many of the choices the MySQL ebuild will do |
60 | # This is an important part, because many of the choices the MySQL ebuild will do |
| 37 | # depend on this variable. |
61 | # depend on this variable. |
| 38 | # In particular, the code below transforms a $PVR like "5.0.18-r3" in "5001803" |
62 | # In particular, the code below transforms a $PVR like "5.0.18-r3" in "5001803" |
| … | |
… | |
| 47 | MYSQL_VERSION_ID="${MYSQL_VERSION_ID}${tpv[${vatom}]:0-2}" |
71 | MYSQL_VERSION_ID="${MYSQL_VERSION_ID}${tpv[${vatom}]:0-2}" |
| 48 | done |
72 | done |
| 49 | # strip leading "0" (otherwise it's considered an octal number by BASH) |
73 | # strip leading "0" (otherwise it's considered an octal number by BASH) |
| 50 | MYSQL_VERSION_ID=${MYSQL_VERSION_ID##"0"} |
74 | MYSQL_VERSION_ID=${MYSQL_VERSION_ID##"0"} |
| 51 | |
75 | |
|
|
76 | # @ECLASS-VARIABLE: MYSQL_COMMUNITY_FEATURES |
|
|
77 | # @DESCRIPTION: |
|
|
78 | # Specifiy if community features are available. Possible values are 1 (yes) |
|
|
79 | # and 0 (no). |
|
|
80 | # Community features are available in mysql-community |
|
|
81 | # AND in the re-merged mysql-5.0.82 and newer |
|
|
82 | if [ "${PN}" == "mysql-community" ]; then |
|
|
83 | MYSQL_COMMUNITY_FEATURES=1 |
|
|
84 | elif [ "${PV#5.0}" != "${PV}" ] && mysql_version_is_at_least "5.0.82"; then |
|
|
85 | MYSQL_COMMUNITY_FEATURES=1 |
|
|
86 | elif [ "${PV#5.1}" != "${PV}" ] && mysql_version_is_at_least "5.1.28"; then |
|
|
87 | MYSQL_COMMUNITY_FEATURES=1 |
|
|
88 | elif [ "${PV#5.4}" != "${PV}" ]; then |
|
|
89 | MYSQL_COMMUNITY_FEATURES=1 |
|
|
90 | else |
|
|
91 | MYSQL_COMMUNITY_FEATURES=0 |
|
|
92 | fi |
|
|
93 | |
|
|
94 | # @ECLASS-VARIABLE: XTRADB_VER |
|
|
95 | # @DESCRIPTION: |
|
|
96 | # Version of the XTRADB storage engine |
|
|
97 | XTRADB_VER="${XTRADB_VER}" |
|
|
98 | |
|
|
99 | # @ECLASS-VARIABLE: PERCONA_VER |
|
|
100 | # @DESCRIPTION: |
|
|
101 | # Designation by PERCONA for a MySQL version to apply an XTRADB release |
|
|
102 | PERCONA_VER="${PERCONA_VER}" |
|
|
103 | |
| 52 | # Be warned, *DEPEND are version-dependant |
104 | # Be warned, *DEPEND are version-dependant |
| 53 | # These are used for both runtime and compiletime |
105 | # These are used for both runtime and compiletime |
| 54 | DEPEND="ssl? ( >=dev-libs/openssl-0.9.6d ) |
106 | DEPEND="ssl? ( >=dev-libs/openssl-0.9.6d ) |
| 55 | userland_GNU? ( sys-process/procps ) |
107 | userland_GNU? ( sys-process/procps ) |
| 56 | >=sys-apps/sed-4 |
108 | >=sys-apps/sed-4 |
| … | |
… | |
| 74 | |
126 | |
| 75 | # compile-time-only |
127 | # compile-time-only |
| 76 | mysql_version_is_at_least "5.1.12" \ |
128 | mysql_version_is_at_least "5.1.12" \ |
| 77 | && DEPEND="${DEPEND} >=dev-util/cmake-2.4.3" |
129 | && DEPEND="${DEPEND} >=dev-util/cmake-2.4.3" |
| 78 | |
130 | |
| 79 | # BitKeeper dependency, compile-time only |
|
|
| 80 | [[ ${IS_BITKEEPER} -eq 90 ]] && DEPEND="${DEPEND} dev-util/bk_client" |
|
|
| 81 | |
|
|
| 82 | |
|
|
| 83 | # dev-perl/DBD-mysql is needed by some scripts installed by MySQL |
131 | # dev-perl/DBD-mysql is needed by some scripts installed by MySQL |
| 84 | PDEPEND="perl? ( >=dev-perl/DBD-mysql-2.9004 )" |
132 | PDEPEND="perl? ( >=dev-perl/DBD-mysql-2.9004 )" |
| 85 | |
133 | |
| 86 | # For other stuff to bring us in |
134 | # For other stuff to bring us in |
| 87 | PDEPEND="${PDEPEND} =virtual/mysql-$(get_version_component_range 1-2 ${PV})" |
135 | PDEPEND="${PDEPEND} =virtual/mysql-$(get_version_component_range 1-2 ${PV})" |
| 88 | |
136 | |
| 89 | # Work out the default SERVER_URI correctly |
137 | # Work out the default SERVER_URI correctly |
| 90 | if [ -z "${SERVER_URI}" ]; then |
138 | if [ -z "${SERVER_URI}" ]; then |
| 91 | # The community build is on the mirrors |
139 | # The community build is on the mirrors |
| 92 | if [ "${PN}" == "mysql-community" ]; then |
140 | if [ "${MYSQL_COMMUNITY_FEATURES}" == "1" ]; then |
| 93 | SERVER_URI="mirror://mysql/Downloads/MySQL-${PV%.*}/mysql-${PV//_/-}.tar.gz" |
141 | SERVER_URI="mirror://mysql/Downloads/MySQL-${PV%.*}/mysql-${PV//_/-}.tar.gz" |
| 94 | # The enterprise source is on the primary site only |
142 | # The (old) enterprise source is on the primary site only |
| 95 | elif [ "${PN}" == "mysql" ]; then |
143 | elif [ "${PN}" == "mysql" ]; then |
| 96 | SERVER_URI="ftp://ftp.mysql.com/pub/mysql/src/mysql-${PV//_/-}.tar.gz" |
144 | SERVER_URI="ftp://ftp.mysql.com/pub/mysql/src/mysql-${PV//_/-}.tar.gz" |
| 97 | fi |
145 | fi |
| 98 | fi |
146 | fi |
| 99 | |
147 | |
| … | |
… | |
| 101 | SRC_URI="${SERVER_URI}" |
149 | SRC_URI="${SERVER_URI}" |
| 102 | |
150 | |
| 103 | [[ ${MY_EXTRAS_VER} != live ]] && SRC_URI="${SRC_URI} |
151 | [[ ${MY_EXTRAS_VER} != live ]] && SRC_URI="${SRC_URI} |
| 104 | mirror://gentoo/mysql-extras-${MY_EXTRAS_VER}.tar.bz2 |
152 | mirror://gentoo/mysql-extras-${MY_EXTRAS_VER}.tar.bz2 |
| 105 | http://g3nt8.org/patches/mysql-extras-${MY_EXTRAS_VER}.tar.bz2" |
153 | http://g3nt8.org/patches/mysql-extras-${MY_EXTRAS_VER}.tar.bz2" |
|
|
154 | PBXT_SRC_URI="mirror://sourceforge/pbxt/pbxt-${PBXT_VERSION}.tar.gz" |
| 106 | mysql_version_is_at_least "5.1.12" \ |
155 | mysql_version_is_at_least "5.1.12" \ |
| 107 | && [[ -n "${PBXT_VERSION}" ]] \ |
156 | && [[ -n "${PBXT_VERSION}" ]] \ |
| 108 | && SRC_URI="${SRC_URI} pbxt? ( mirror://sourceforge/pbxt/pbxt-${PBXT_VERSION}.tar.gz )" |
157 | && SRC_URI="${SRC_URI} pbxt? ( ${PBXT_SRC_URIPBXT_SRC_URI} )" |
|
|
158 | |
|
|
159 | # Get the percona tarball if XTRADB_VER and PERCONA_VER are both set |
|
|
160 | XTRADB_SRC_URI="http://www.percona.com/${PN}/xtradb/${PERCONA_VER}/source/percona-xtradb-${XTRADB_VER}.tar.gz" |
|
|
161 | mysql_version_is_at_least "5.1.26" \ |
|
|
162 | && [[ -n ${XTRADB_VER} && -n ${PERCONA_VER} ]] \ |
|
|
163 | && SRC_URI="${SRC_URI} xtradb? ( ${XTRADB_SRC_URI} )" |
| 109 | |
164 | |
| 110 | DESCRIPTION="A fast, multi-threaded, multi-user SQL database server." |
165 | DESCRIPTION="A fast, multi-threaded, multi-user SQL database server." |
| 111 | HOMEPAGE="http://www.mysql.com/" |
166 | HOMEPAGE="http://www.mysql.com/" |
| 112 | LICENSE="GPL-2" |
167 | LICENSE="GPL-2" |
| 113 | SLOT="0" |
168 | SLOT="0" |
| 114 | IUSE="big-tables debug embedded minimal perl selinux ssl static" |
169 | IUSE="big-tables debug embedded minimal ${IUSE_DEFAULT_ON}perl selinux ssl static" |
| 115 | |
170 | |
| 116 | mysql_version_is_at_least "4.1" \ |
171 | mysql_version_is_at_least "4.1" \ |
| 117 | && IUSE="${IUSE} latin1" |
172 | && IUSE="${IUSE} latin1" |
| 118 | |
173 | |
| 119 | mysql_version_is_at_least "4.1.3" \ |
174 | mysql_version_is_at_least "4.1.3" \ |
| … | |
… | |
| 129 | || IUSE="${IUSE} berkdb" |
184 | || IUSE="${IUSE} berkdb" |
| 130 | |
185 | |
| 131 | mysql_version_is_at_least "5.1.12" \ |
186 | mysql_version_is_at_least "5.1.12" \ |
| 132 | && IUSE="${IUSE} pbxt" |
187 | && IUSE="${IUSE} pbxt" |
| 133 | |
188 | |
| 134 | EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_preinst \ |
189 | mysql_version_is_at_least "5.1.26" \ |
| 135 | pkg_postinst pkg_config pkg_postrm |
190 | && IUSE="${IUSE} xtradb" |
|
|
191 | |
|
|
192 | [ "${MYSQL_COMMUNITY_FEATURES}" == "1" ] \ |
|
|
193 | && IUSE="${IUSE} ${IUSE_DEFAULT_ON}community profiling" |
| 136 | |
194 | |
| 137 | # |
195 | # |
| 138 | # HELPER FUNCTIONS: |
196 | # HELPER FUNCTIONS: |
| 139 | # |
197 | # |
| 140 | |
198 | |
| 141 | bitkeeper_fetch() { |
199 | # @FUNCTION: mysql_disable_test |
| 142 | local reposuf |
200 | # @DESCRIPTION: |
| 143 | if [[ -z "${1}" ]] ; then |
201 | # Helper function to disable specific tests. |
| 144 | local tpv |
|
|
| 145 | tpv=( ${PV//[-._]/ } ) |
|
|
| 146 | reposuf="mysql-${tpv[0]}.${tpv[1]}" |
|
|
| 147 | else |
|
|
| 148 | reposuf="${1}" |
|
|
| 149 | fi |
|
|
| 150 | einfo "Using '${reposuf}' repository." |
|
|
| 151 | local repo_uri="bk://mysql.bkbits.net/${reposuf}" |
|
|
| 152 | ## -- ebk_store_dir: bitkeeper sources store directory |
|
|
| 153 | local ebk_store_dir="${PORTAGE_ACTUAL_DISTDIR-${DISTDIR}}/bk-src" |
|
|
| 154 | ## -- ebk_fetch_cmd: bitkeeper fetch command |
|
|
| 155 | # always fetch the latest revision, use -r<revision> if a specified revision is wanted |
|
|
| 156 | # hint: does not work |
|
|
| 157 | local ebk_fetch_cmd="sfioball" |
|
|
| 158 | ## -- ebk_update_cmd: bitkeeper update command |
|
|
| 159 | local ebk_update_cmd="update" |
|
|
| 160 | |
|
|
| 161 | # addread "/etc/bitkeeper" |
|
|
| 162 | addwrite "${ebk_store_dir}" |
|
|
| 163 | |
|
|
| 164 | if [[ ! -d "${ebk_store_dir}" ]] ; then |
|
|
| 165 | debug-print "${FUNCNAME}: initial checkout, creating bitkeeper directory ..." |
|
|
| 166 | mkdir -p "${ebk_store_dir}" || die "BK: couldn't mkdir ${ebk_store_dir}" |
|
|
| 167 | fi |
|
|
| 168 | |
|
|
| 169 | pushd "${ebk_store_dir}" || die "BK: couldn't chdir to ${ebk_store_dir}" |
|
|
| 170 | |
|
|
| 171 | local wc_path=${reposuf} |
|
|
| 172 | |
|
|
| 173 | if [[ ! -d "${wc_path}" ]] ; then |
|
|
| 174 | local options="-r+" |
|
|
| 175 | |
|
|
| 176 | # first checkout |
|
|
| 177 | einfo "bitkeeper checkout start -->" |
|
|
| 178 | einfo " repository: ${repo_uri}" |
|
|
| 179 | |
|
|
| 180 | ${ebk_fetch_cmd} ${options} "${repo_uri}" "${wc_path}" \ |
|
|
| 181 | || die "BK: couldn't fetch from ${repo_uri}" |
|
|
| 182 | else |
|
|
| 183 | if [[ ! -d "${wc_path}/BK" ]] ; then |
|
|
| 184 | popd |
|
|
| 185 | die "Looks like ${wc_path} is not a bitkeeper path" |
|
|
| 186 | fi |
|
|
| 187 | |
|
|
| 188 | # update working copy |
|
|
| 189 | einfo "bitkeeper update start -->" |
|
|
| 190 | einfo " repository: ${repo_uri}" |
|
|
| 191 | |
|
|
| 192 | ${ebk_update_cmd} "${repo_uri}" "${wc_path}" \ |
|
|
| 193 | || die "BK: couldn't update from ${repo_uri} to ${wc_path}" |
|
|
| 194 | fi |
|
|
| 195 | |
|
|
| 196 | einfo " working copy: ${wc_path}" |
|
|
| 197 | cd "${wc_path}" |
|
|
| 198 | rsync -rlpgo --exclude="BK/" . "${S}" || die "BK: couldn't export to ${S}" |
|
|
| 199 | |
|
|
| 200 | echo |
|
|
| 201 | popd |
|
|
| 202 | } |
|
|
| 203 | |
|
|
| 204 | mysql_disable_test() { |
202 | mysql_disable_test() { |
| 205 | local testname="${1}" ; shift |
203 | local testname="${1}" ; shift |
| 206 | local reason="${@}" |
204 | local reason="${@}" |
| 207 | local mysql_disable_file="${S}/mysql-test/t/disabled.def" |
205 | local mysql_disable_file="${S}/mysql-test/t/disabled.def" |
| 208 | echo ${testname} : ${reason} >> "${mysql_disable_file}" |
206 | echo ${testname} : ${reason} >> "${mysql_disable_file}" |
| 209 | ewarn "test '${testname}' disabled: '${reason}'" |
207 | ewarn "test '${testname}' disabled: '${reason}'" |
| 210 | } |
208 | } |
| 211 | |
209 | |
|
|
210 | # @FUNCTION: mysql_init_vars |
|
|
211 | # @DESCRIPTION: |
| 212 | # void mysql_init_vars() |
212 | # void mysql_init_vars() |
| 213 | # |
|
|
| 214 | # Initialize global variables |
213 | # Initialize global variables |
| 215 | # 2005-11-19 <vivo@gentoo.org> |
214 | # 2005-11-19 <vivo@gentoo.org> |
| 216 | |
|
|
| 217 | mysql_init_vars() { |
215 | mysql_init_vars() { |
| 218 | MY_SHAREDSTATEDIR=${MY_SHAREDSTATEDIR="/usr/share/mysql"} |
216 | MY_SHAREDSTATEDIR=${MY_SHAREDSTATEDIR="/usr/share/mysql"} |
| 219 | MY_SYSCONFDIR=${MY_SYSCONFDIR="/etc/mysql"} |
217 | MY_SYSCONFDIR=${MY_SYSCONFDIR="/etc/mysql"} |
| 220 | MY_LIBDIR=${MY_LIBDIR="/usr/$(get_libdir)/mysql"} |
218 | MY_LIBDIR=${MY_LIBDIR="/usr/$(get_libdir)/mysql"} |
| 221 | MY_LOCALSTATEDIR=${MY_LOCALSTATEDIR="/var/lib/mysql"} |
219 | MY_LOCALSTATEDIR=${MY_LOCALSTATEDIR="/var/lib/mysql"} |
| … | |
… | |
| 248 | PREVIOUS_DATADIR="yes" |
246 | PREVIOUS_DATADIR="yes" |
| 249 | else |
247 | else |
| 250 | PREVIOUS_DATADIR="no" |
248 | PREVIOUS_DATADIR="no" |
| 251 | fi |
249 | fi |
| 252 | export PREVIOUS_DATADIR |
250 | export PREVIOUS_DATADIR |
|
|
251 | fi |
|
|
252 | else |
|
|
253 | if [[ ${EBUILD_PHASE} == "config" ]]; then |
|
|
254 | local new_MY_DATADIR |
|
|
255 | new_MY_DATADIR=`"my_print_defaults" mysqld 2>/dev/null \ |
|
|
256 | | sed -ne '/datadir/s|^--datadir=||p' \ |
|
|
257 | | tail -n1` |
|
|
258 | |
|
|
259 | if [[ ( -n "${new_MY_DATADIR}" ) && ( "${new_MY_DATADIR}" != "${MY_DATADIR}" ) ]]; then |
|
|
260 | ewarn "MySQL MY_DATADIR has changed" |
|
|
261 | ewarn "from ${MY_DATADIR}" |
|
|
262 | ewarn "to ${new_MY_DATADIR}" |
|
|
263 | MY_DATADIR="${new_MY_DATADIR}" |
|
|
264 | fi |
| 253 | fi |
265 | fi |
| 254 | fi |
266 | fi |
| 255 | |
267 | |
| 256 | MY_SOURCEDIR=${SERVER_URI##*/} |
268 | MY_SOURCEDIR=${SERVER_URI##*/} |
| 257 | MY_SOURCEDIR=${MY_SOURCEDIR%.tar*} |
269 | MY_SOURCEDIR=${MY_SOURCEDIR%.tar*} |
| … | |
… | |
| 403 | elog "http://dev.mysql.com/doc/mysql/en/federated-limitations.html" |
415 | elog "http://dev.mysql.com/doc/mysql/en/federated-limitations.html" |
| 404 | myconf="${myconf} --with-federated-storage-engine" |
416 | myconf="${myconf} --with-federated-storage-engine" |
| 405 | fi |
417 | fi |
| 406 | fi |
418 | fi |
| 407 | |
419 | |
| 408 | if [ "${PN}" == "mysql-community" ]; then |
420 | if [ "${MYSQL_COMMUNITY_FEATURES}" == "1" ]; then |
| 409 | myconf="${myconf} --enable-community-features" |
421 | myconf="${myconf} `use_enable community community-features`" |
|
|
422 | if use community; then |
|
|
423 | myconf="${myconf} `use_enable profiling`" |
|
|
424 | else |
|
|
425 | myconf="${myconf} --disable-profiling" |
|
|
426 | fi |
| 410 | fi |
427 | fi |
| 411 | |
428 | |
| 412 | mysql_version_is_at_least "5.0.18" \ |
429 | mysql_version_is_at_least "5.0.18" \ |
| 413 | && use max-idx-128 \ |
430 | && use max-idx-128 \ |
| 414 | && myconf="${myconf} --with-max-indexes=128" |
431 | && myconf="${myconf} --with-max-indexes=128" |
| … | |
… | |
| 452 | fi |
469 | fi |
| 453 | |
470 | |
| 454 | myconf="${myconf} --with-plugins=${plugins}" |
471 | myconf="${myconf} --with-plugins=${plugins}" |
| 455 | } |
472 | } |
| 456 | |
473 | |
| 457 | pbxt_src_compile() { |
474 | pbxt_src_configure() { |
| 458 | mysql_init_vars |
475 | mysql_init_vars |
| 459 | |
476 | |
| 460 | pushd "${WORKDIR}/pbxt-${PBXT_VERSION}" &>/dev/null |
477 | pushd "${WORKDIR}/pbxt-${PBXT_VERSION}" &>/dev/null |
| 461 | |
478 | |
| 462 | einfo "Reconfiguring dir '${PWD}'" |
479 | einfo "Reconfiguring dir '${PWD}'" |
| … | |
… | |
| 465 | local myconf="" |
482 | local myconf="" |
| 466 | myconf="${myconf} --with-mysql=${S} --libdir=${D}/${MY_LIBDIR}" |
483 | myconf="${myconf} --with-mysql=${S} --libdir=${D}/${MY_LIBDIR}" |
| 467 | use debug && myconf="${myconf} --with-debug=full" |
484 | use debug && myconf="${myconf} --with-debug=full" |
| 468 | # TODO: is it safe/needed to use econf here ? |
485 | # TODO: is it safe/needed to use econf here ? |
| 469 | ./configure ${myconf} || die "Problem configuring PBXT storage engine" |
486 | ./configure ${myconf} || die "Problem configuring PBXT storage engine" |
|
|
487 | } |
|
|
488 | |
|
|
489 | pbxt_src_compile() { |
|
|
490 | # Be backwards compatible for now |
|
|
491 | if [[ $EAPI != 2 ]]; then |
|
|
492 | pbxt_src_configure |
|
|
493 | fi |
| 470 | # TODO: is it safe/needed to use emake here ? |
494 | # TODO: is it safe/needed to use emake here ? |
| 471 | make || die "Problem making PBXT storage engine (${myconf})" |
495 | make || die "Problem making PBXT storage engine (${myconf})" |
| 472 | |
496 | |
| 473 | popd |
497 | popd |
| 474 | # TODO: modify test suite for PBXT |
498 | # TODO: modify test suite for PBXT |
| … | |
… | |
| 481 | } |
505 | } |
| 482 | |
506 | |
| 483 | # |
507 | # |
| 484 | # EBUILD FUNCTIONS |
508 | # EBUILD FUNCTIONS |
| 485 | # |
509 | # |
|
|
510 | # @FUNCTION: mysql_pkg_setup |
|
|
511 | # @DESCRIPTION: |
|
|
512 | # Perform some basic tests and tasks during pkg_setup phase: |
|
|
513 | # die if FEATURES="test", USE="-minimal" and not using FEATURES="userpriv" |
|
|
514 | # check for conflicting use flags |
|
|
515 | # create new user and group for mysql |
|
|
516 | # warn about deprecated features |
| 486 | mysql_pkg_setup() { |
517 | mysql_pkg_setup() { |
| 487 | if hasq test ${FEATURES} ; then |
518 | if hasq test ${FEATURES} ; then |
| 488 | if ! use minimal ; then |
519 | if ! use minimal ; then |
| 489 | if [[ $UID -eq 0 ]]; then |
520 | if [[ $UID -eq 0 ]]; then |
| 490 | eerror "Testing with FEATURES=-userpriv is no longer supported by upstream. Tests MUST be run as non-root." |
521 | eerror "Testing with FEATURES=-userpriv is no longer supported by upstream. Tests MUST be run as non-root." |
| … | |
… | |
| 520 | mysql_check_version_range "4.0 to 5.0.99.99" \ |
551 | mysql_check_version_range "4.0 to 5.0.99.99" \ |
| 521 | && use berkdb \ |
552 | && use berkdb \ |
| 522 | && elog "Berkeley DB support is deprecated and will be removed in future versions!" |
553 | && elog "Berkeley DB support is deprecated and will be removed in future versions!" |
| 523 | } |
554 | } |
| 524 | |
555 | |
|
|
556 | # @FUNCTION: mysql_src_unpack |
|
|
557 | # @DESCRIPTION: |
|
|
558 | # Unpack the source code and call mysql_src_prepare for EAPI < 2. |
| 525 | mysql_src_unpack() { |
559 | mysql_src_unpack() { |
| 526 | # Initialize the proper variables first |
560 | # Initialize the proper variables first |
| 527 | mysql_init_vars |
561 | mysql_init_vars |
| 528 | |
562 | |
| 529 | unpack ${A} |
563 | unpack ${A} |
| 530 | # Grab the patches |
564 | # Grab the patches |
| 531 | [[ "${MY_EXTRAS_VER}" == "live" ]] && S="${WORKDIR}/mysql-extras" git_src_unpack |
565 | [[ "${MY_EXTRAS_VER}" == "live" ]] && S="${WORKDIR}/mysql-extras" git_src_unpack |
| 532 | # Bitkeeper checkout support |
566 | |
| 533 | if [[ ${IS_BITKEEPER} -eq 90 ]] ; then |
|
|
| 534 | if mysql_check_version_range "5.1 to 5.1.99" ; then |
|
|
| 535 | bitkeeper_fetch "mysql-5.1-ndb" |
|
|
| 536 | elif mysql_check_version_range "5.2 to 5.2.99" ; then |
|
|
| 537 | bitkeeper_fetch "mysql-5.2-falcon" |
|
|
| 538 | else |
|
|
| 539 | bitkeeper_fetch |
|
|
| 540 | fi |
|
|
| 541 | cd "${S}" |
|
|
| 542 | einfo "Running upstream autorun over BK sources ..." |
|
|
| 543 | BUILD/autorun.sh |
|
|
| 544 | else |
|
|
| 545 | mv -f "${WORKDIR}/${MY_SOURCEDIR}" "${S}" |
567 | mv -f "${WORKDIR}/${MY_SOURCEDIR}" "${S}" |
|
|
568 | |
|
|
569 | # Be backwards compatible for now |
|
|
570 | case ${EAPI:-0} in |
|
|
571 | 2) : ;; |
|
|
572 | 0 | 1) mysql_src_prepare ;; |
|
|
573 | esac |
|
|
574 | } |
|
|
575 | |
|
|
576 | # @FUNCTION: mysql_src_prepare |
|
|
577 | # @DESCRIPTION: |
|
|
578 | # Apply patches to the source code and remove unneeded bundled libs. |
|
|
579 | mysql_src_prepare() { |
| 546 | cd "${S}" |
580 | cd "${S}" |
| 547 | fi |
|
|
| 548 | |
581 | |
| 549 | # Apply the patches for this MySQL version |
582 | # Apply the patches for this MySQL version |
| 550 | EPATCH_SUFFIX="patch" |
583 | EPATCH_SUFFIX="patch" |
| 551 | mkdir -p "${EPATCH_SOURCE}" || die "Unable to create epatch directory" |
584 | mkdir -p "${EPATCH_SOURCE}" || die "Unable to create epatch directory" |
| 552 | # Clean out old items |
585 | # Clean out old items |
| … | |
… | |
| 612 | || die "Failed bdb reconfigure" |
645 | || die "Failed bdb reconfigure" |
| 613 | popd &>/dev/null |
646 | popd &>/dev/null |
| 614 | fi |
647 | fi |
| 615 | } |
648 | } |
| 616 | |
649 | |
|
|
650 | # @FUNCTION: mysql_src_configure |
|
|
651 | # @DESCRIPTION: |
|
|
652 | # Configure mysql to build the code for Gentoo respecting the use flags. |
| 617 | mysql_src_compile() { |
653 | mysql_src_configure() { |
| 618 | # Make sure the vars are correctly initialized |
654 | # Make sure the vars are correctly initialized |
| 619 | mysql_init_vars |
655 | mysql_init_vars |
| 620 | |
656 | |
| 621 | # $myconf is modified by the configure_* functions |
657 | # $myconf is modified by the configure_* functions |
| 622 | local myconf="" |
658 | local myconf="" |
| … | |
… | |
| 647 | CXXFLAGS="${CXXFLAGS} -fno-exceptions -fno-strict-aliasing" |
683 | CXXFLAGS="${CXXFLAGS} -fno-exceptions -fno-strict-aliasing" |
| 648 | CXXFLAGS="${CXXFLAGS} -felide-constructors -fno-rtti" |
684 | CXXFLAGS="${CXXFLAGS} -felide-constructors -fno-rtti" |
| 649 | mysql_version_is_at_least "5.0" \ |
685 | mysql_version_is_at_least "5.0" \ |
| 650 | && CXXFLAGS="${CXXFLAGS} -fno-implicit-templates" |
686 | && CXXFLAGS="${CXXFLAGS} -fno-implicit-templates" |
| 651 | export CXXFLAGS |
687 | export CXXFLAGS |
|
|
688 | |
|
|
689 | # bug #283926, with GCC4.4, this is required to get correct behavior. |
|
|
690 | append-flags -fno-strict-aliasing |
| 652 | |
691 | |
| 653 | econf \ |
692 | econf \ |
| 654 | --libexecdir="/usr/sbin" \ |
693 | --libexecdir="/usr/sbin" \ |
| 655 | --sysconfdir="${MY_SYSCONFDIR}" \ |
694 | --sysconfdir="${MY_SYSCONFDIR}" \ |
| 656 | --localstatedir="${MY_LOCALSTATEDIR}" \ |
695 | --localstatedir="${MY_LOCALSTATEDIR}" \ |
| … | |
… | |
| 667 | # TODO: Move this before autoreconf !!! |
706 | # TODO: Move this before autoreconf !!! |
| 668 | find . -type f -name Makefile -print0 \ |
707 | find . -type f -name Makefile -print0 \ |
| 669 | | xargs -0 -n100 sed -i \ |
708 | | xargs -0 -n100 sed -i \ |
| 670 | -e 's|^pkglibdir *= *$(libdir)/mysql|pkglibdir = $(libdir)|;s|^pkgincludedir *= *$(includedir)/mysql|pkgincludedir = $(includedir)|' |
709 | -e 's|^pkglibdir *= *$(libdir)/mysql|pkglibdir = $(libdir)|;s|^pkgincludedir *= *$(includedir)/mysql|pkgincludedir = $(includedir)|' |
| 671 | |
710 | |
|
|
711 | if [[ $EAPI == 2 ]]; then |
|
|
712 | mysql_version_is_at_least "5.1.12" && use pbxt && pbxt_src_configure |
|
|
713 | fi |
|
|
714 | } |
|
|
715 | |
|
|
716 | # @FUNCTION: mysql_src_compile |
|
|
717 | # @DESCRIPTION: |
|
|
718 | # Compile the mysql code. |
|
|
719 | mysql_src_compile() { |
|
|
720 | # Be backwards compatible for now |
|
|
721 | case ${EAPI:-0} in |
|
|
722 | 2) : ;; |
|
|
723 | 0 | 1) mysql_src_configure ;; |
|
|
724 | esac |
|
|
725 | |
| 672 | emake || die "emake failed" |
726 | emake || die "emake failed" |
| 673 | |
727 | |
| 674 | mysql_version_is_at_least "5.1.12" && use pbxt && pbxt_src_compile |
728 | mysql_version_is_at_least "5.1.12" && use pbxt && pbxt_src_compile |
| 675 | } |
729 | } |
| 676 | |
730 | |
|
|
731 | # @FUNCTION: mysql_src_install |
|
|
732 | # @DESCRIPTION: |
|
|
733 | # Install mysql. |
| 677 | mysql_src_install() { |
734 | mysql_src_install() { |
| 678 | # Make sure the vars are correctly initialized |
735 | # Make sure the vars are correctly initialized |
| 679 | mysql_init_vars |
736 | mysql_init_vars |
| 680 | |
737 | |
| 681 | emake install DESTDIR="${D}" benchdir_root="${MY_SHAREDSTATEDIR}" || die "emake install failed" |
738 | emake install DESTDIR="${D}" benchdir_root="${MY_SHAREDSTATEDIR}" || die "emake install failed" |
| … | |
… | |
| 767 | fi |
824 | fi |
| 768 | |
825 | |
| 769 | mysql_lib_symlinks "${D}" |
826 | mysql_lib_symlinks "${D}" |
| 770 | } |
827 | } |
| 771 | |
828 | |
|
|
829 | # @FUNCTION: mysql_pkg_preinst |
|
|
830 | # @DESCRIPTION: |
|
|
831 | # Create the user and groups for mysql - die if that fails. |
| 772 | mysql_pkg_preinst() { |
832 | mysql_pkg_preinst() { |
| 773 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
833 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
| 774 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
834 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
| 775 | } |
835 | } |
| 776 | |
836 | |
|
|
837 | # @FUNCTION: mysql_pkg_postinst |
|
|
838 | # @DESCRIPTION: |
|
|
839 | # Run post-installation tasks: |
|
|
840 | # create the dir for logfiles if non-existant |
|
|
841 | # touch the logfiles and secure them |
|
|
842 | # install scripts |
|
|
843 | # issue required steps for optional features |
|
|
844 | # issue deprecation warnings |
| 777 | mysql_pkg_postinst() { |
845 | mysql_pkg_postinst() { |
| 778 | # Make sure the vars are correctly initialized |
846 | # Make sure the vars are correctly initialized |
| 779 | mysql_init_vars |
847 | mysql_init_vars |
| 780 | |
848 | |
| 781 | # Check FEATURES="collision-protect" before removing this |
849 | # Check FEATURES="collision-protect" before removing this |
| … | |
… | |
| 827 | mysql_check_version_range "4.0 to 5.0.99.99" \ |
895 | mysql_check_version_range "4.0 to 5.0.99.99" \ |
| 828 | && use berkdb \ |
896 | && use berkdb \ |
| 829 | && elog "Berkeley DB support is deprecated and will be removed in future versions!" |
897 | && elog "Berkeley DB support is deprecated and will be removed in future versions!" |
| 830 | } |
898 | } |
| 831 | |
899 | |
|
|
900 | # @FUNCTION: mysql_pkg_config |
|
|
901 | # @DESCRIPTION: |
|
|
902 | # Configure mysql environment. |
| 832 | mysql_pkg_config() { |
903 | mysql_pkg_config() { |
|
|
904 | local old_MY_DATADIR="${MY_DATADIR}" |
|
|
905 | |
| 833 | # Make sure the vars are correctly initialized |
906 | # Make sure the vars are correctly initialized |
| 834 | mysql_init_vars |
907 | mysql_init_vars |
| 835 | |
908 | |
| 836 | [[ -z "${MY_DATADIR}" ]] && die "Sorry, unable to find MY_DATADIR" |
909 | [[ -z "${MY_DATADIR}" ]] && die "Sorry, unable to find MY_DATADIR" |
| 837 | |
910 | |
| 838 | if built_with_use ${CATEGORY}/${PN} minimal ; then |
911 | if built_with_use ${CATEGORY}/${PN} minimal ; then |
| 839 | die "Minimal builds do NOT include the MySQL server" |
912 | die "Minimal builds do NOT include the MySQL server" |
|
|
913 | fi |
|
|
914 | |
|
|
915 | if [[ ( -n "${MY_DATADIR}" ) && ( "${MY_DATADIR}" != "${old_MY_DATADIR}" ) ]]; then |
|
|
916 | local MY_DATADIR_s="$(strip_duplicate_slashes ${ROOT}/${MY_DATADIR})" |
|
|
917 | local old_MY_DATADIR_s="$(strip_duplicate_slashes ${ROOT}/${old_MY_DATADIR})" |
|
|
918 | |
|
|
919 | if [[ -d "${old_MY_DATADIR_s}" ]]; then |
|
|
920 | if [[ -d "${MY_DATADIR_s}" ]]; then |
|
|
921 | ewarn "Both ${old_MY_DATADIR_s} and ${MY_DATADIR_s} exist" |
|
|
922 | ewarn "Attempting to use ${MY_DATADIR_s} and preserving ${old_MY_DATADIR_s}" |
|
|
923 | else |
|
|
924 | elog "Moving MY_DATADIR from ${old_MY_DATADIR_s} to ${MY_DATADIR_s}" |
|
|
925 | mv --strip-trailing-slashes -T "${old_MY_DATADIR_s}" "${MY_DATADIR_s}" \ |
|
|
926 | || die "Moving MY_DATADIR failed" |
|
|
927 | fi |
|
|
928 | else |
|
|
929 | ewarn "Previous MY_DATADIR (${old_MY_DATADIR_s}) does not exist" |
|
|
930 | if [[ -d "${MY_DATADIR_s}" ]]; then |
|
|
931 | ewarn "Attempting to use ${MY_DATADIR_s}" |
|
|
932 | else |
|
|
933 | eerror "New MY_DATADIR (${MY_DATADIR_s}) does not exist" |
|
|
934 | die "Configuration Failed! Please reinstall ${CATEGORY}/${PN}" |
|
|
935 | fi |
|
|
936 | fi |
| 840 | fi |
937 | fi |
| 841 | |
938 | |
| 842 | local pwd1="a" |
939 | local pwd1="a" |
| 843 | local pwd2="b" |
940 | local pwd2="b" |
| 844 | local maxtry=5 |
941 | local maxtry=5 |
| … | |
… | |
| 945 | einfo "Stopping the server ..." |
1042 | einfo "Stopping the server ..." |
| 946 | wait %1 |
1043 | wait %1 |
| 947 | einfo "Done" |
1044 | einfo "Done" |
| 948 | } |
1045 | } |
| 949 | |
1046 | |
|
|
1047 | # @FUNCTION: mysql_pkg_postrm |
|
|
1048 | # @DESCRIPTION: |
|
|
1049 | # Remove mysql symlinks. |
| 950 | mysql_pkg_postrm() { |
1050 | mysql_pkg_postrm() { |
| 951 | : # mysql_lib_symlinks "${D}" |
1051 | : # mysql_lib_symlinks "${D}" |
| 952 | } |
1052 | } |