| 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.94 2008/05/29 05:33:49 robbat2 Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/mysql.eclass,v 1.125 2010/01/31 05:00:43 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 |
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 |
| … | |
… | |
| 72 | mysql_version_is_at_least "5.1" \ |
124 | mysql_version_is_at_least "5.1" \ |
| 73 | || DEPEND="${DEPEND} berkdb? ( sys-apps/ed )" |
125 | || DEPEND="${DEPEND} berkdb? ( sys-apps/ed )" |
| 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} innodb? ( >=dev-util/cmake-2.4.3 )" |
129 | && DEPEND="${DEPEND} >=dev-util/cmake-2.4.3" |
| 78 | |
|
|
| 79 | # BitKeeper dependency, compile-time only |
|
|
| 80 | [[ ${IS_BITKEEPER} -eq 90 ]] && DEPEND="${DEPEND} dev-util/bk_client" |
|
|
| 81 | |
|
|
| 82 | |
130 | |
| 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 )" |
|
|
133 | |
|
|
134 | # For other stuff to bring us in |
|
|
135 | PDEPEND="${PDEPEND} =virtual/mysql-$(get_version_component_range 1-2 ${PV})" |
| 85 | |
136 | |
| 86 | # Work out the default SERVER_URI correctly |
137 | # Work out the default SERVER_URI correctly |
| 87 | if [ -z "${SERVER_URI}" ]; then |
138 | if [ -z "${SERVER_URI}" ]; then |
| 88 | # The community build is on the mirrors |
139 | # The community build is on the mirrors |
| 89 | if [ "${PN}" == "mysql-community" ]; then |
140 | if [ "${MYSQL_COMMUNITY_FEATURES}" == "1" ]; then |
| 90 | SERVER_URI="mirror://mysql/Downloads/MySQL-${PV%.*}/mysql-${PV//_/-}.tar.gz" |
141 | SERVER_URI="mirror://mysql/Downloads/MySQL-${PV%.*}/mysql-${PV//_/-}.tar.gz" |
| 91 | # The enterprise source is on the primary site only |
142 | # The (old) enterprise source is on the primary site only |
| 92 | elif [ "${PN}" == "mysql" ]; then |
143 | elif [ "${PN}" == "mysql" ]; then |
| 93 | 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" |
| 94 | fi |
145 | fi |
| 95 | fi |
146 | fi |
| 96 | |
147 | |
| 97 | # Define correct SRC_URIs |
148 | # Define correct SRC_URIs |
| 98 | SRC_URI="${SERVER_URI}" |
149 | SRC_URI="${SERVER_URI}" |
| 99 | |
150 | |
| 100 | [[ ${MY_EXTRAS_VER} != live ]] && SRC_URI="${SRC_URI} |
151 | # Gentoo patches to MySQL |
|
|
152 | [[ ${MY_EXTRAS_VER} != live ]] \ |
|
|
153 | && SRC_URI="${SRC_URI} |
| 101 | mirror://gentoo/mysql-extras-${MY_EXTRAS_VER}.tar.bz2 |
154 | mirror://gentoo/mysql-extras-${MY_EXTRAS_VER}.tar.bz2 |
| 102 | http://g3nt8.org/patches/mysql-extras-${MY_EXTRAS_VER}.tar.bz2" |
155 | http://g3nt8.org/patches/mysql-extras-${MY_EXTRAS_VER}.tar.bz2 |
|
|
156 | http://dev.gentoo.org/~robbat2/distfiles/mysql-extras-${MY_EXTRAS_VER}.tar.bz2" |
|
|
157 | |
|
|
158 | # PBXT engine |
| 103 | mysql_version_is_at_least "5.1.12" \ |
159 | mysql_version_is_at_least "5.1.12" \ |
| 104 | && [[ -n "${PBXT_VERSION}" ]] \ |
160 | && [[ -n "${PBXT_VERSION}" ]] \ |
| 105 | && SRC_URI="${SRC_URI} pbxt? ( mirror://sourceforge/pbxt/pbxt-${PBXT_VERSION}.tar.gz )" |
161 | && PBXT_P="pbxt-${PBXT_VERSION}" \ |
|
|
162 | && PBXT_SRC_URI="mirror://sourceforge/pbxt/${PBXT_P}.tar.gz" \ |
|
|
163 | && SRC_URI="${SRC_URI} pbxt? ( ${PBXT_SRC_URI} )" |
|
|
164 | |
|
|
165 | # Get the percona tarball if XTRADB_VER and PERCONA_VER are both set |
|
|
166 | mysql_version_is_at_least "5.1.26" \ |
|
|
167 | && [[ -n "${XTRADB_VER}" && -n "${PERCONA_VER}" ]] \ |
|
|
168 | && XTRADB_P="percona-xtradb-${XTRADB_VER}" \ |
|
|
169 | && XTRADB_SRC_URI="http://www.percona.com/${PN}/xtradb/${PERCONA_VER}/source/${XTRADB_P}.tar.gz" \ |
|
|
170 | && SRC_URI="${SRC_URI} xtradb? ( ${XTRADB_SRC_URI} )" |
| 106 | |
171 | |
| 107 | DESCRIPTION="A fast, multi-threaded, multi-user SQL database server." |
172 | DESCRIPTION="A fast, multi-threaded, multi-user SQL database server." |
| 108 | HOMEPAGE="http://www.mysql.com/" |
173 | HOMEPAGE="http://www.mysql.com/" |
| 109 | LICENSE="GPL-2" |
174 | LICENSE="GPL-2" |
| 110 | SLOT="0" |
175 | SLOT="0" |
| 111 | IUSE="big-tables debug embedded minimal perl selinux ssl static" |
176 | IUSE="big-tables debug embedded minimal ${IUSE_DEFAULT_ON}perl selinux ssl static" |
| 112 | |
177 | |
| 113 | mysql_version_is_at_least "4.1" \ |
178 | mysql_version_is_at_least "4.1" \ |
| 114 | && IUSE="${IUSE} latin1" |
179 | && IUSE="${IUSE} latin1" |
| 115 | |
180 | |
| 116 | mysql_version_is_at_least "4.1.3" \ |
181 | mysql_version_is_at_least "4.1.3" \ |
| … | |
… | |
| 121 | |
186 | |
| 122 | mysql_version_is_at_least "5.0.18" \ |
187 | mysql_version_is_at_least "5.0.18" \ |
| 123 | && IUSE="${IUSE} max-idx-128" |
188 | && IUSE="${IUSE} max-idx-128" |
| 124 | |
189 | |
| 125 | mysql_version_is_at_least "5.1" \ |
190 | mysql_version_is_at_least "5.1" \ |
| 126 | && IUSE="${IUSE} innodb" |
|
|
| 127 | |
|
|
| 128 | mysql_version_is_at_least "5.1" \ |
|
|
| 129 | || IUSE="${IUSE} berkdb" |
191 | || IUSE="${IUSE} berkdb" |
| 130 | |
192 | |
| 131 | mysql_version_is_at_least "5.1.12" \ |
193 | mysql_version_is_at_least "5.1.12" \ |
|
|
194 | && [[ -n "${PBXT_VERSION}" ]] \ |
| 132 | && IUSE="${IUSE} pbxt" |
195 | && IUSE="${IUSE} pbxt" |
| 133 | |
196 | |
| 134 | EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_preinst \ |
197 | mysql_version_is_at_least "5.1.26" \ |
| 135 | pkg_postinst pkg_config pkg_postrm |
198 | && [[ -n "${XTRADB_VER}" && -n "${PERCONA_VER}" ]] \ |
|
|
199 | && IUSE="${IUSE} xtradb" |
|
|
200 | |
|
|
201 | [ "${MYSQL_COMMUNITY_FEATURES}" == "1" ] \ |
|
|
202 | && IUSE="${IUSE} ${IUSE_DEFAULT_ON}community profiling" |
| 136 | |
203 | |
| 137 | # |
204 | # |
| 138 | # HELPER FUNCTIONS: |
205 | # HELPER FUNCTIONS: |
| 139 | # |
206 | # |
| 140 | |
207 | |
| 141 | bitkeeper_fetch() { |
208 | # @FUNCTION: mysql_disable_test |
| 142 | local reposuf |
209 | # @DESCRIPTION: |
| 143 | if [[ -z "${1}" ]] ; then |
210 | # 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() { |
211 | mysql_disable_test() { |
| 205 | local testname="${1}" ; shift |
212 | local testname="${1}" ; shift |
| 206 | local reason="${@}" |
213 | local reason="${@}" |
| 207 | local mysql_disable_file="${S}/mysql-test/t/disabled.def" |
214 | local mysql_disable_file="${S}/mysql-test/t/disabled.def" |
| 208 | echo ${testname} : ${reason} >> "${mysql_disable_file}" |
215 | echo ${testname} : ${reason} >> "${mysql_disable_file}" |
| 209 | ewarn "test '${testname}' disabled: '${reason}'" |
216 | ewarn "test '${testname}' disabled: '${reason}'" |
| 210 | } |
217 | } |
| 211 | |
218 | |
|
|
219 | # @FUNCTION: mysql_init_vars |
|
|
220 | # @DESCRIPTION: |
| 212 | # void mysql_init_vars() |
221 | # void mysql_init_vars() |
| 213 | # |
|
|
| 214 | # Initialize global variables |
222 | # Initialize global variables |
| 215 | # 2005-11-19 <vivo@gentoo.org> |
223 | # 2005-11-19 <vivo@gentoo.org> |
| 216 | |
|
|
| 217 | mysql_init_vars() { |
224 | mysql_init_vars() { |
| 218 | MY_SHAREDSTATEDIR=${MY_SHAREDSTATEDIR="/usr/share/mysql"} |
225 | MY_SHAREDSTATEDIR=${MY_SHAREDSTATEDIR="/usr/share/mysql"} |
| 219 | MY_SYSCONFDIR=${MY_SYSCONFDIR="/etc/mysql"} |
226 | MY_SYSCONFDIR=${MY_SYSCONFDIR="/etc/mysql"} |
| 220 | MY_LIBDIR=${MY_LIBDIR="/usr/$(get_libdir)/mysql"} |
227 | MY_LIBDIR=${MY_LIBDIR="/usr/$(get_libdir)/mysql"} |
| 221 | MY_LOCALSTATEDIR=${MY_LOCALSTATEDIR="/var/lib/mysql"} |
228 | MY_LOCALSTATEDIR=${MY_LOCALSTATEDIR="/var/lib/mysql"} |
| … | |
… | |
| 240 | fi |
247 | fi |
| 241 | elog "MySQL MY_DATADIR is ${MY_DATADIR}" |
248 | elog "MySQL MY_DATADIR is ${MY_DATADIR}" |
| 242 | |
249 | |
| 243 | if [[ -z "${PREVIOUS_DATADIR}" ]] ; then |
250 | if [[ -z "${PREVIOUS_DATADIR}" ]] ; then |
| 244 | if [[ -e "${MY_DATADIR}" ]] ; then |
251 | if [[ -e "${MY_DATADIR}" ]] ; then |
| 245 | elog "Previous datadir found, it's YOUR job to change" |
252 | # If you get this and you're wondering about it, see bug #207636 |
| 246 | elog "ownership and take care of it" |
253 | elog "MySQL datadir found in ${MY_DATADIR}" |
|
|
254 | elog "A new one will not be created." |
| 247 | PREVIOUS_DATADIR="yes" |
255 | PREVIOUS_DATADIR="yes" |
| 248 | else |
256 | else |
| 249 | PREVIOUS_DATADIR="no" |
257 | PREVIOUS_DATADIR="no" |
| 250 | fi |
258 | fi |
| 251 | export PREVIOUS_DATADIR |
259 | export PREVIOUS_DATADIR |
|
|
260 | fi |
|
|
261 | else |
|
|
262 | if [[ ${EBUILD_PHASE} == "config" ]]; then |
|
|
263 | local new_MY_DATADIR |
|
|
264 | new_MY_DATADIR=`"my_print_defaults" mysqld 2>/dev/null \ |
|
|
265 | | sed -ne '/datadir/s|^--datadir=||p' \ |
|
|
266 | | tail -n1` |
|
|
267 | |
|
|
268 | if [[ ( -n "${new_MY_DATADIR}" ) && ( "${new_MY_DATADIR}" != "${MY_DATADIR}" ) ]]; then |
|
|
269 | ewarn "MySQL MY_DATADIR has changed" |
|
|
270 | ewarn "from ${MY_DATADIR}" |
|
|
271 | ewarn "to ${new_MY_DATADIR}" |
|
|
272 | MY_DATADIR="${new_MY_DATADIR}" |
|
|
273 | fi |
| 252 | fi |
274 | fi |
| 253 | fi |
275 | fi |
| 254 | |
276 | |
| 255 | MY_SOURCEDIR=${SERVER_URI##*/} |
277 | MY_SOURCEDIR=${SERVER_URI##*/} |
| 256 | MY_SOURCEDIR=${MY_SOURCEDIR%.tar*} |
278 | MY_SOURCEDIR=${MY_SOURCEDIR%.tar*} |
| … | |
… | |
| 312 | mysql_version_is_at_least "4.1.3" \ |
334 | mysql_version_is_at_least "4.1.3" \ |
| 313 | && use cluster \ |
335 | && use cluster \ |
| 314 | && myconf="${myconf} --without-ndb-debug" |
336 | && myconf="${myconf} --without-ndb-debug" |
| 315 | fi |
337 | fi |
| 316 | |
338 | |
|
|
339 | if [ -n "${MYSQL_DEFAULT_CHARSET}" -a -n "${MYSQL_DEFAULT_COLLATION}" ]; then |
|
|
340 | ewarn "You are using a custom charset of ${MYSQL_DEFAULT_CHARSET}" |
|
|
341 | ewarn "and a collation of ${MYSQL_DEFAULT_COLLATION}." |
|
|
342 | ewarn "You MUST file bugs without these variables set." |
|
|
343 | myconf="${myconf} --with-charset=${MYSQL_DEFAULT_CHARSET}" |
|
|
344 | myconf="${myconf} --with-collation=${MYSQL_DEFAULT_COLLATION}" |
| 317 | if mysql_version_is_at_least "4.1" && ! use latin1 ; then |
345 | elif mysql_version_is_at_least "4.1" && ! use latin1 ; then |
| 318 | myconf="${myconf} --with-charset=utf8" |
346 | myconf="${myconf} --with-charset=utf8" |
| 319 | myconf="${myconf} --with-collation=utf8_general_ci" |
347 | myconf="${myconf} --with-collation=utf8_general_ci" |
| 320 | else |
348 | else |
| 321 | myconf="${myconf} --with-charset=latin1" |
349 | myconf="${myconf} --with-charset=latin1" |
| 322 | myconf="${myconf} --with-collation=latin1_swedish_ci" |
350 | myconf="${myconf} --with-collation=latin1_swedish_ci" |
| 323 | fi |
351 | fi |
| 324 | |
352 | |
| 325 | if use embedded ; then |
353 | if use embedded ; then |
| 326 | myconf="${myconf} --with-embedded-privilege-control" |
354 | myconf="${myconf} --with-embedded-privilege-control" |
| 327 | myconf="${myconf} --with-embedded-server" |
355 | myconf="${myconf} --with-embedded-server" |
| … | |
… | |
| 350 | myconf="${myconf} $(use_with ssl)" |
378 | myconf="${myconf} $(use_with ssl)" |
| 351 | else |
379 | else |
| 352 | myconf="${myconf} $(use_with ssl openssl)" |
380 | myconf="${myconf} $(use_with ssl openssl)" |
| 353 | fi |
381 | fi |
| 354 | |
382 | |
|
|
383 | if mysql_version_is_at_least "5.0.60" ; then |
| 355 | if use berkdb ; then |
384 | if use berkdb ; then |
|
|
385 | elog "Berkeley DB support was disabled due to build failures" |
|
|
386 | elog "on multiple arches, go to a version earlier than 5.0.60" |
|
|
387 | elog "if you want it again. Gentoo bug #224067." |
|
|
388 | fi |
|
|
389 | myconf="${myconf} --without-berkeley-db" |
|
|
390 | elif use berkdb ; then |
| 356 | # The following fix is due to a bug with bdb on SPARC's. See: |
391 | # The following fix is due to a bug with bdb on SPARC's. See: |
| 357 | # http://www.geocrawler.com/mail/msg.php3?msg_id=4754814&list=8 |
392 | # http://www.geocrawler.com/mail/msg.php3?msg_id=4754814&list=8 |
| 358 | # It comes down to non-64-bit safety problems. |
393 | # It comes down to non-64-bit safety problems. |
| 359 | if use alpha || use amd64 || use hppa || use mips || use sparc ; then |
394 | if use alpha || use amd64 || use hppa || use mips || use sparc ; then |
| 360 | elog "Berkeley DB support was disabled due to compatibility issues on this arch" |
395 | elog "Berkeley DB support was disabled due to compatibility issues on this arch" |
| … | |
… | |
| 386 | # http://dev.mysql.com/doc/mysql/en/federated-limitations.html |
421 | # http://dev.mysql.com/doc/mysql/en/federated-limitations.html |
| 387 | if mysql_version_is_at_least "5.0.3" ; then |
422 | if mysql_version_is_at_least "5.0.3" ; then |
| 388 | elog "Before using the Federated storage engine, please be sure to read" |
423 | elog "Before using the Federated storage engine, please be sure to read" |
| 389 | elog "http://dev.mysql.com/doc/mysql/en/federated-limitations.html" |
424 | elog "http://dev.mysql.com/doc/mysql/en/federated-limitations.html" |
| 390 | myconf="${myconf} --with-federated-storage-engine" |
425 | myconf="${myconf} --with-federated-storage-engine" |
|
|
426 | fi |
|
|
427 | fi |
|
|
428 | |
|
|
429 | if [ "${MYSQL_COMMUNITY_FEATURES}" == "1" ]; then |
|
|
430 | myconf="${myconf} `use_enable community community-features`" |
|
|
431 | if use community; then |
|
|
432 | myconf="${myconf} `use_enable profiling`" |
|
|
433 | else |
|
|
434 | myconf="${myconf} --disable-profiling" |
| 391 | fi |
435 | fi |
| 392 | fi |
436 | fi |
| 393 | |
437 | |
| 394 | mysql_version_is_at_least "5.0.18" \ |
438 | mysql_version_is_at_least "5.0.18" \ |
| 395 | && use max-idx-128 \ |
439 | && use max-idx-128 \ |
| … | |
… | |
| 418 | |
462 | |
| 419 | elog "Before using the Federated storage engine, please be sure to read" |
463 | elog "Before using the Federated storage engine, please be sure to read" |
| 420 | elog "http://dev.mysql.com/doc/refman/5.1/en/federated-limitations.html" |
464 | elog "http://dev.mysql.com/doc/refman/5.1/en/federated-limitations.html" |
| 421 | fi |
465 | fi |
| 422 | |
466 | |
| 423 | if use innodb ; then |
467 | # Upstream specifically requests that InnoDB always be built. |
| 424 | plugins="${plugins},innobase" |
468 | plugins="${plugins},innobase" |
| 425 | fi |
|
|
| 426 | |
469 | |
| 427 | # like configuration=max-no-ndb |
470 | # like configuration=max-no-ndb |
| 428 | if use cluster ; then |
471 | if use cluster ; then |
| 429 | plugins="${plugins},ndbcluster" |
472 | plugins="${plugins},ndbcluster" |
| 430 | myconf="${myconf} --with-ndb-binlog" |
473 | myconf="${myconf} --with-ndb-binlog" |
| … | |
… | |
| 435 | fi |
478 | fi |
| 436 | |
479 | |
| 437 | myconf="${myconf} --with-plugins=${plugins}" |
480 | myconf="${myconf} --with-plugins=${plugins}" |
| 438 | } |
481 | } |
| 439 | |
482 | |
| 440 | pbxt_src_compile() { |
483 | pbxt_src_configure() { |
| 441 | mysql_init_vars |
484 | mysql_init_vars |
| 442 | |
485 | |
| 443 | pushd "${WORKDIR}/pbxt-${PBXT_VERSION}" &>/dev/null |
486 | pushd "${WORKDIR}/pbxt-${PBXT_VERSION}" &>/dev/null |
| 444 | |
487 | |
| 445 | einfo "Reconfiguring dir '${PWD}'" |
488 | einfo "Reconfiguring dir '${PWD}'" |
| … | |
… | |
| 448 | local myconf="" |
491 | local myconf="" |
| 449 | myconf="${myconf} --with-mysql=${S} --libdir=${D}/${MY_LIBDIR}" |
492 | myconf="${myconf} --with-mysql=${S} --libdir=${D}/${MY_LIBDIR}" |
| 450 | use debug && myconf="${myconf} --with-debug=full" |
493 | use debug && myconf="${myconf} --with-debug=full" |
| 451 | # TODO: is it safe/needed to use econf here ? |
494 | # TODO: is it safe/needed to use econf here ? |
| 452 | ./configure ${myconf} || die "Problem configuring PBXT storage engine" |
495 | ./configure ${myconf} || die "Problem configuring PBXT storage engine" |
|
|
496 | } |
|
|
497 | |
|
|
498 | pbxt_src_compile() { |
|
|
499 | # Be backwards compatible for now |
|
|
500 | if [[ $EAPI != 2 ]]; then |
|
|
501 | pbxt_src_configure |
|
|
502 | fi |
| 453 | # TODO: is it safe/needed to use emake here ? |
503 | # TODO: is it safe/needed to use emake here ? |
| 454 | make || die "Problem making PBXT storage engine (${myconf})" |
504 | make || die "Problem making PBXT storage engine (${myconf})" |
| 455 | |
505 | |
| 456 | popd |
506 | popd |
| 457 | # TODO: modify test suite for PBXT |
507 | # TODO: modify test suite for PBXT |
| … | |
… | |
| 464 | } |
514 | } |
| 465 | |
515 | |
| 466 | # |
516 | # |
| 467 | # EBUILD FUNCTIONS |
517 | # EBUILD FUNCTIONS |
| 468 | # |
518 | # |
|
|
519 | # @FUNCTION: mysql_pkg_setup |
|
|
520 | # @DESCRIPTION: |
|
|
521 | # Perform some basic tests and tasks during pkg_setup phase: |
|
|
522 | # die if FEATURES="test", USE="-minimal" and not using FEATURES="userpriv" |
|
|
523 | # check for conflicting use flags |
|
|
524 | # create new user and group for mysql |
|
|
525 | # warn about deprecated features |
| 469 | mysql_pkg_setup() { |
526 | mysql_pkg_setup() { |
| 470 | if hasq test ${FEATURES} ; then |
527 | if hasq test ${FEATURES} ; then |
| 471 | if ! use minimal ; then |
528 | if ! use minimal ; then |
| 472 | if [[ $UID -eq 0 ]]; then |
529 | if [[ $UID -eq 0 ]]; then |
| 473 | die "Testing with FEATURES=-userpriv is no longer supported by upstream. Tests MUST be run as non-root." |
530 | eerror "Testing with FEATURES=-userpriv is no longer supported by upstream. Tests MUST be run as non-root." |
| 474 | fi |
531 | fi |
| 475 | fi |
532 | fi |
| 476 | fi |
533 | fi |
| 477 | |
|
|
| 478 | # Bug #213475 - MySQL _will_ object strenously if your machine is named |
|
|
| 479 | # localhost. Also causes weird failures. |
|
|
| 480 | [[ "${HOSTNAME}" == "localhost" ]] && die "Your machine must NOT be named localhost" |
|
|
| 481 | |
534 | |
| 482 | # Check for USE flag problems in pkg_setup |
535 | # Check for USE flag problems in pkg_setup |
| 483 | if use static && use ssl ; then |
536 | if use static && use ssl ; then |
| 484 | eerror "MySQL does not support being built statically with SSL support enabled!" |
537 | eerror "MySQL does not support being built statically with SSL support enabled!" |
| 485 | die "MySQL does not support being built statically with SSL support enabled!" |
538 | die "MySQL does not support being built statically with SSL support enabled!" |
| … | |
… | |
| 497 | && ( use cluster || use extraengine ) \ |
550 | && ( use cluster || use extraengine ) \ |
| 498 | && use minimal ; then |
551 | && use minimal ; then |
| 499 | eerror "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
552 | eerror "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
| 500 | die "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
553 | die "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
| 501 | fi |
554 | fi |
| 502 | |
555 | |
|
|
556 | # Bug #290570 fun. Upstream made us need a fairly new GCC4. |
|
|
557 | if mysql_version_is_at_least "5.0.83" ; then |
|
|
558 | GCC_VER=$(gcc_version) |
|
|
559 | case ${GCC_VER} in |
|
|
560 | 2*|3*|4.0|4.1|4.2) die "Active GCC too old! Must have at least GCC4.3" ;; |
|
|
561 | esac |
|
|
562 | fi |
|
|
563 | |
| 503 | # This should come after all of the die statements |
564 | # This should come after all of the die statements |
| 504 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
565 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
| 505 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
566 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
| 506 | |
567 | |
| 507 | mysql_check_version_range "4.0 to 5.0.99.99" \ |
568 | mysql_check_version_range "4.0 to 5.0.99.99" \ |
| 508 | && use berkdb \ |
569 | && use berkdb \ |
| 509 | && elog "Berkeley DB support is deprecated and will be removed in future versions!" |
570 | && elog "Berkeley DB support is deprecated and will be removed in future versions!" |
| 510 | } |
571 | } |
| 511 | |
572 | |
|
|
573 | # @FUNCTION: mysql_src_unpack |
|
|
574 | # @DESCRIPTION: |
|
|
575 | # Unpack the source code and call mysql_src_prepare for EAPI < 2. |
| 512 | mysql_src_unpack() { |
576 | mysql_src_unpack() { |
| 513 | # Initialize the proper variables first |
577 | # Initialize the proper variables first |
| 514 | mysql_init_vars |
578 | mysql_init_vars |
| 515 | |
579 | |
| 516 | unpack ${A} |
580 | unpack ${A} |
| 517 | # Grab the patches |
581 | # Grab the patches |
| 518 | [[ "${MY_EXTRAS_VER}" == "live" ]] && S="${WORKDIR}/mysql-extras" git_src_unpack |
582 | [[ "${MY_EXTRAS_VER}" == "live" ]] && S="${WORKDIR}/mysql-extras" git_src_unpack |
| 519 | # Bitkeeper checkout support |
583 | |
| 520 | if [[ ${IS_BITKEEPER} -eq 90 ]] ; then |
|
|
| 521 | if mysql_check_version_range "5.1 to 5.1.99" ; then |
|
|
| 522 | bitkeeper_fetch "mysql-5.1-ndb" |
|
|
| 523 | elif mysql_check_version_range "5.2 to 5.2.99" ; then |
|
|
| 524 | bitkeeper_fetch "mysql-5.2-falcon" |
|
|
| 525 | else |
|
|
| 526 | bitkeeper_fetch |
|
|
| 527 | fi |
|
|
| 528 | cd "${S}" |
|
|
| 529 | einfo "Running upstream autorun over BK sources ..." |
|
|
| 530 | BUILD/autorun.sh |
|
|
| 531 | else |
|
|
| 532 | mv -f "${WORKDIR}/${MY_SOURCEDIR}" "${S}" |
584 | mv -f "${WORKDIR}/${MY_SOURCEDIR}" "${S}" |
|
|
585 | |
|
|
586 | # Be backwards compatible for now |
|
|
587 | case ${EAPI:-0} in |
|
|
588 | 2) : ;; |
|
|
589 | 0 | 1) mysql_src_prepare ;; |
|
|
590 | esac |
|
|
591 | } |
|
|
592 | |
|
|
593 | # @FUNCTION: mysql_src_prepare |
|
|
594 | # @DESCRIPTION: |
|
|
595 | # Apply patches to the source code and remove unneeded bundled libs. |
|
|
596 | mysql_src_prepare() { |
| 533 | cd "${S}" |
597 | cd "${S}" |
| 534 | fi |
|
|
| 535 | |
598 | |
| 536 | # Apply the patches for this MySQL version |
599 | # Apply the patches for this MySQL version |
| 537 | EPATCH_SUFFIX="patch" |
600 | EPATCH_SUFFIX="patch" |
| 538 | mkdir -p "${EPATCH_SOURCE}" || die "Unable to create epatch directory" |
601 | mkdir -p "${EPATCH_SOURCE}" || die "Unable to create epatch directory" |
| 539 | # Clean out old items |
602 | # Clean out old items |
| … | |
… | |
| 552 | find . -name 'Makefile.am' \ |
615 | find . -name 'Makefile.am' \ |
| 553 | -exec sed --in-place -e 's!$(pkgdatadir)!'${MY_SHAREDSTATEDIR}'!g' {} \; |
616 | -exec sed --in-place -e 's!$(pkgdatadir)!'${MY_SHAREDSTATEDIR}'!g' {} \; |
| 554 | |
617 | |
| 555 | if mysql_version_is_at_least "4.1" ; then |
618 | if mysql_version_is_at_least "4.1" ; then |
| 556 | # Remove what needs to be recreated, so we're sure it's actually done |
619 | # Remove what needs to be recreated, so we're sure it's actually done |
|
|
620 | einfo "Cleaning up old buildscript files" |
| 557 | find . -name Makefile \ |
621 | find . -name Makefile \ |
| 558 | -o -name Makefile.in \ |
622 | -o -name Makefile.in \ |
| 559 | -o -name configure \ |
623 | -o -name configure \ |
| 560 | -exec rm -f {} \; |
624 | -exec rm -f {} \; |
| 561 | rm -f "ltmain.sh" |
625 | rm -f "ltmain.sh" |
| 562 | rm -f "scripts/mysqlbug" |
626 | rm -f "scripts/mysqlbug" |
| 563 | fi |
627 | fi |
| 564 | |
628 | |
| 565 | local rebuilddirlist d |
629 | local rebuilddirlist d |
| 566 | |
630 | |
|
|
631 | if mysql_version_is_at_least "5.1.26" && use xtradb ; then |
|
|
632 | einfo "Replacing InnoDB with Percona XtraDB" |
|
|
633 | pushd "${S}"/storage |
|
|
634 | i="innobase" |
|
|
635 | o="${WORKDIR}/storage-${i}.mysql-upstream" |
|
|
636 | # Have we been here already? |
|
|
637 | [ -h "${i}" ] && rm -f "${i}" |
|
|
638 | # Or maybe we haven't |
|
|
639 | [ -d "${i}" -a ! -d "${o}" ] && mv "${i}" "${o}" |
|
|
640 | ln -s "${WORKDIR}/${XTRADB_P}" "${i}" |
|
|
641 | popd |
|
|
642 | fi |
|
|
643 | |
| 567 | if mysql_version_is_at_least "5.1.12" ; then |
644 | if mysql_version_is_at_least "5.1.12" ; then |
|
|
645 | einfo "Updating innobase cmake" |
| 568 | rebuilddirlist="." |
646 | rebuilddirlist="." |
| 569 | # TODO: check this with a cmake expert |
647 | # TODO: check this with a cmake expert |
| 570 | use innodb \ |
|
|
| 571 | && cmake \ |
648 | cmake \ |
| 572 | -DCMAKE_C_COMPILER=$(type -P $(tc-getCC)) \ |
649 | -DCMAKE_C_COMPILER=$(type -P $(tc-getCC)) \ |
| 573 | -DCMAKE_CXX_COMPILER=$(type -P $(tc-getCXX)) \ |
650 | -DCMAKE_CXX_COMPILER=$(type -P $(tc-getCXX)) \ |
| 574 | "storage/innobase" |
651 | "storage/innobase" |
| 575 | else |
652 | else |
| 576 | rebuilddirlist=". innobase" |
653 | rebuilddirlist=". innobase" |
| … | |
… | |
| 583 | popd &>/dev/null |
660 | popd &>/dev/null |
| 584 | done |
661 | done |
| 585 | |
662 | |
| 586 | if mysql_check_version_range "4.1 to 5.0.99.99" \ |
663 | if mysql_check_version_range "4.1 to 5.0.99.99" \ |
| 587 | && use berkdb ; then |
664 | && use berkdb ; then |
|
|
665 | einfo "Fixing up berkdb buildsystem" |
| 588 | [[ -w "bdb/dist/ltmain.sh" ]] && cp -f "ltmain.sh" "bdb/dist/ltmain.sh" |
666 | [[ -w "bdb/dist/ltmain.sh" ]] && cp -f "ltmain.sh" "bdb/dist/ltmain.sh" |
| 589 | cp -f "/usr/share/aclocal/libtool.m4" "bdb/dist/aclocal/libtool.ac" \ |
667 | cp -f "/usr/share/aclocal/libtool.m4" "bdb/dist/aclocal/libtool.ac" \ |
| 590 | || die "Could not copy libtool.m4 to bdb/dist/" |
668 | || die "Could not copy libtool.m4 to bdb/dist/" |
|
|
669 | #These files exist only with libtool-2*, and need to be included. |
|
|
670 | if [ -f '/usr/share/aclocal/ltsugar.m4' ]; then |
|
|
671 | cat "/usr/share/aclocal/ltsugar.m4" >> "bdb/dist/aclocal/libtool.ac" |
|
|
672 | cat "/usr/share/aclocal/ltversion.m4" >> "bdb/dist/aclocal/libtool.ac" |
|
|
673 | cat "/usr/share/aclocal/lt~obsolete.m4" >> "bdb/dist/aclocal/libtool.ac" |
|
|
674 | cat "/usr/share/aclocal/ltoptions.m4" >> "bdb/dist/aclocal/libtool.ac" |
|
|
675 | fi |
| 591 | pushd "bdb/dist" &>/dev/null |
676 | pushd "bdb/dist" &>/dev/null |
| 592 | sh s_all \ |
677 | sh s_all \ |
| 593 | || die "Failed bdb reconfigure" |
678 | || die "Failed bdb reconfigure" |
| 594 | popd &>/dev/null |
679 | popd &>/dev/null |
| 595 | fi |
680 | fi |
| 596 | } |
681 | } |
| 597 | |
682 | |
|
|
683 | # @FUNCTION: mysql_src_configure |
|
|
684 | # @DESCRIPTION: |
|
|
685 | # Configure mysql to build the code for Gentoo respecting the use flags. |
| 598 | mysql_src_compile() { |
686 | mysql_src_configure() { |
| 599 | # Make sure the vars are correctly initialized |
687 | # Make sure the vars are correctly initialized |
| 600 | mysql_init_vars |
688 | mysql_init_vars |
| 601 | |
689 | |
| 602 | # $myconf is modified by the configure_* functions |
690 | # $myconf is modified by the configure_* functions |
| 603 | local myconf="" |
691 | local myconf="" |
| … | |
… | |
| 617 | filter-flags "-O" "-O[01]" |
705 | filter-flags "-O" "-O[01]" |
| 618 | |
706 | |
| 619 | # glib-2.3.2_pre fix, bug #16496 |
707 | # glib-2.3.2_pre fix, bug #16496 |
| 620 | append-flags "-DHAVE_ERRNO_AS_DEFINE=1" |
708 | append-flags "-DHAVE_ERRNO_AS_DEFINE=1" |
| 621 | |
709 | |
|
|
710 | # As discovered by bug #246652, doing a double-level of SSP causes NDB to |
|
|
711 | # fail badly during cluster startup. |
|
|
712 | if [[ $(gcc-major-version) -lt 4 ]]; then |
|
|
713 | filter-flags "-fstack-protector-all" |
|
|
714 | fi |
|
|
715 | |
| 622 | CXXFLAGS="${CXXFLAGS} -fno-exceptions -fno-strict-aliasing" |
716 | CXXFLAGS="${CXXFLAGS} -fno-exceptions -fno-strict-aliasing" |
| 623 | CXXFLAGS="${CXXFLAGS} -felide-constructors -fno-rtti" |
717 | CXXFLAGS="${CXXFLAGS} -felide-constructors -fno-rtti" |
| 624 | mysql_version_is_at_least "5.0" \ |
718 | mysql_version_is_at_least "5.0" \ |
| 625 | && CXXFLAGS="${CXXFLAGS} -fno-implicit-templates" |
719 | && CXXFLAGS="${CXXFLAGS} -fno-implicit-templates" |
| 626 | export CXXFLAGS |
720 | export CXXFLAGS |
|
|
721 | |
|
|
722 | # bug #283926, with GCC4.4, this is required to get correct behavior. |
|
|
723 | append-flags -fno-strict-aliasing |
| 627 | |
724 | |
| 628 | econf \ |
725 | econf \ |
| 629 | --libexecdir="/usr/sbin" \ |
726 | --libexecdir="/usr/sbin" \ |
| 630 | --sysconfdir="${MY_SYSCONFDIR}" \ |
727 | --sysconfdir="${MY_SYSCONFDIR}" \ |
| 631 | --localstatedir="${MY_LOCALSTATEDIR}" \ |
728 | --localstatedir="${MY_LOCALSTATEDIR}" \ |
| … | |
… | |
| 642 | # TODO: Move this before autoreconf !!! |
739 | # TODO: Move this before autoreconf !!! |
| 643 | find . -type f -name Makefile -print0 \ |
740 | find . -type f -name Makefile -print0 \ |
| 644 | | xargs -0 -n100 sed -i \ |
741 | | xargs -0 -n100 sed -i \ |
| 645 | -e 's|^pkglibdir *= *$(libdir)/mysql|pkglibdir = $(libdir)|;s|^pkgincludedir *= *$(includedir)/mysql|pkgincludedir = $(includedir)|' |
742 | -e 's|^pkglibdir *= *$(libdir)/mysql|pkglibdir = $(libdir)|;s|^pkgincludedir *= *$(includedir)/mysql|pkgincludedir = $(includedir)|' |
| 646 | |
743 | |
|
|
744 | if [[ $EAPI == 2 ]]; then |
|
|
745 | mysql_version_is_at_least "5.1.12" && use pbxt && pbxt_src_configure |
|
|
746 | fi |
|
|
747 | } |
|
|
748 | |
|
|
749 | # @FUNCTION: mysql_src_compile |
|
|
750 | # @DESCRIPTION: |
|
|
751 | # Compile the mysql code. |
|
|
752 | mysql_src_compile() { |
|
|
753 | # Be backwards compatible for now |
|
|
754 | case ${EAPI:-0} in |
|
|
755 | 2) : ;; |
|
|
756 | 0 | 1) mysql_src_configure ;; |
|
|
757 | esac |
|
|
758 | |
| 647 | emake || die "emake failed" |
759 | emake || die "emake failed" |
| 648 | |
760 | |
| 649 | mysql_version_is_at_least "5.1.12" && use pbxt && pbxt_src_compile |
761 | mysql_version_is_at_least "5.1.12" && use pbxt && pbxt_src_compile |
| 650 | } |
762 | } |
| 651 | |
763 | |
|
|
764 | # @FUNCTION: mysql_src_install |
|
|
765 | # @DESCRIPTION: |
|
|
766 | # Install mysql. |
| 652 | mysql_src_install() { |
767 | mysql_src_install() { |
| 653 | # Make sure the vars are correctly initialized |
768 | # Make sure the vars are correctly initialized |
| 654 | mysql_init_vars |
769 | mysql_init_vars |
| 655 | |
770 | |
| 656 | emake install DESTDIR="${D}" benchdir_root="${MY_SHAREDSTATEDIR}" || die "emake install failed" |
771 | emake install DESTDIR="${D}" benchdir_root="${MY_SHAREDSTATEDIR}" || die "emake install failed" |
| 657 | |
772 | |
| 658 | mysql_version_is_at_least "5.1.12" && use pbxt && pbxt_src_install |
773 | mysql_version_is_at_least "5.1.12" && use pbxt && pbxt_src_install |
| 659 | |
774 | |
| 660 | insinto "${MY_INCLUDEDIR}" |
|
|
| 661 | doins "${MY_INCLUDEDIR}"/my_{config,dir}.h |
|
|
| 662 | |
|
|
| 663 | # Convenience links |
775 | # Convenience links |
|
|
776 | einfo "Making Convenience links for mysqlcheck multi-call binary" |
| 664 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlanalyze" |
777 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlanalyze" |
| 665 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlrepair" |
778 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlrepair" |
| 666 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqloptimize" |
779 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqloptimize" |
| 667 | |
780 | |
| 668 | # Various junk (my-*.cnf moved elsewhere) |
781 | # Various junk (my-*.cnf moved elsewhere) |
|
|
782 | einfo "Removing duplicate /usr/share/mysql files" |
| 669 | rm -Rf "${D}/usr/share/info" |
783 | rm -Rf "${D}/usr/share/info" |
| 670 | for removeme in "mysql-log-rotate" mysql.server* \ |
784 | for removeme in "mysql-log-rotate" mysql.server* \ |
| 671 | binary-configure* my-*.cnf mi_test_all* |
785 | binary-configure* my-*.cnf mi_test_all* |
| 672 | do |
786 | do |
| 673 | rm -f "${D}"/usr/share/mysql/${removeme} |
787 | rm -f "${D}"/usr/share/mysql/${removeme} |
| 674 | done |
788 | done |
| 675 | |
789 | |
| 676 | # Clean up stuff for a minimal build |
790 | # Clean up stuff for a minimal build |
| 677 | if use minimal ; then |
791 | if use minimal ; then |
|
|
792 | einfo "Remove all extra content for minimal build" |
| 678 | rm -Rf "${D}${MY_SHAREDSTATEDIR}"/{mysql-test,sql-bench} |
793 | rm -Rf "${D}${MY_SHAREDSTATEDIR}"/{mysql-test,sql-bench} |
| 679 | 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} |
794 | 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} |
| 680 | rm -f "${D}/usr/sbin/mysqld" |
795 | rm -f "${D}/usr/sbin/mysqld" |
| 681 | rm -f "${D}${MY_LIBDIR}"/lib{heap,merge,nisam,my{sys,strings,sqld,isammrg,isam},vio,dbug}.a |
796 | rm -f "${D}${MY_LIBDIR}"/lib{heap,merge,nisam,my{sys,strings,sqld,isammrg,isam},vio,dbug}.a |
| 682 | fi |
797 | fi |
| … | |
… | |
| 685 | if mysql_version_is_at_least "4.1" ; then |
800 | if mysql_version_is_at_least "4.1" ; then |
| 686 | mysql_mycnf_version="4.1" |
801 | mysql_mycnf_version="4.1" |
| 687 | else |
802 | else |
| 688 | mysql_mycnf_version="4.0" |
803 | mysql_mycnf_version="4.0" |
| 689 | fi |
804 | fi |
|
|
805 | einfo "Building default my.cnf" |
| 690 | insinto "${MY_SYSCONFDIR}" |
806 | insinto "${MY_SYSCONFDIR}" |
| 691 | doins scripts/mysqlaccess.conf |
807 | doins scripts/mysqlaccess.conf |
| 692 | sed -e "s!@DATADIR@!${MY_DATADIR}!g" \ |
808 | sed -e "s!@DATADIR@!${MY_DATADIR}!g" \ |
| 693 | "${FILESDIR}/my.cnf-${mysql_mycnf_version}" \ |
809 | "${FILESDIR}/my.cnf-${mysql_mycnf_version}" \ |
| 694 | > "${TMPDIR}/my.cnf.ok" |
810 | > "${TMPDIR}/my.cnf.ok" |
| … | |
… | |
| 697 | fi |
813 | fi |
| 698 | newins "${TMPDIR}/my.cnf.ok" my.cnf |
814 | newins "${TMPDIR}/my.cnf.ok" my.cnf |
| 699 | |
815 | |
| 700 | # Minimal builds don't have the MySQL server |
816 | # Minimal builds don't have the MySQL server |
| 701 | if ! use minimal ; then |
817 | if ! use minimal ; then |
|
|
818 | einfo "Creating initial directories" |
| 702 | # Empty directories ... |
819 | # Empty directories ... |
| 703 | diropts "-m0750" |
820 | diropts "-m0750" |
| 704 | if [[ "${PREVIOUS_DATADIR}" != "yes" ]] ; then |
821 | if [[ "${PREVIOUS_DATADIR}" != "yes" ]] ; then |
| 705 | dodir "${MY_DATADIR}" |
822 | dodir "${MY_DATADIR}" |
| 706 | keepdir "${MY_DATADIR}" |
823 | keepdir "${MY_DATADIR}" |
| … | |
… | |
| 714 | chown -R mysql:mysql "${D}/${folder}" |
831 | chown -R mysql:mysql "${D}/${folder}" |
| 715 | done |
832 | done |
| 716 | fi |
833 | fi |
| 717 | |
834 | |
| 718 | # Docs |
835 | # Docs |
|
|
836 | einfo "Installing docs" |
| 719 | dodoc README COPYING ChangeLog EXCEPTIONS-CLIENT INSTALL-SOURCE |
837 | dodoc README COPYING ChangeLog EXCEPTIONS-CLIENT INSTALL-SOURCE |
| 720 | doinfo "${S}"/Docs/mysql.info |
838 | doinfo "${S}"/Docs/mysql.info |
| 721 | |
839 | |
| 722 | # Minimal builds don't have the MySQL server |
840 | # Minimal builds don't have the MySQL server |
| 723 | if ! use minimal ; then |
841 | if ! use minimal ; then |
|
|
842 | einfo "Including support files and sample configurations" |
| 724 | docinto "support-files" |
843 | docinto "support-files" |
| 725 | for script in \ |
844 | for script in \ |
| 726 | "${S}"/support-files/my-*.cnf \ |
845 | "${S}"/support-files/my-*.cnf \ |
| 727 | "${S}"/support-files/magic \ |
846 | "${S}"/support-files/magic \ |
| 728 | "${S}"/support-files/ndb-config-2-node.ini |
847 | "${S}"/support-files/ndb-config-2-node.ini |
| … | |
… | |
| 738 | fi |
857 | fi |
| 739 | |
858 | |
| 740 | mysql_lib_symlinks "${D}" |
859 | mysql_lib_symlinks "${D}" |
| 741 | } |
860 | } |
| 742 | |
861 | |
|
|
862 | # @FUNCTION: mysql_pkg_preinst |
|
|
863 | # @DESCRIPTION: |
|
|
864 | # Create the user and groups for mysql - die if that fails. |
| 743 | mysql_pkg_preinst() { |
865 | mysql_pkg_preinst() { |
| 744 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
866 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
| 745 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
867 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
| 746 | } |
868 | } |
| 747 | |
869 | |
|
|
870 | # @FUNCTION: mysql_pkg_postinst |
|
|
871 | # @DESCRIPTION: |
|
|
872 | # Run post-installation tasks: |
|
|
873 | # create the dir for logfiles if non-existant |
|
|
874 | # touch the logfiles and secure them |
|
|
875 | # install scripts |
|
|
876 | # issue required steps for optional features |
|
|
877 | # issue deprecation warnings |
| 748 | mysql_pkg_postinst() { |
878 | mysql_pkg_postinst() { |
| 749 | # Make sure the vars are correctly initialized |
879 | # Make sure the vars are correctly initialized |
| 750 | mysql_init_vars |
880 | mysql_init_vars |
| 751 | |
881 | |
| 752 | # Check FEATURES="collision-protect" before removing this |
882 | # Check FEATURES="collision-protect" before removing this |
| … | |
… | |
| 798 | mysql_check_version_range "4.0 to 5.0.99.99" \ |
928 | mysql_check_version_range "4.0 to 5.0.99.99" \ |
| 799 | && use berkdb \ |
929 | && use berkdb \ |
| 800 | && elog "Berkeley DB support is deprecated and will be removed in future versions!" |
930 | && elog "Berkeley DB support is deprecated and will be removed in future versions!" |
| 801 | } |
931 | } |
| 802 | |
932 | |
|
|
933 | # @FUNCTION: mysql_pkg_config |
|
|
934 | # @DESCRIPTION: |
|
|
935 | # Configure mysql environment. |
| 803 | mysql_pkg_config() { |
936 | mysql_pkg_config() { |
|
|
937 | local old_MY_DATADIR="${MY_DATADIR}" |
|
|
938 | |
| 804 | # Make sure the vars are correctly initialized |
939 | # Make sure the vars are correctly initialized |
| 805 | mysql_init_vars |
940 | mysql_init_vars |
| 806 | |
941 | |
| 807 | [[ -z "${MY_DATADIR}" ]] && die "Sorry, unable to find MY_DATADIR" |
942 | [[ -z "${MY_DATADIR}" ]] && die "Sorry, unable to find MY_DATADIR" |
| 808 | |
943 | |
| 809 | if built_with_use ${CATEGORY}/${PN} minimal ; then |
944 | if built_with_use ${CATEGORY}/${PN} minimal ; then |
| 810 | die "Minimal builds do NOT include the MySQL server" |
945 | die "Minimal builds do NOT include the MySQL server" |
|
|
946 | fi |
|
|
947 | |
|
|
948 | if [[ ( -n "${MY_DATADIR}" ) && ( "${MY_DATADIR}" != "${old_MY_DATADIR}" ) ]]; then |
|
|
949 | local MY_DATADIR_s="$(strip_duplicate_slashes ${ROOT}/${MY_DATADIR})" |
|
|
950 | local old_MY_DATADIR_s="$(strip_duplicate_slashes ${ROOT}/${old_MY_DATADIR})" |
|
|
951 | |
|
|
952 | if [[ -d "${old_MY_DATADIR_s}" ]]; then |
|
|
953 | if [[ -d "${MY_DATADIR_s}" ]]; then |
|
|
954 | ewarn "Both ${old_MY_DATADIR_s} and ${MY_DATADIR_s} exist" |
|
|
955 | ewarn "Attempting to use ${MY_DATADIR_s} and preserving ${old_MY_DATADIR_s}" |
|
|
956 | else |
|
|
957 | elog "Moving MY_DATADIR from ${old_MY_DATADIR_s} to ${MY_DATADIR_s}" |
|
|
958 | mv --strip-trailing-slashes -T "${old_MY_DATADIR_s}" "${MY_DATADIR_s}" \ |
|
|
959 | || die "Moving MY_DATADIR failed" |
|
|
960 | fi |
|
|
961 | else |
|
|
962 | ewarn "Previous MY_DATADIR (${old_MY_DATADIR_s}) does not exist" |
|
|
963 | if [[ -d "${MY_DATADIR_s}" ]]; then |
|
|
964 | ewarn "Attempting to use ${MY_DATADIR_s}" |
|
|
965 | else |
|
|
966 | eerror "New MY_DATADIR (${MY_DATADIR_s}) does not exist" |
|
|
967 | die "Configuration Failed! Please reinstall ${CATEGORY}/${PN}" |
|
|
968 | fi |
|
|
969 | fi |
| 811 | fi |
970 | fi |
| 812 | |
971 | |
| 813 | local pwd1="a" |
972 | local pwd1="a" |
| 814 | local pwd2="b" |
973 | local pwd2="b" |
| 815 | local maxtry=5 |
974 | local maxtry=5 |
| … | |
… | |
| 818 | ewarn "You have already a MySQL database in place." |
977 | ewarn "You have already a MySQL database in place." |
| 819 | ewarn "(${ROOT}/${MY_DATADIR}/*)" |
978 | ewarn "(${ROOT}/${MY_DATADIR}/*)" |
| 820 | ewarn "Please rename or delete it if you wish to replace it." |
979 | ewarn "Please rename or delete it if you wish to replace it." |
| 821 | die "MySQL database already exists!" |
980 | die "MySQL database already exists!" |
| 822 | fi |
981 | fi |
|
|
982 | |
|
|
983 | # Bug #213475 - MySQL _will_ object strenously if your machine is named |
|
|
984 | # localhost. Also causes weird failures. |
|
|
985 | [[ "${HOSTNAME}" == "localhost" ]] && die "Your machine must NOT be named localhost" |
| 823 | |
986 | |
| 824 | einfo "Creating the mysql database and setting proper" |
987 | einfo "Creating the mysql database and setting proper" |
| 825 | einfo "permissions on it ..." |
988 | einfo "permissions on it ..." |
| 826 | |
989 | |
| 827 | einfo "Insert a password for the mysql 'root' user" |
990 | einfo "Insert a password for the mysql 'root' user" |
| … | |
… | |
| 912 | einfo "Stopping the server ..." |
1075 | einfo "Stopping the server ..." |
| 913 | wait %1 |
1076 | wait %1 |
| 914 | einfo "Done" |
1077 | einfo "Done" |
| 915 | } |
1078 | } |
| 916 | |
1079 | |
|
|
1080 | # @FUNCTION: mysql_pkg_postrm |
|
|
1081 | # @DESCRIPTION: |
|
|
1082 | # Remove mysql symlinks. |
| 917 | mysql_pkg_postrm() { |
1083 | mysql_pkg_postrm() { |
| 918 | : # mysql_lib_symlinks "${D}" |
1084 | : # mysql_lib_symlinks "${D}" |
| 919 | } |
1085 | } |