| 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.108 2009/02/28 10:50:24 robbat2 Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/mysql.eclass,v 1.135 2010/03/03 23:57:13 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 toolchain-funcs |
| 14 | |
22 | |
| 15 | # Shorten the path because the socket path length must be shorter than 107 chars |
23 | # 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 |
24 | # and we will run a mysql server during test phase |
| 17 | S="${WORKDIR}/mysql" |
25 | S="${WORKDIR}/mysql" |
| 18 | |
26 | |
| … | |
… | |
| 21 | EGIT_PROJECT=mysql-extras |
29 | EGIT_PROJECT=mysql-extras |
| 22 | EGIT_REPO_URI="git://git.overlays.gentoo.org/proj/mysql-extras.git" |
30 | EGIT_REPO_URI="git://git.overlays.gentoo.org/proj/mysql-extras.git" |
| 23 | inherit git |
31 | inherit git |
| 24 | fi |
32 | fi |
| 25 | |
33 | |
| 26 | if [[ ${PR#r} -lt 60 ]] ; then |
34 | case "${EAPI:-0}" in |
| 27 | IS_BITKEEPER=0 |
35 | 2) |
| 28 | elif [[ ${PR#r} -lt 90 ]] ; then |
36 | EXPORT_FUNCTIONS pkg_setup \ |
| 29 | IS_BITKEEPER=60 |
37 | src_unpack src_prepare \ |
| 30 | else |
38 | src_configure src_compile \ |
| 31 | IS_BITKEEPER=90 |
39 | src_install \ |
| 32 | fi |
40 | pkg_preinst pkg_postinst \ |
|
|
41 | pkg_config pkg_postrm |
|
|
42 | IUSE_DEFAULT_ON='+' |
|
|
43 | ;; |
|
|
44 | 0 | 1) |
|
|
45 | EXPORT_FUNCTIONS pkg_setup \ |
|
|
46 | src_unpack \ |
|
|
47 | src_compile \ |
|
|
48 | src_install \ |
|
|
49 | pkg_preinst pkg_postinst \ |
|
|
50 | pkg_config pkg_postrm |
|
|
51 | ;; |
|
|
52 | *) |
|
|
53 | die "Unsupported EAPI: ${EAPI}" ;; |
|
|
54 | esac |
| 33 | |
55 | |
|
|
56 | # @ECLASS-VARIABLE: MYSQL_VERSION_ID |
|
|
57 | # @DESCRIPTION: |
| 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 | elif [ "${PV#5.5}" != "${PV}" ] ; then |
|
|
91 | MYSQL_COMMUNITY_FEATURES=1 |
|
|
92 | elif [ "${PV#6.0}" != "${PV}" ] ; then |
|
|
93 | MYSQL_COMMUNITY_FEATURES=1 |
|
|
94 | else |
|
|
95 | MYSQL_COMMUNITY_FEATURES=0 |
|
|
96 | fi |
|
|
97 | |
|
|
98 | # @ECLASS-VARIABLE: XTRADB_VER |
|
|
99 | # @DESCRIPTION: |
|
|
100 | # Version of the XTRADB storage engine |
|
|
101 | XTRADB_VER="${XTRADB_VER}" |
|
|
102 | |
|
|
103 | # @ECLASS-VARIABLE: PERCONA_VER |
|
|
104 | # @DESCRIPTION: |
|
|
105 | # Designation by PERCONA for a MySQL version to apply an XTRADB release |
|
|
106 | PERCONA_VER="${PERCONA_VER}" |
|
|
107 | |
| 52 | # Be warned, *DEPEND are version-dependant |
108 | # Be warned, *DEPEND are version-dependant |
| 53 | # These are used for both runtime and compiletime |
109 | # These are used for both runtime and compiletime |
| 54 | DEPEND="ssl? ( >=dev-libs/openssl-0.9.6d ) |
110 | DEPEND="ssl? ( >=dev-libs/openssl-0.9.6d ) |
| 55 | userland_GNU? ( sys-process/procps ) |
111 | userland_GNU? ( sys-process/procps ) |
| 56 | >=sys-apps/sed-4 |
112 | >=sys-apps/sed-4 |
| … | |
… | |
| 74 | |
130 | |
| 75 | # compile-time-only |
131 | # compile-time-only |
| 76 | mysql_version_is_at_least "5.1.12" \ |
132 | mysql_version_is_at_least "5.1.12" \ |
| 77 | && DEPEND="${DEPEND} >=dev-util/cmake-2.4.3" |
133 | && DEPEND="${DEPEND} >=dev-util/cmake-2.4.3" |
| 78 | |
134 | |
| 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 |
135 | # dev-perl/DBD-mysql is needed by some scripts installed by MySQL |
| 84 | PDEPEND="perl? ( >=dev-perl/DBD-mysql-2.9004 )" |
136 | PDEPEND="perl? ( >=dev-perl/DBD-mysql-2.9004 )" |
| 85 | |
137 | |
| 86 | # For other stuff to bring us in |
138 | # For other stuff to bring us in |
| 87 | PDEPEND="${PDEPEND} =virtual/mysql-$(get_version_component_range 1-2 ${PV})" |
139 | PDEPEND="${PDEPEND} =virtual/mysql-$(get_version_component_range 1-2 ${PV})" |
| 88 | |
140 | |
| 89 | # Work out the default SERVER_URI correctly |
141 | # Work out the default SERVER_URI correctly |
| 90 | if [ -z "${SERVER_URI}" ]; then |
142 | if [ -z "${SERVER_URI}" ]; then |
|
|
143 | [ -z "${MY_PV}" ] && MY_PV="${PV//_/-}" |
| 91 | # The community build is on the mirrors |
144 | # The community build is on the mirrors |
| 92 | if [ "${PN}" == "mysql-community" ]; then |
145 | if [ "${MYSQL_COMMUNITY_FEATURES}" == "1" ]; then |
| 93 | SERVER_URI="mirror://mysql/Downloads/MySQL-${PV%.*}/mysql-${PV//_/-}.tar.gz" |
146 | SERVER_URI="mirror://mysql/Downloads/MySQL-${PV%.*}/mysql-${MY_PV}.tar.gz" |
| 94 | # The enterprise source is on the primary site only |
147 | # The (old) enterprise source is on the primary site only |
| 95 | elif [ "${PN}" == "mysql" ]; then |
148 | elif [ "${PN}" == "mysql" ]; then |
| 96 | SERVER_URI="ftp://ftp.mysql.com/pub/mysql/src/mysql-${PV//_/-}.tar.gz" |
149 | SERVER_URI="ftp://ftp.mysql.com/pub/mysql/src/mysql-${MY_PV}.tar.gz" |
| 97 | fi |
150 | fi |
| 98 | fi |
151 | fi |
| 99 | |
152 | |
| 100 | # Define correct SRC_URIs |
153 | # Define correct SRC_URIs |
| 101 | SRC_URI="${SERVER_URI}" |
154 | SRC_URI="${SERVER_URI}" |
| 102 | |
155 | |
| 103 | [[ ${MY_EXTRAS_VER} != live ]] && SRC_URI="${SRC_URI} |
156 | # Gentoo patches to MySQL |
|
|
157 | [[ ${MY_EXTRAS_VER} != live ]] \ |
|
|
158 | && SRC_URI="${SRC_URI} |
| 104 | mirror://gentoo/mysql-extras-${MY_EXTRAS_VER}.tar.bz2 |
159 | mirror://gentoo/mysql-extras-${MY_EXTRAS_VER}.tar.bz2 |
| 105 | http://g3nt8.org/patches/mysql-extras-${MY_EXTRAS_VER}.tar.bz2" |
160 | http://g3nt8.org/patches/mysql-extras-${MY_EXTRAS_VER}.tar.bz2 |
| 106 | mysql_version_is_at_least "5.1.12" \ |
161 | http://dev.gentoo.org/~robbat2/distfiles/mysql-extras-${MY_EXTRAS_VER}.tar.bz2" |
| 107 | && [[ -n "${PBXT_VERSION}" ]] \ |
|
|
| 108 | && SRC_URI="${SRC_URI} pbxt? ( mirror://sourceforge/pbxt/pbxt-${PBXT_VERSION}.tar.gz )" |
|
|
| 109 | |
162 | |
| 110 | DESCRIPTION="A fast, multi-threaded, multi-user SQL database server." |
163 | DESCRIPTION="A fast, multi-threaded, multi-user SQL database server." |
| 111 | HOMEPAGE="http://www.mysql.com/" |
164 | HOMEPAGE="http://www.mysql.com/" |
| 112 | LICENSE="GPL-2" |
165 | LICENSE="GPL-2" |
| 113 | SLOT="0" |
166 | SLOT="0" |
| 114 | IUSE="big-tables debug embedded minimal perl selinux ssl static" |
167 | IUSE="big-tables debug embedded minimal ${IUSE_DEFAULT_ON}perl selinux ssl static test" |
| 115 | |
168 | |
| 116 | mysql_version_is_at_least "4.1" \ |
169 | mysql_version_is_at_least "4.1" \ |
| 117 | && IUSE="${IUSE} latin1" |
170 | && IUSE="${IUSE} latin1" |
| 118 | |
171 | |
| 119 | mysql_version_is_at_least "4.1.3" \ |
172 | mysql_version_is_at_least "4.1.3" \ |
| … | |
… | |
| 126 | && IUSE="${IUSE} max-idx-128" |
179 | && IUSE="${IUSE} max-idx-128" |
| 127 | |
180 | |
| 128 | mysql_version_is_at_least "5.1" \ |
181 | mysql_version_is_at_least "5.1" \ |
| 129 | || IUSE="${IUSE} berkdb" |
182 | || IUSE="${IUSE} berkdb" |
| 130 | |
183 | |
|
|
184 | [ "${MYSQL_COMMUNITY_FEATURES}" == "1" ] \ |
|
|
185 | && IUSE="${IUSE} ${IUSE_DEFAULT_ON}community profiling" |
|
|
186 | |
|
|
187 | # PBXT engine |
| 131 | mysql_version_is_at_least "5.1.12" \ |
188 | mysql_version_is_at_least "5.1.12" \ |
|
|
189 | && [[ -n "${PBXT_VERSION}" ]] \ |
|
|
190 | && PBXT_P="pbxt-${PBXT_VERSION}" \ |
|
|
191 | && PBXT_SRC_URI="http://www.primebase.org/download/${PBXT_P}.tar.gz mirror://sourceforge/pbxt/${PBXT_P}.tar.gz" \ |
|
|
192 | && SRC_URI="${SRC_URI} pbxt? ( ${PBXT_SRC_URI} )" \ |
| 132 | && IUSE="${IUSE} pbxt" |
193 | && IUSE="${IUSE} pbxt" |
| 133 | |
194 | |
| 134 | EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_preinst \ |
195 | # Get the percona tarball if XTRADB_VER and PERCONA_VER are both set |
| 135 | pkg_postinst pkg_config pkg_postrm |
196 | mysql_version_is_at_least "5.1.26" \ |
|
|
197 | && [[ -n "${XTRADB_VER}" && -n "${PERCONA_VER}" ]] \ |
|
|
198 | && XTRADB_P="percona-xtradb-${XTRADB_VER}" \ |
|
|
199 | && XTRADB_SRC_URI_COMMON="${PERCONA_VER}/source/${XTRADB_P}.tar.gz" \ |
|
|
200 | && XTRADB_SRC_URI1="http://www.percona.com/percona-builds/xtradb/${XTRADB_SRC_URI_COMMON}" \ |
|
|
201 | && XTRADB_SRC_URI2="http://www.percona.com/${PN}/xtradb/${XTRADB_SRC_URI_COMMON}" \ |
|
|
202 | && SRC_URI="${SRC_URI} xtradb? ( ${XTRADB_SRC_URI1} ${XTRADB_SRC_URI2} )" \ |
|
|
203 | && IUSE="${IUSE} xtradb" |
| 136 | |
204 | |
| 137 | # |
205 | # |
| 138 | # HELPER FUNCTIONS: |
206 | # HELPER FUNCTIONS: |
| 139 | # |
207 | # |
| 140 | |
208 | |
| 141 | bitkeeper_fetch() { |
209 | # @FUNCTION: mysql_disable_test |
| 142 | local reposuf |
210 | # @DESCRIPTION: |
| 143 | if [[ -z "${1}" ]] ; then |
211 | # 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() { |
212 | mysql_disable_test() { |
|
|
213 | local rawtestname testname testsuite reason mysql_disable_file |
| 205 | local testname="${1}" ; shift |
214 | rawtestname="${1}" ; shift |
| 206 | local reason="${@}" |
215 | reason="${@}" |
|
|
216 | ewarn "test '${rawtestname}' disabled: '${reason}'" |
|
|
217 | |
|
|
218 | testsuite="${rawtestname/.*}" |
|
|
219 | testname="${rawtestname/*.}" |
| 207 | local mysql_disable_file="${S}/mysql-test/t/disabled.def" |
220 | mysql_disable_file="${S}/mysql-test/t/disabled.def" |
|
|
221 | #einfo "rawtestname=${rawtestname} testname=${testname} testsuite=${testsuite}" |
| 208 | echo ${testname} : ${reason} >> "${mysql_disable_file}" |
222 | echo ${testname} : ${reason} >> "${mysql_disable_file}" |
| 209 | ewarn "test '${testname}' disabled: '${reason}'" |
|
|
| 210 | } |
|
|
| 211 | |
223 | |
|
|
224 | # ${S}/mysql-tests/t/disabled.def |
|
|
225 | # |
|
|
226 | # ${S}/mysql-tests/suite/federated/disabled.def |
|
|
227 | # |
|
|
228 | # ${S}/mysql-tests/suite/jp/t/disabled.def |
|
|
229 | # ${S}/mysql-tests/suite/ndb/t/disabled.def |
|
|
230 | # ${S}/mysql-tests/suite/rpl/t/disabled.def |
|
|
231 | # ${S}/mysql-tests/suite/parts/t/disabled.def |
|
|
232 | # ${S}/mysql-tests/suite/rpl_ndb/t/disabled.def |
|
|
233 | # ${S}/mysql-tests/suite/ndb_team/t/disabled.def |
|
|
234 | # ${S}/mysql-tests/suite/binlog/t/disabled.def |
|
|
235 | # ${S}/mysql-tests/suite/innodb/t/disabled.def |
|
|
236 | if [ -n "${testsuite}" ]; then |
|
|
237 | for mysql_disable_file in \ |
|
|
238 | ${S}/mysql-test/suite/${testsuite}/disabled.def \ |
|
|
239 | ${S}/mysql-test/suite/${testsuite}/t/disabled.def \ |
|
|
240 | FAILED ; do |
|
|
241 | [ -f "${mysql_disable_file}" ] && break |
|
|
242 | done |
|
|
243 | if [ "${mysql_disabled_file}" != "FAILED" ]; then |
|
|
244 | echo "${testname} : ${reason}" >> "${mysql_disable_file}" |
|
|
245 | else |
|
|
246 | ewarn "Could not find testsuite disabled.def location for ${rawtestname}" |
|
|
247 | fi |
|
|
248 | fi |
|
|
249 | } |
|
|
250 | |
|
|
251 | # @FUNCTION: mysql_init_vars |
|
|
252 | # @DESCRIPTION: |
| 212 | # void mysql_init_vars() |
253 | # void mysql_init_vars() |
| 213 | # |
|
|
| 214 | # Initialize global variables |
254 | # Initialize global variables |
| 215 | # 2005-11-19 <vivo@gentoo.org> |
255 | # 2005-11-19 <vivo@gentoo.org> |
| 216 | |
|
|
| 217 | mysql_init_vars() { |
256 | mysql_init_vars() { |
| 218 | MY_SHAREDSTATEDIR=${MY_SHAREDSTATEDIR="/usr/share/mysql"} |
257 | MY_SHAREDSTATEDIR=${MY_SHAREDSTATEDIR="/usr/share/mysql"} |
| 219 | MY_SYSCONFDIR=${MY_SYSCONFDIR="/etc/mysql"} |
258 | MY_SYSCONFDIR=${MY_SYSCONFDIR="/etc/mysql"} |
| 220 | MY_LIBDIR=${MY_LIBDIR="/usr/$(get_libdir)/mysql"} |
259 | MY_LIBDIR=${MY_LIBDIR="/usr/$(get_libdir)/mysql"} |
| 221 | MY_LOCALSTATEDIR=${MY_LOCALSTATEDIR="/var/lib/mysql"} |
260 | MY_LOCALSTATEDIR=${MY_LOCALSTATEDIR="/var/lib/mysql"} |
| … | |
… | |
| 248 | PREVIOUS_DATADIR="yes" |
287 | PREVIOUS_DATADIR="yes" |
| 249 | else |
288 | else |
| 250 | PREVIOUS_DATADIR="no" |
289 | PREVIOUS_DATADIR="no" |
| 251 | fi |
290 | fi |
| 252 | export PREVIOUS_DATADIR |
291 | export PREVIOUS_DATADIR |
|
|
292 | fi |
|
|
293 | else |
|
|
294 | if [[ ${EBUILD_PHASE} == "config" ]]; then |
|
|
295 | local new_MY_DATADIR |
|
|
296 | new_MY_DATADIR=`"my_print_defaults" mysqld 2>/dev/null \ |
|
|
297 | | sed -ne '/datadir/s|^--datadir=||p' \ |
|
|
298 | | tail -n1` |
|
|
299 | |
|
|
300 | if [[ ( -n "${new_MY_DATADIR}" ) && ( "${new_MY_DATADIR}" != "${MY_DATADIR}" ) ]]; then |
|
|
301 | ewarn "MySQL MY_DATADIR has changed" |
|
|
302 | ewarn "from ${MY_DATADIR}" |
|
|
303 | ewarn "to ${new_MY_DATADIR}" |
|
|
304 | MY_DATADIR="${new_MY_DATADIR}" |
|
|
305 | fi |
| 253 | fi |
306 | fi |
| 254 | fi |
307 | fi |
| 255 | |
308 | |
| 256 | MY_SOURCEDIR=${SERVER_URI##*/} |
309 | MY_SOURCEDIR=${SERVER_URI##*/} |
| 257 | MY_SOURCEDIR=${MY_SOURCEDIR%.tar*} |
310 | MY_SOURCEDIR=${MY_SOURCEDIR%.tar*} |
| … | |
… | |
| 352 | if use ssl ; then |
405 | if use ssl ; then |
| 353 | mysql_version_is_at_least "5.0.4" || myconf="${myconf} --with-vio" |
406 | mysql_version_is_at_least "5.0.4" || myconf="${myconf} --with-vio" |
| 354 | fi |
407 | fi |
| 355 | |
408 | |
| 356 | if mysql_version_is_at_least "5.1.11" ; then |
409 | if mysql_version_is_at_least "5.1.11" ; then |
| 357 | myconf="${myconf} $(use_with ssl)" |
410 | myconf="${myconf} $(use_with ssl /usr)" |
| 358 | else |
411 | else |
| 359 | myconf="${myconf} $(use_with ssl openssl)" |
412 | myconf="${myconf} $(use_with ssl openssl)" |
| 360 | fi |
413 | fi |
| 361 | |
414 | |
| 362 | if mysql_version_is_at_least "5.0.60" ; then |
415 | if mysql_version_is_at_least "5.0.60" ; then |
| … | |
… | |
| 403 | elog "http://dev.mysql.com/doc/mysql/en/federated-limitations.html" |
456 | elog "http://dev.mysql.com/doc/mysql/en/federated-limitations.html" |
| 404 | myconf="${myconf} --with-federated-storage-engine" |
457 | myconf="${myconf} --with-federated-storage-engine" |
| 405 | fi |
458 | fi |
| 406 | fi |
459 | fi |
| 407 | |
460 | |
| 408 | if [ "${PN}" == "mysql-community" ]; then |
461 | if [ "${MYSQL_COMMUNITY_FEATURES}" == "1" ]; then |
| 409 | myconf="${myconf} --enable-community-features" |
462 | myconf="${myconf} `use_enable community community-features`" |
|
|
463 | if use community; then |
|
|
464 | myconf="${myconf} `use_enable profiling`" |
|
|
465 | else |
|
|
466 | myconf="${myconf} --disable-profiling" |
|
|
467 | fi |
| 410 | fi |
468 | fi |
| 411 | |
469 | |
| 412 | mysql_version_is_at_least "5.0.18" \ |
470 | mysql_version_is_at_least "5.0.18" \ |
| 413 | && use max-idx-128 \ |
471 | && use max-idx-128 \ |
| 414 | && myconf="${myconf} --with-max-indexes=128" |
472 | && myconf="${myconf} --with-max-indexes=128" |
| … | |
… | |
| 420 | # readline.h instead of history.h |
478 | # readline.h instead of history.h |
| 421 | myconf="${myconf} $(use_with ssl)" |
479 | myconf="${myconf} $(use_with ssl)" |
| 422 | myconf="${myconf} --enable-assembler" |
480 | myconf="${myconf} --enable-assembler" |
| 423 | myconf="${myconf} --with-geometry" |
481 | myconf="${myconf} --with-geometry" |
| 424 | myconf="${myconf} --with-readline" |
482 | myconf="${myconf} --with-readline" |
| 425 | myconf="${myconf} --with-row-based-replication" |
|
|
| 426 | myconf="${myconf} --with-zlib=/usr/$(get_libdir)" |
483 | myconf="${myconf} --with-zlib-dir=/usr/" |
| 427 | myconf="${myconf} --without-pstack" |
484 | myconf="${myconf} --without-pstack" |
| 428 | use max-idx-128 && myconf="${myconf} --with-max-indexes=128" |
485 | use max-idx-128 && myconf="${myconf} --with-max-indexes=128" |
| 429 | |
486 | |
| 430 | # 5.1 introduces a new way to manage storage engines (plugins) |
487 | # 5.1 introduces a new way to manage storage engines (plugins) |
| 431 | # like configuration=none |
488 | # like configuration=none |
| 432 | local plugins="csv,myisam,myisammrg,heap" |
489 | local plugins="csv,myisam,myisammrg,heap" |
| 433 | if use extraengine ; then |
490 | if use extraengine ; then |
| 434 | # like configuration=max-no-ndb, archive and example removed in 5.1.11 |
491 | # like configuration=max-no-ndb, archive and example removed in 5.1.11 |
|
|
492 | # not added yet: ibmdb2i |
|
|
493 | # Not supporting as examples: example,daemon_example,ftexample |
| 435 | plugins="${plugins},archive,blackhole,example,federated,partition" |
494 | plugins="${plugins},archive,blackhole,federated,partition" |
| 436 | |
495 | |
| 437 | elog "Before using the Federated storage engine, please be sure to read" |
496 | elog "Before using the Federated storage engine, please be sure to read" |
| 438 | elog "http://dev.mysql.com/doc/refman/5.1/en/federated-limitations.html" |
497 | elog "http://dev.mysql.com/doc/refman/5.1/en/federated-limitations.html" |
| 439 | fi |
498 | fi |
| 440 | |
499 | |
| 441 | # Upstream specifically requests that InnoDB always be built. |
500 | # Upstream specifically requests that InnoDB always be built: |
| 442 | plugins="${plugins},innobase" |
501 | # - innobase, innodb_plugin |
|
|
502 | # Build falcon if available for 6.x series. |
|
|
503 | for i in innobase innodb_plugin falcon ; do |
|
|
504 | [ -e "${S}"/storage/${i} ] && plugins="${plugins},${i}" |
|
|
505 | done |
| 443 | |
506 | |
| 444 | # like configuration=max-no-ndb |
507 | # like configuration=max-no-ndb |
| 445 | if use cluster ; then |
508 | if use cluster ; then |
| 446 | plugins="${plugins},ndbcluster" |
509 | plugins="${plugins},ndbcluster" |
| 447 | myconf="${myconf} --with-ndb-binlog" |
510 | myconf="${myconf} --with-ndb-binlog" |
| 448 | fi |
511 | fi |
| 449 | |
512 | |
| 450 | if mysql_version_is_at_least "5.2" ; then |
|
|
| 451 | plugins="${plugins},falcon" |
|
|
| 452 | fi |
|
|
| 453 | |
|
|
| 454 | myconf="${myconf} --with-plugins=${plugins}" |
513 | myconf="${myconf} --with-plugins=${plugins}" |
| 455 | } |
514 | } |
| 456 | |
515 | |
|
|
516 | xtradb_applicable() { |
|
|
517 | mysql_version_is_at_least "5.1.26" \ |
|
|
518 | && [[ -n "${XTRADB_VER}" && -n "${PERCONA_VER}" ]] \ |
|
|
519 | && use xtradb |
|
|
520 | return $? |
|
|
521 | } |
|
|
522 | |
|
|
523 | pbxt_applicable() { |
|
|
524 | mysql_version_is_at_least "5.1.12" \ |
|
|
525 | && [[ -n "${PBXT_VERSION}" ]] \ |
|
|
526 | && use pbxt |
|
|
527 | return $? |
|
|
528 | } |
|
|
529 | |
| 457 | pbxt_src_compile() { |
530 | pbxt_src_configure() { |
| 458 | mysql_init_vars |
531 | mysql_init_vars |
| 459 | |
532 | |
| 460 | pushd "${WORKDIR}/pbxt-${PBXT_VERSION}" &>/dev/null |
533 | pushd "${WORKDIR}/pbxt-${PBXT_VERSION}" &>/dev/null |
| 461 | |
534 | |
| 462 | einfo "Reconfiguring dir '${PWD}'" |
535 | einfo "Reconfiguring dir '${PWD}'" |
| 463 | AT_GNUCONF_UPDATE="yes" eautoreconf |
536 | AT_GNUCONF_UPDATE="yes" eautoreconf |
| 464 | |
537 | |
| 465 | local myconf="" |
538 | local myconf="" |
| 466 | myconf="${myconf} --with-mysql=${S} --libdir=${D}/${MY_LIBDIR}" |
539 | myconf="${myconf} --with-mysql=${S} --libdir=${MY_LIBDIR}" |
| 467 | use debug && myconf="${myconf} --with-debug=full" |
540 | use debug && myconf="${myconf} --with-debug=full" |
| 468 | # TODO: is it safe/needed to use econf here ? |
541 | # TODO: is it safe/needed to use econf here ? |
| 469 | ./configure ${myconf} || die "Problem configuring PBXT storage engine" |
542 | ./configure ${myconf} || die "Problem configuring PBXT storage engine" |
|
|
543 | } |
|
|
544 | |
|
|
545 | pbxt_src_compile() { |
|
|
546 | # Be backwards compatible for now |
|
|
547 | if [[ $EAPI != 2 ]]; then |
|
|
548 | pbxt_src_configure |
|
|
549 | fi |
| 470 | # TODO: is it safe/needed to use emake here ? |
550 | # TODO: is it safe/needed to use emake here ? |
| 471 | make || die "Problem making PBXT storage engine (${myconf})" |
551 | make || die "Problem making PBXT storage engine (${myconf})" |
| 472 | |
552 | |
| 473 | popd |
553 | popd |
| 474 | # TODO: modify test suite for PBXT |
554 | # TODO: modify test suite for PBXT |
| 475 | } |
555 | } |
| 476 | |
556 | |
| 477 | pbxt_src_install() { |
557 | pbxt_src_install() { |
| 478 | pushd "${WORKDIR}/pbxt-${PBXT_VERSION}" &>/dev/null |
558 | pushd "${WORKDIR}/pbxt-${PBXT_VERSION}" &>/dev/null |
| 479 | make install || die "Failed to install PBXT" |
559 | emake install DESTDIR="${D}" || die "Failed to install PBXT" |
| 480 | popd |
560 | popd |
| 481 | } |
561 | } |
| 482 | |
562 | |
| 483 | # |
563 | # |
| 484 | # EBUILD FUNCTIONS |
564 | # EBUILD FUNCTIONS |
| 485 | # |
565 | # |
|
|
566 | # @FUNCTION: mysql_pkg_setup |
|
|
567 | # @DESCRIPTION: |
|
|
568 | # Perform some basic tests and tasks during pkg_setup phase: |
|
|
569 | # die if FEATURES="test", USE="-minimal" and not using FEATURES="userpriv" |
|
|
570 | # check for conflicting use flags |
|
|
571 | # create new user and group for mysql |
|
|
572 | # warn about deprecated features |
| 486 | mysql_pkg_setup() { |
573 | mysql_pkg_setup() { |
| 487 | if hasq test ${FEATURES} ; then |
574 | if hasq test ${FEATURES} ; then |
| 488 | if ! use minimal ; then |
575 | if ! use minimal ; then |
| 489 | if [[ $UID -eq 0 ]]; then |
576 | if [[ $UID -eq 0 ]]; then |
| 490 | eerror "Testing with FEATURES=-userpriv is no longer supported by upstream. Tests MUST be run as non-root." |
577 | eerror "Testing with FEATURES=-userpriv is no longer supported by upstream. Tests MUST be run as non-root." |
| … | |
… | |
| 511 | && use minimal ; then |
598 | && use minimal ; then |
| 512 | eerror "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
599 | eerror "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
| 513 | die "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
600 | die "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
| 514 | fi |
601 | fi |
| 515 | |
602 | |
|
|
603 | # Bug #290570 fun. Upstream made us need a fairly new GCC4. |
|
|
604 | if mysql_version_is_at_least "5.0.83" ; then |
|
|
605 | GCC_VER=$(gcc-version) |
|
|
606 | case ${GCC_VER} in |
|
|
607 | 2*|3*|4.0|4.1|4.2) die "Active GCC too old! Must have at least GCC4.3" ;; |
|
|
608 | esac |
|
|
609 | fi |
|
|
610 | |
| 516 | # This should come after all of the die statements |
611 | # This should come after all of the die statements |
| 517 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
612 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
| 518 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
613 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
| 519 | |
614 | |
| 520 | mysql_check_version_range "4.0 to 5.0.99.99" \ |
615 | mysql_check_version_range "4.0 to 5.0.99.99" \ |
| 521 | && use berkdb \ |
616 | && use berkdb \ |
| 522 | && elog "Berkeley DB support is deprecated and will be removed in future versions!" |
617 | && elog "Berkeley DB support is deprecated and will be removed in future versions!" |
| 523 | } |
|
|
| 524 | |
618 | |
|
|
619 | if [ "${PN}" != "mysql-cluster" ] && use cluster; then |
|
|
620 | ewarn "Upstream has noted that the NDB cluster support in the 5.0 and" |
|
|
621 | ewarn "5.1 series should NOT be put into production. In the near" |
|
|
622 | ewarn "future, it will be disabled from building." |
|
|
623 | ewarn "" |
|
|
624 | ewarn "If you need NDB support, you should instead move to the new" |
|
|
625 | ewarn "mysql-cluster package that represents that upstream NDB" |
|
|
626 | ewarn "development." |
|
|
627 | fi |
|
|
628 | } |
|
|
629 | |
|
|
630 | # @FUNCTION: mysql_src_unpack |
|
|
631 | # @DESCRIPTION: |
|
|
632 | # Unpack the source code and call mysql_src_prepare for EAPI < 2. |
| 525 | mysql_src_unpack() { |
633 | mysql_src_unpack() { |
| 526 | # Initialize the proper variables first |
634 | # Initialize the proper variables first |
| 527 | mysql_init_vars |
635 | mysql_init_vars |
| 528 | |
636 | |
| 529 | unpack ${A} |
637 | unpack ${A} |
| 530 | # Grab the patches |
638 | # Grab the patches |
| 531 | [[ "${MY_EXTRAS_VER}" == "live" ]] && S="${WORKDIR}/mysql-extras" git_src_unpack |
639 | [[ "${MY_EXTRAS_VER}" == "live" ]] && S="${WORKDIR}/mysql-extras" git_src_unpack |
| 532 | # Bitkeeper checkout support |
640 | |
| 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}" |
641 | mv -f "${WORKDIR}/${MY_SOURCEDIR}" "${S}" |
|
|
642 | |
|
|
643 | # Be backwards compatible for now |
|
|
644 | case ${EAPI:-0} in |
|
|
645 | 2) : ;; |
|
|
646 | 0 | 1) mysql_src_prepare ;; |
|
|
647 | esac |
|
|
648 | } |
|
|
649 | |
|
|
650 | # @FUNCTION: mysql_src_prepare |
|
|
651 | # @DESCRIPTION: |
|
|
652 | # Apply patches to the source code and remove unneeded bundled libs. |
|
|
653 | mysql_src_prepare() { |
| 546 | cd "${S}" |
654 | cd "${S}" |
| 547 | fi |
|
|
| 548 | |
655 | |
| 549 | # Apply the patches for this MySQL version |
656 | # Apply the patches for this MySQL version |
| 550 | EPATCH_SUFFIX="patch" |
657 | EPATCH_SUFFIX="patch" |
| 551 | mkdir -p "${EPATCH_SOURCE}" || die "Unable to create epatch directory" |
658 | mkdir -p "${EPATCH_SOURCE}" || die "Unable to create epatch directory" |
| 552 | # Clean out old items |
659 | # Clean out old items |
| … | |
… | |
| 554 | # Now link in right patches |
661 | # Now link in right patches |
| 555 | mysql_mv_patches |
662 | mysql_mv_patches |
| 556 | # And apply |
663 | # And apply |
| 557 | epatch |
664 | epatch |
| 558 | |
665 | |
|
|
666 | # last -fPIC fixup, per bug #305873 |
|
|
667 | i="${S}"/storage/innodb_plugin/plug.in |
|
|
668 | [ -f "${i}" ] && sed -i -e '/CFLAGS/s,-prefer-non-pic,,g' "${i}" |
|
|
669 | |
| 559 | # Additional checks, remove bundled zlib |
670 | # Additional checks, remove bundled zlib |
| 560 | rm -f "${S}/zlib/"*.[ch] |
671 | rm -f "${S}/zlib/"*.[ch] |
| 561 | sed -i -e "s/zlib\/Makefile dnl/dnl zlib\/Makefile/" "${S}/configure.in" |
672 | sed -i -e "s/zlib\/Makefile dnl/dnl zlib\/Makefile/" "${S}/configure.in" |
| 562 | rm -f "scripts/mysqlbug" |
673 | rm -f "scripts/mysqlbug" |
| 563 | |
674 | |
| … | |
… | |
| 565 | find . -name 'Makefile.am' \ |
676 | find . -name 'Makefile.am' \ |
| 566 | -exec sed --in-place -e 's!$(pkgdatadir)!'${MY_SHAREDSTATEDIR}'!g' {} \; |
677 | -exec sed --in-place -e 's!$(pkgdatadir)!'${MY_SHAREDSTATEDIR}'!g' {} \; |
| 567 | |
678 | |
| 568 | if mysql_version_is_at_least "4.1" ; then |
679 | if mysql_version_is_at_least "4.1" ; then |
| 569 | # Remove what needs to be recreated, so we're sure it's actually done |
680 | # Remove what needs to be recreated, so we're sure it's actually done |
|
|
681 | einfo "Cleaning up old buildscript files" |
| 570 | find . -name Makefile \ |
682 | find . -name Makefile \ |
| 571 | -o -name Makefile.in \ |
683 | -o -name Makefile.in \ |
| 572 | -o -name configure \ |
684 | -o -name configure \ |
| 573 | -exec rm -f {} \; |
685 | -exec rm -f {} \; |
| 574 | rm -f "ltmain.sh" |
686 | rm -f "ltmain.sh" |
| 575 | rm -f "scripts/mysqlbug" |
687 | rm -f "scripts/mysqlbug" |
| 576 | fi |
688 | fi |
| 577 | |
689 | |
| 578 | local rebuilddirlist d |
690 | local rebuilddirlist d |
| 579 | |
691 | |
|
|
692 | if xtradb_applicable ; then |
|
|
693 | einfo "Replacing InnoDB with Percona XtraDB" |
|
|
694 | pushd "${S}"/storage |
|
|
695 | i="innobase" |
|
|
696 | o="${WORKDIR}/storage-${i}.mysql-upstream" |
|
|
697 | # Have we been here already? |
|
|
698 | [ -d "${o}" ] && rm -f "${i}" |
|
|
699 | # Or maybe we haven't |
|
|
700 | [ -d "${i}" -a ! -d "${o}" ] && mv "${i}" "${o}" |
|
|
701 | cp -ra "${WORKDIR}/${XTRADB_P}" "${i}" |
|
|
702 | popd |
|
|
703 | fi |
|
|
704 | |
| 580 | if mysql_version_is_at_least "5.1.12" ; then |
705 | if mysql_version_is_at_least "5.1.12" ; then |
| 581 | rebuilddirlist="." |
706 | rebuilddirlist="." |
|
|
707 | # This does not seem to be needed presently. robbat2 2010/02/23 |
|
|
708 | #einfo "Updating innobase cmake" |
| 582 | # TODO: check this with a cmake expert |
709 | ## TODO: check this with a cmake expert |
| 583 | cmake \ |
710 | #cmake \ |
| 584 | -DCMAKE_C_COMPILER=$(type -P $(tc-getCC)) \ |
711 | # -DCMAKE_C_COMPILER=$(type -P $(tc-getCC)) \ |
| 585 | -DCMAKE_CXX_COMPILER=$(type -P $(tc-getCXX)) \ |
712 | # -DCMAKE_CXX_COMPILER=$(type -P $(tc-getCXX)) \ |
| 586 | "storage/innobase" |
713 | # "storage/innobase" |
| 587 | else |
714 | else |
| 588 | rebuilddirlist=". innobase" |
715 | rebuilddirlist=". innobase" |
| 589 | fi |
716 | fi |
| 590 | |
717 | |
| 591 | for d in ${rebuilddirlist} ; do |
718 | for d in ${rebuilddirlist} ; do |
| … | |
… | |
| 595 | popd &>/dev/null |
722 | popd &>/dev/null |
| 596 | done |
723 | done |
| 597 | |
724 | |
| 598 | if mysql_check_version_range "4.1 to 5.0.99.99" \ |
725 | if mysql_check_version_range "4.1 to 5.0.99.99" \ |
| 599 | && use berkdb ; then |
726 | && use berkdb ; then |
|
|
727 | einfo "Fixing up berkdb buildsystem" |
| 600 | [[ -w "bdb/dist/ltmain.sh" ]] && cp -f "ltmain.sh" "bdb/dist/ltmain.sh" |
728 | [[ -w "bdb/dist/ltmain.sh" ]] && cp -f "ltmain.sh" "bdb/dist/ltmain.sh" |
| 601 | cp -f "/usr/share/aclocal/libtool.m4" "bdb/dist/aclocal/libtool.ac" \ |
729 | cp -f "/usr/share/aclocal/libtool.m4" "bdb/dist/aclocal/libtool.ac" \ |
| 602 | || die "Could not copy libtool.m4 to bdb/dist/" |
730 | || die "Could not copy libtool.m4 to bdb/dist/" |
| 603 | #These files exist only with libtool-2*, and need to be included. |
731 | #These files exist only with libtool-2*, and need to be included. |
| 604 | if [ -f '/usr/share/aclocal/ltsugar.m4' ]; then |
732 | if [ -f '/usr/share/aclocal/ltsugar.m4' ]; then |
| … | |
… | |
| 612 | || die "Failed bdb reconfigure" |
740 | || die "Failed bdb reconfigure" |
| 613 | popd &>/dev/null |
741 | popd &>/dev/null |
| 614 | fi |
742 | fi |
| 615 | } |
743 | } |
| 616 | |
744 | |
|
|
745 | # @FUNCTION: mysql_src_configure |
|
|
746 | # @DESCRIPTION: |
|
|
747 | # Configure mysql to build the code for Gentoo respecting the use flags. |
| 617 | mysql_src_compile() { |
748 | mysql_src_configure() { |
| 618 | # Make sure the vars are correctly initialized |
749 | # Make sure the vars are correctly initialized |
| 619 | mysql_init_vars |
750 | mysql_init_vars |
| 620 | |
751 | |
| 621 | # $myconf is modified by the configure_* functions |
752 | # $myconf is modified by the configure_* functions |
| 622 | local myconf="" |
753 | local myconf="" |
| … | |
… | |
| 647 | CXXFLAGS="${CXXFLAGS} -fno-exceptions -fno-strict-aliasing" |
778 | CXXFLAGS="${CXXFLAGS} -fno-exceptions -fno-strict-aliasing" |
| 648 | CXXFLAGS="${CXXFLAGS} -felide-constructors -fno-rtti" |
779 | CXXFLAGS="${CXXFLAGS} -felide-constructors -fno-rtti" |
| 649 | mysql_version_is_at_least "5.0" \ |
780 | mysql_version_is_at_least "5.0" \ |
| 650 | && CXXFLAGS="${CXXFLAGS} -fno-implicit-templates" |
781 | && CXXFLAGS="${CXXFLAGS} -fno-implicit-templates" |
| 651 | export CXXFLAGS |
782 | export CXXFLAGS |
|
|
783 | |
|
|
784 | # bug #283926, with GCC4.4, this is required to get correct behavior. |
|
|
785 | append-flags -fno-strict-aliasing |
| 652 | |
786 | |
| 653 | econf \ |
787 | econf \ |
| 654 | --libexecdir="/usr/sbin" \ |
788 | --libexecdir="/usr/sbin" \ |
| 655 | --sysconfdir="${MY_SYSCONFDIR}" \ |
789 | --sysconfdir="${MY_SYSCONFDIR}" \ |
| 656 | --localstatedir="${MY_LOCALSTATEDIR}" \ |
790 | --localstatedir="${MY_LOCALSTATEDIR}" \ |
| … | |
… | |
| 667 | # TODO: Move this before autoreconf !!! |
801 | # TODO: Move this before autoreconf !!! |
| 668 | find . -type f -name Makefile -print0 \ |
802 | find . -type f -name Makefile -print0 \ |
| 669 | | xargs -0 -n100 sed -i \ |
803 | | xargs -0 -n100 sed -i \ |
| 670 | -e 's|^pkglibdir *= *$(libdir)/mysql|pkglibdir = $(libdir)|;s|^pkgincludedir *= *$(includedir)/mysql|pkgincludedir = $(includedir)|' |
804 | -e 's|^pkglibdir *= *$(libdir)/mysql|pkglibdir = $(libdir)|;s|^pkgincludedir *= *$(includedir)/mysql|pkgincludedir = $(includedir)|' |
| 671 | |
805 | |
|
|
806 | if [[ $EAPI == 2 ]]; then |
|
|
807 | pbxt_applicable && pbxt_src_configure |
|
|
808 | fi |
|
|
809 | } |
|
|
810 | |
|
|
811 | # @FUNCTION: mysql_src_compile |
|
|
812 | # @DESCRIPTION: |
|
|
813 | # Compile the mysql code. |
|
|
814 | mysql_src_compile() { |
|
|
815 | # Be backwards compatible for now |
|
|
816 | case ${EAPI:-0} in |
|
|
817 | 2) : ;; |
|
|
818 | 0 | 1) mysql_src_configure ;; |
|
|
819 | esac |
|
|
820 | |
| 672 | emake || die "emake failed" |
821 | emake || die "emake failed" |
| 673 | |
822 | |
| 674 | mysql_version_is_at_least "5.1.12" && use pbxt && pbxt_src_compile |
823 | pbxt_applicable && pbxt_src_compile |
| 675 | } |
824 | } |
| 676 | |
825 | |
|
|
826 | # @FUNCTION: mysql_src_install |
|
|
827 | # @DESCRIPTION: |
|
|
828 | # Install mysql. |
| 677 | mysql_src_install() { |
829 | mysql_src_install() { |
| 678 | # Make sure the vars are correctly initialized |
830 | # Make sure the vars are correctly initialized |
| 679 | mysql_init_vars |
831 | mysql_init_vars |
| 680 | |
832 | |
| 681 | emake install DESTDIR="${D}" benchdir_root="${MY_SHAREDSTATEDIR}" || die "emake install failed" |
833 | emake install \ |
|
|
834 | DESTDIR="${D}" \ |
|
|
835 | benchdir_root="${MY_SHAREDSTATEDIR}" \ |
|
|
836 | testroot="${MY_SHAREDSTATEDIR}" \ |
|
|
837 | || die "emake install failed" |
| 682 | |
838 | |
| 683 | mysql_version_is_at_least "5.1.12" && use pbxt && pbxt_src_install |
839 | pbxt_applicable && pbxt_src_install |
| 684 | |
840 | |
| 685 | # Convenience links |
841 | # Convenience links |
| 686 | einfo "Making Convenience links for mysqlcheck multi-call binary" |
842 | einfo "Making Convenience links for mysqlcheck multi-call binary" |
| 687 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlanalyze" |
843 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlanalyze" |
| 688 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlrepair" |
844 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlrepair" |
| … | |
… | |
| 692 | einfo "Removing duplicate /usr/share/mysql files" |
848 | einfo "Removing duplicate /usr/share/mysql files" |
| 693 | rm -Rf "${D}/usr/share/info" |
849 | rm -Rf "${D}/usr/share/info" |
| 694 | for removeme in "mysql-log-rotate" mysql.server* \ |
850 | for removeme in "mysql-log-rotate" mysql.server* \ |
| 695 | binary-configure* my-*.cnf mi_test_all* |
851 | binary-configure* my-*.cnf mi_test_all* |
| 696 | do |
852 | do |
| 697 | rm -f "${D}"/usr/share/mysql/${removeme} |
853 | rm -f "${D}"/${MY_SHAREDSTATEDIR}/${removeme} |
| 698 | done |
854 | done |
| 699 | |
855 | |
| 700 | # Clean up stuff for a minimal build |
856 | # Clean up stuff for a minimal build |
| 701 | if use minimal ; then |
857 | if use minimal ; then |
| 702 | einfo "Remove all extra content for minimal build" |
858 | einfo "Remove all extra content for minimal build" |
| 703 | rm -Rf "${D}${MY_SHAREDSTATEDIR}"/{mysql-test,sql-bench} |
859 | rm -Rf "${D}${MY_SHAREDSTATEDIR}"/{mysql-test,sql-bench} |
| 704 | rm -f "${D}"/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} |
860 | rm -f "${D}"/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} |
| 705 | rm -f "${D}/usr/sbin/mysqld" |
861 | rm -f "${D}/usr/sbin/mysqld" |
| 706 | rm -f "${D}${MY_LIBDIR}"/lib{heap,merge,nisam,my{sys,strings,sqld,isammrg,isam},vio,dbug}.a |
862 | rm -f "${D}${MY_LIBDIR}"/lib{heap,merge,nisam,my{sys,strings,sqld,isammrg,isam},vio,dbug}.a |
|
|
863 | fi |
|
|
864 | |
|
|
865 | # Unless they explicitly specific USE=test, then do not install the |
|
|
866 | # testsuite. It DOES have a use to be installed, esp. when you want to do a |
|
|
867 | # validation of your database configuration after tuning it. |
|
|
868 | if use !test ; then |
|
|
869 | rm -rf "${D}"/${MY_SHAREDSTATEDIR}/mysql-test |
| 707 | fi |
870 | fi |
| 708 | |
871 | |
| 709 | # Configuration stuff |
872 | # Configuration stuff |
| 710 | if mysql_version_is_at_least "4.1" ; then |
873 | if mysql_version_is_at_least "4.1" ; then |
| 711 | mysql_mycnf_version="4.1" |
874 | mysql_mycnf_version="4.1" |
| … | |
… | |
| 742 | done |
905 | done |
| 743 | fi |
906 | fi |
| 744 | |
907 | |
| 745 | # Docs |
908 | # Docs |
| 746 | einfo "Installing docs" |
909 | einfo "Installing docs" |
| 747 | dodoc README COPYING ChangeLog EXCEPTIONS-CLIENT INSTALL-SOURCE |
910 | dodoc README ChangeLog EXCEPTIONS-CLIENT INSTALL-SOURCE |
| 748 | doinfo "${S}"/Docs/mysql.info |
911 | doinfo "${S}"/Docs/mysql.info |
| 749 | |
912 | |
| 750 | # Minimal builds don't have the MySQL server |
913 | # Minimal builds don't have the MySQL server |
| 751 | if ! use minimal ; then |
914 | if ! use minimal ; then |
| 752 | einfo "Including support files and sample configurations" |
915 | einfo "Including support files and sample configurations" |
| … | |
… | |
| 754 | for script in \ |
917 | for script in \ |
| 755 | "${S}"/support-files/my-*.cnf \ |
918 | "${S}"/support-files/my-*.cnf \ |
| 756 | "${S}"/support-files/magic \ |
919 | "${S}"/support-files/magic \ |
| 757 | "${S}"/support-files/ndb-config-2-node.ini |
920 | "${S}"/support-files/ndb-config-2-node.ini |
| 758 | do |
921 | do |
| 759 | dodoc "${script}" |
922 | [[ -f "$script" ]] && dodoc "${script}" |
| 760 | done |
923 | done |
| 761 | |
924 | |
| 762 | docinto "scripts" |
925 | docinto "scripts" |
| 763 | for script in "${S}"/scripts/mysql* ; do |
926 | for script in "${S}"/scripts/mysql* ; do |
| 764 | [[ "${script%.sh}" == "${script}" ]] && dodoc "${script}" |
927 | [[ -f "$script" ]] && [[ "${script%.sh}" == "${script}" ]] && dodoc "${script}" |
| 765 | done |
928 | done |
| 766 | |
929 | |
| 767 | fi |
930 | fi |
| 768 | |
931 | |
| 769 | mysql_lib_symlinks "${D}" |
932 | mysql_lib_symlinks "${D}" |
| 770 | } |
933 | } |
| 771 | |
934 | |
|
|
935 | # @FUNCTION: mysql_pkg_preinst |
|
|
936 | # @DESCRIPTION: |
|
|
937 | # Create the user and groups for mysql - die if that fails. |
| 772 | mysql_pkg_preinst() { |
938 | mysql_pkg_preinst() { |
| 773 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
939 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
| 774 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
940 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
| 775 | } |
941 | } |
| 776 | |
942 | |
|
|
943 | # @FUNCTION: mysql_pkg_postinst |
|
|
944 | # @DESCRIPTION: |
|
|
945 | # Run post-installation tasks: |
|
|
946 | # create the dir for logfiles if non-existant |
|
|
947 | # touch the logfiles and secure them |
|
|
948 | # install scripts |
|
|
949 | # issue required steps for optional features |
|
|
950 | # issue deprecation warnings |
| 777 | mysql_pkg_postinst() { |
951 | mysql_pkg_postinst() { |
| 778 | # Make sure the vars are correctly initialized |
952 | # Make sure the vars are correctly initialized |
| 779 | mysql_init_vars |
953 | mysql_init_vars |
| 780 | |
954 | |
| 781 | # Check FEATURES="collision-protect" before removing this |
955 | # Check FEATURES="collision-protect" before removing this |
| … | |
… | |
| 807 | elog "\"emerge --config =${CATEGORY}/${PF}\"" |
981 | elog "\"emerge --config =${CATEGORY}/${PF}\"" |
| 808 | elog "if this is a new install." |
982 | elog "if this is a new install." |
| 809 | einfo |
983 | einfo |
| 810 | fi |
984 | fi |
| 811 | |
985 | |
| 812 | if mysql_version_is_at_least "5.1.12" && use pbxt ; then |
986 | if pbxt_applicable ; then |
| 813 | # TODO: explain it better |
987 | # TODO: explain it better |
| 814 | elog " mysql> INSTALL PLUGIN pbxt SONAME 'libpbxt.so';" |
988 | elog " mysql> INSTALL PLUGIN pbxt SONAME 'libpbxt.so';" |
| 815 | elog " mysql> CREATE TABLE t1 (c1 int, c2 text) ENGINE=pbxt;" |
989 | elog " mysql> CREATE TABLE t1 (c1 int, c2 text) ENGINE=pbxt;" |
| 816 | elog "if, after that, you cannot start the MySQL server," |
990 | elog "if, after that, you cannot start the MySQL server," |
| 817 | elog "remove the ${MY_DATADIR}/mysql/plugin.* files, then" |
991 | elog "remove the ${MY_DATADIR}/mysql/plugin.* files, then" |
| … | |
… | |
| 827 | mysql_check_version_range "4.0 to 5.0.99.99" \ |
1001 | mysql_check_version_range "4.0 to 5.0.99.99" \ |
| 828 | && use berkdb \ |
1002 | && use berkdb \ |
| 829 | && elog "Berkeley DB support is deprecated and will be removed in future versions!" |
1003 | && elog "Berkeley DB support is deprecated and will be removed in future versions!" |
| 830 | } |
1004 | } |
| 831 | |
1005 | |
|
|
1006 | # @FUNCTION: mysql_pkg_config |
|
|
1007 | # @DESCRIPTION: |
|
|
1008 | # Configure mysql environment. |
| 832 | mysql_pkg_config() { |
1009 | mysql_pkg_config() { |
|
|
1010 | local old_MY_DATADIR="${MY_DATADIR}" |
|
|
1011 | |
| 833 | # Make sure the vars are correctly initialized |
1012 | # Make sure the vars are correctly initialized |
| 834 | mysql_init_vars |
1013 | mysql_init_vars |
| 835 | |
1014 | |
| 836 | [[ -z "${MY_DATADIR}" ]] && die "Sorry, unable to find MY_DATADIR" |
1015 | [[ -z "${MY_DATADIR}" ]] && die "Sorry, unable to find MY_DATADIR" |
| 837 | |
1016 | |
| 838 | if built_with_use ${CATEGORY}/${PN} minimal ; then |
1017 | if built_with_use ${CATEGORY}/${PN} minimal ; then |
| 839 | die "Minimal builds do NOT include the MySQL server" |
1018 | die "Minimal builds do NOT include the MySQL server" |
|
|
1019 | fi |
|
|
1020 | |
|
|
1021 | if [[ ( -n "${MY_DATADIR}" ) && ( "${MY_DATADIR}" != "${old_MY_DATADIR}" ) ]]; then |
|
|
1022 | local MY_DATADIR_s="$(strip_duplicate_slashes ${ROOT}/${MY_DATADIR})" |
|
|
1023 | local old_MY_DATADIR_s="$(strip_duplicate_slashes ${ROOT}/${old_MY_DATADIR})" |
|
|
1024 | |
|
|
1025 | if [[ -d "${old_MY_DATADIR_s}" ]]; then |
|
|
1026 | if [[ -d "${MY_DATADIR_s}" ]]; then |
|
|
1027 | ewarn "Both ${old_MY_DATADIR_s} and ${MY_DATADIR_s} exist" |
|
|
1028 | ewarn "Attempting to use ${MY_DATADIR_s} and preserving ${old_MY_DATADIR_s}" |
|
|
1029 | else |
|
|
1030 | elog "Moving MY_DATADIR from ${old_MY_DATADIR_s} to ${MY_DATADIR_s}" |
|
|
1031 | mv --strip-trailing-slashes -T "${old_MY_DATADIR_s}" "${MY_DATADIR_s}" \ |
|
|
1032 | || die "Moving MY_DATADIR failed" |
|
|
1033 | fi |
|
|
1034 | else |
|
|
1035 | ewarn "Previous MY_DATADIR (${old_MY_DATADIR_s}) does not exist" |
|
|
1036 | if [[ -d "${MY_DATADIR_s}" ]]; then |
|
|
1037 | ewarn "Attempting to use ${MY_DATADIR_s}" |
|
|
1038 | else |
|
|
1039 | eerror "New MY_DATADIR (${MY_DATADIR_s}) does not exist" |
|
|
1040 | die "Configuration Failed! Please reinstall ${CATEGORY}/${PN}" |
|
|
1041 | fi |
|
|
1042 | fi |
| 840 | fi |
1043 | fi |
| 841 | |
1044 | |
| 842 | local pwd1="a" |
1045 | local pwd1="a" |
| 843 | local pwd2="b" |
1046 | local pwd2="b" |
| 844 | local maxtry=5 |
1047 | local maxtry=5 |
| … | |
… | |
| 945 | einfo "Stopping the server ..." |
1148 | einfo "Stopping the server ..." |
| 946 | wait %1 |
1149 | wait %1 |
| 947 | einfo "Done" |
1150 | einfo "Done" |
| 948 | } |
1151 | } |
| 949 | |
1152 | |
|
|
1153 | # @FUNCTION: mysql_pkg_postrm |
|
|
1154 | # @DESCRIPTION: |
|
|
1155 | # Remove mysql symlinks. |
| 950 | mysql_pkg_postrm() { |
1156 | mysql_pkg_postrm() { |
| 951 | : # mysql_lib_symlinks "${D}" |
1157 | : # mysql_lib_symlinks "${D}" |
| 952 | } |
1158 | } |