| 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.140 2010/03/24 03:09:08 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 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 | |
| 19 | [[ "${MY_EXTRAS_VER}" == "latest" ]] && MY_EXTRAS_VER="20070108" |
27 | [[ "${MY_EXTRAS_VER}" == "latest" ]] && MY_EXTRAS_VER="20090228-0714Z" |
| 20 | if [[ "${MY_EXTRAS_VER}" == "live" ]]; then |
28 | if [[ "${MY_EXTRAS_VER}" == "live" ]]; then |
| 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 | |
|
|
57 | # @ECLASS-VARIABLE: MYSQL_PV_MAJOR |
|
|
58 | # @DESCRIPTION: |
|
|
59 | # Upstream MySQL considers the first two parts of the version number to be the |
|
|
60 | # major version. Upgrades that change major version should always run |
|
|
61 | # mysql_upgrade. |
|
|
62 | MYSQL_PV_MAJOR="$(get_version_component_range 1-2 ${PV})" |
|
|
63 | |
|
|
64 | # @ECLASS-VARIABLE: MYSQL_VERSION_ID |
|
|
65 | # @DESCRIPTION: |
| 34 | # MYSQL_VERSION_ID will be: |
66 | # MYSQL_VERSION_ID will be: |
| 35 | # major * 10e6 + minor * 10e4 + micro * 10e2 + gentoo revision number, all [0..99] |
67 | # 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 |
68 | # This is an important part, because many of the choices the MySQL ebuild will do |
| 37 | # depend on this variable. |
69 | # depend on this variable. |
| 38 | # In particular, the code below transforms a $PVR like "5.0.18-r3" in "5001803" |
70 | # 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}" |
79 | MYSQL_VERSION_ID="${MYSQL_VERSION_ID}${tpv[${vatom}]:0-2}" |
| 48 | done |
80 | done |
| 49 | # strip leading "0" (otherwise it's considered an octal number by BASH) |
81 | # strip leading "0" (otherwise it's considered an octal number by BASH) |
| 50 | MYSQL_VERSION_ID=${MYSQL_VERSION_ID##"0"} |
82 | MYSQL_VERSION_ID=${MYSQL_VERSION_ID##"0"} |
| 51 | |
83 | |
|
|
84 | # @ECLASS-VARIABLE: MYSQL_COMMUNITY_FEATURES |
|
|
85 | # @DESCRIPTION: |
|
|
86 | # Specifiy if community features are available. Possible values are 1 (yes) |
|
|
87 | # and 0 (no). |
|
|
88 | # Community features are available in mysql-community |
|
|
89 | # AND in the re-merged mysql-5.0.82 and newer |
|
|
90 | if [ "${PN}" == "mysql-community" -o "${PN}" == "mariadb" ]; then |
|
|
91 | MYSQL_COMMUNITY_FEATURES=1 |
|
|
92 | elif [ "${PV#5.0}" != "${PV}" ] && mysql_version_is_at_least "5.0.82"; then |
|
|
93 | MYSQL_COMMUNITY_FEATURES=1 |
|
|
94 | elif [ "${PV#5.1}" != "${PV}" ] && mysql_version_is_at_least "5.1.28"; then |
|
|
95 | MYSQL_COMMUNITY_FEATURES=1 |
|
|
96 | elif [ "${PV#5.4}" != "${PV}" ] ; then |
|
|
97 | MYSQL_COMMUNITY_FEATURES=1 |
|
|
98 | elif [ "${PV#5.5}" != "${PV}" ] ; then |
|
|
99 | MYSQL_COMMUNITY_FEATURES=1 |
|
|
100 | elif [ "${PV#6.0}" != "${PV}" ] ; then |
|
|
101 | MYSQL_COMMUNITY_FEATURES=1 |
|
|
102 | else |
|
|
103 | MYSQL_COMMUNITY_FEATURES=0 |
|
|
104 | fi |
|
|
105 | |
|
|
106 | # @ECLASS-VARIABLE: XTRADB_VER |
|
|
107 | # @DESCRIPTION: |
|
|
108 | # Version of the XTRADB storage engine |
|
|
109 | XTRADB_VER="${XTRADB_VER}" |
|
|
110 | |
|
|
111 | # @ECLASS-VARIABLE: PERCONA_VER |
|
|
112 | # @DESCRIPTION: |
|
|
113 | # Designation by PERCONA for a MySQL version to apply an XTRADB release |
|
|
114 | PERCONA_VER="${PERCONA_VER}" |
|
|
115 | |
| 52 | # Be warned, *DEPEND are version-dependant |
116 | # Be warned, *DEPEND are version-dependant |
| 53 | # These are used for both runtime and compiletime |
117 | # These are used for both runtime and compiletime |
| 54 | DEPEND="ssl? ( >=dev-libs/openssl-0.9.6d ) |
118 | DEPEND="ssl? ( >=dev-libs/openssl-0.9.6d ) |
| 55 | userland_GNU? ( sys-process/procps ) |
119 | userland_GNU? ( sys-process/procps ) |
| 56 | >=sys-apps/sed-4 |
120 | >=sys-apps/sed-4 |
| 57 | >=sys-apps/texinfo-4.7-r1 |
121 | >=sys-apps/texinfo-4.7-r1 |
| 58 | >=sys-libs/readline-4.1 |
122 | >=sys-libs/readline-4.1 |
| 59 | >=sys-libs/zlib-1.2.3" |
123 | >=sys-libs/zlib-1.2.3" |
| 60 | |
124 | |
|
|
125 | [[ "${PN}" == "mariadb" ]] \ |
|
|
126 | && DEPEND="${DEPEND} libevent? ( >=dev-libs/libevent-1.4 )" |
|
|
127 | |
| 61 | # Having different flavours at the same time is not a good idea |
128 | # Having different flavours at the same time is not a good idea |
| 62 | for i in "" "-community" ; do |
129 | for i in "mysql" "mysql-community" "mariadb" ; do |
| 63 | [[ "${i}" == ${PN#mysql} ]] || |
130 | [[ "${i}" == ${PN} ]] || |
| 64 | DEPEND="${DEPEND} !dev-db/mysql${i}" |
131 | DEPEND="${DEPEND} !dev-db/${i}" |
| 65 | done |
132 | done |
| 66 | |
133 | |
| 67 | RDEPEND="${DEPEND} |
134 | RDEPEND="${DEPEND} |
| 68 | !minimal? ( dev-db/mysql-init-scripts ) |
135 | !minimal? ( dev-db/mysql-init-scripts ) |
| 69 | selinux? ( sec-policy/selinux-mysql )" |
136 | selinux? ( sec-policy/selinux-mysql )" |
| … | |
… | |
| 72 | mysql_version_is_at_least "5.1" \ |
139 | mysql_version_is_at_least "5.1" \ |
| 73 | || DEPEND="${DEPEND} berkdb? ( sys-apps/ed )" |
140 | || DEPEND="${DEPEND} berkdb? ( sys-apps/ed )" |
| 74 | |
141 | |
| 75 | # compile-time-only |
142 | # compile-time-only |
| 76 | mysql_version_is_at_least "5.1.12" \ |
143 | mysql_version_is_at_least "5.1.12" \ |
| 77 | && DEPEND="${DEPEND} innodb? ( >=dev-util/cmake-2.4.3 )" |
144 | && 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 | |
145 | |
| 83 | # dev-perl/DBD-mysql is needed by some scripts installed by MySQL |
146 | # dev-perl/DBD-mysql is needed by some scripts installed by MySQL |
| 84 | PDEPEND="perl? ( >=dev-perl/DBD-mysql-2.9004 )" |
147 | PDEPEND="perl? ( >=dev-perl/DBD-mysql-2.9004 )" |
| 85 | |
148 | |
|
|
149 | # For other stuff to bring us in |
|
|
150 | PDEPEND="${PDEPEND} =virtual/mysql-${MYSQL_PV_MAJOR}" |
|
|
151 | |
| 86 | # Work out the default SERVER_URI correctly |
152 | # Work out the default SERVER_URI correctly |
| 87 | if [ -z "${SERVER_URI}" ]; then |
153 | if [ -z "${SERVER_URI}" ]; then |
|
|
154 | [ -z "${MY_PV}" ] && MY_PV="${PV//_/-}" |
|
|
155 | if [ "${PN}" == "mariadb" ]; then |
|
|
156 | MARIA_FULL_PV="$(replace_version_separator 3 '-' ${PV})" |
|
|
157 | SERVER_URI="http://launchpad.net/maria/${MYSQL_PV_MAJOR}/ongoing/+download/mariadb-${MARIA_FULL_PV}.tar.gz" |
| 88 | # The community build is on the mirrors |
158 | # The community build is on the mirrors |
| 89 | if [ "${PN}" == "mysql-community" ]; then |
159 | elif [ "${MYSQL_COMMUNITY_FEATURES}" == "1" ]; then |
| 90 | SERVER_URI="mirror://mysql/Downloads/MySQL-${PV%.*}/mysql-${PV//_/-}.tar.gz" |
160 | SERVER_URI="mirror://mysql/Downloads/MySQL-${PV%.*}/mysql-${MY_PV}.tar.gz" |
| 91 | # The enterprise source is on the primary site only |
161 | # The (old) enterprise source is on the primary site only |
| 92 | elif [ "${PN}" == "mysql" ]; then |
162 | elif [ "${PN}" == "mysql" ]; then |
| 93 | SERVER_URI="ftp://ftp.mysql.com/pub/mysql/src/mysql-${PV//_/-}.tar.gz" |
163 | SERVER_URI="ftp://ftp.mysql.com/pub/mysql/src/mysql-${MY_PV}.tar.gz" |
| 94 | fi |
164 | fi |
| 95 | fi |
165 | fi |
| 96 | |
166 | |
| 97 | # Define correct SRC_URIs |
167 | # Define correct SRC_URIs |
| 98 | SRC_URI="${SERVER_URI}" |
168 | SRC_URI="${SERVER_URI}" |
| 99 | |
169 | |
| 100 | [[ ${MY_EXTRAS_VER} != live ]] && SRC_URI="${SRC_URI} |
170 | # Gentoo patches to MySQL |
|
|
171 | [[ ${MY_EXTRAS_VER} != live ]] \ |
|
|
172 | && SRC_URI="${SRC_URI} |
| 101 | mirror://gentoo/mysql-extras-${MY_EXTRAS_VER}.tar.bz2 |
173 | mirror://gentoo/mysql-extras-${MY_EXTRAS_VER}.tar.bz2 |
| 102 | http://g3nt8.org/patches/mysql-extras-${MY_EXTRAS_VER}.tar.bz2" |
174 | http://g3nt8.org/patches/mysql-extras-${MY_EXTRAS_VER}.tar.bz2 |
| 103 | mysql_version_is_at_least "5.1.12" \ |
175 | http://dev.gentoo.org/~robbat2/distfiles/mysql-extras-${MY_EXTRAS_VER}.tar.bz2" |
| 104 | && [[ -n "${PBXT_VERSION}" ]] \ |
|
|
| 105 | && SRC_URI="${SRC_URI} pbxt? ( mirror://sourceforge/pbxt/pbxt-${PBXT_VERSION}.tar.gz )" |
|
|
| 106 | |
176 | |
| 107 | DESCRIPTION="A fast, multi-threaded, multi-user SQL database server." |
177 | DESCRIPTION="A fast, multi-threaded, multi-user SQL database server." |
| 108 | HOMEPAGE="http://www.mysql.com/" |
178 | HOMEPAGE="http://www.mysql.com/" |
|
|
179 | if [[ "${PN}" == "mariadb" ]]; then |
|
|
180 | HOMEPAGE="http://askmonty.org/" |
|
|
181 | DESCRIPTION="MariaDB is a MySQL fork with 3rd-party patches and additional storage engines merged." |
|
|
182 | fi |
| 109 | LICENSE="GPL-2" |
183 | LICENSE="GPL-2" |
| 110 | SLOT="0" |
184 | SLOT="0" |
| 111 | IUSE="big-tables debug embedded minimal perl selinux ssl static" |
185 | IUSE="big-tables debug embedded minimal ${IUSE_DEFAULT_ON}perl selinux ssl static test" |
| 112 | |
186 | |
| 113 | mysql_version_is_at_least "4.1" \ |
187 | mysql_version_is_at_least "4.1" \ |
| 114 | && IUSE="${IUSE} latin1" |
188 | && IUSE="${IUSE} latin1" |
| 115 | |
189 | |
| 116 | mysql_version_is_at_least "4.1.3" \ |
190 | mysql_version_is_at_least "4.1.3" \ |
| … | |
… | |
| 121 | |
195 | |
| 122 | mysql_version_is_at_least "5.0.18" \ |
196 | mysql_version_is_at_least "5.0.18" \ |
| 123 | && IUSE="${IUSE} max-idx-128" |
197 | && IUSE="${IUSE} max-idx-128" |
| 124 | |
198 | |
| 125 | mysql_version_is_at_least "5.1" \ |
199 | mysql_version_is_at_least "5.1" \ |
| 126 | && IUSE="${IUSE} innodb" |
|
|
| 127 | |
|
|
| 128 | mysql_version_is_at_least "5.1" \ |
|
|
| 129 | || IUSE="${IUSE} berkdb" |
200 | || IUSE="${IUSE} berkdb" |
| 130 | |
201 | |
|
|
202 | [ "${MYSQL_COMMUNITY_FEATURES}" == "1" ] \ |
|
|
203 | && IUSE="${IUSE} ${IUSE_DEFAULT_ON}community profiling" |
|
|
204 | |
|
|
205 | [[ "${PN}" == "mariadb" ]] \ |
|
|
206 | && IUSE="${IUSE} libevent" |
|
|
207 | |
|
|
208 | # MariaDB has integrated PBXT |
|
|
209 | # PBXT_VERSION means that we have a PBXT patch for this PV |
|
|
210 | # PBXT was only introduced after 5.1.12 |
|
|
211 | pbxt_patch_available() { |
|
|
212 | [[ "${PN}" != "mariadb" ]] \ |
| 131 | mysql_version_is_at_least "5.1.12" \ |
213 | && mysql_version_is_at_least "5.1.12" \ |
|
|
214 | && [[ -n "${PBXT_VERSION}" ]] |
|
|
215 | return $? |
|
|
216 | } |
|
|
217 | |
|
|
218 | pbxt_available() { |
|
|
219 | pbxt_patch_available || [[ "${PN}" == "mariadb" ]] |
|
|
220 | return $? |
|
|
221 | } |
|
|
222 | |
|
|
223 | # Get the percona tarball if XTRADB_VER and PERCONA_VER are both set |
|
|
224 | # MariaDB has integrated XtraDB |
|
|
225 | # XTRADB_VERS means that we have a XTRADB patch for this PV |
|
|
226 | # XTRADB was only introduced after 5.1.26 |
|
|
227 | xtradb_patch_available() { |
|
|
228 | [[ "${PN}" != "mariadb" ]] \ |
|
|
229 | && mysql_version_is_at_least "5.1.26" \ |
|
|
230 | && [[ -n "${XTRADB_VER}" && -n "${PERCONA_VER}" ]] |
|
|
231 | return $? |
|
|
232 | } |
|
|
233 | |
|
|
234 | pbxt_patch_available \ |
|
|
235 | && PBXT_P="pbxt-${PBXT_VERSION}" \ |
|
|
236 | && PBXT_SRC_URI="http://www.primebase.org/download/${PBXT_P}.tar.gz mirror://sourceforge/pbxt/${PBXT_P}.tar.gz" \ |
|
|
237 | && SRC_URI="${SRC_URI} pbxt? ( ${PBXT_SRC_URI} )" \ |
|
|
238 | |
|
|
239 | pbxt_available \ |
| 132 | && IUSE="${IUSE} pbxt" |
240 | && IUSE="${IUSE} pbxt" |
| 133 | |
241 | |
| 134 | EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_preinst \ |
242 | xtradb_patch_available \ |
| 135 | pkg_postinst pkg_config pkg_postrm |
243 | && XTRADB_P="percona-xtradb-${XTRADB_VER}" \ |
|
|
244 | && XTRADB_SRC_URI_COMMON="${PERCONA_VER}/source/${XTRADB_P}.tar.gz" \ |
|
|
245 | && XTRADB_SRC_URI1="http://www.percona.com/percona-builds/xtradb/${XTRADB_SRC_URI_COMMON}" \ |
|
|
246 | && XTRADB_SRC_URI2="http://www.percona.com/${PN}/xtradb/${XTRADB_SRC_URI_COMMON}" \ |
|
|
247 | && SRC_URI="${SRC_URI} xtradb? ( ${XTRADB_SRC_URI1} ${XTRADB_SRC_URI2} )" \ |
|
|
248 | && IUSE="${IUSE} xtradb" |
| 136 | |
249 | |
| 137 | # |
250 | # |
| 138 | # HELPER FUNCTIONS: |
251 | # HELPER FUNCTIONS: |
| 139 | # |
252 | # |
| 140 | |
253 | |
| 141 | bitkeeper_fetch() { |
254 | # @FUNCTION: mysql_disable_test |
| 142 | local reposuf |
255 | # @DESCRIPTION: |
| 143 | if [[ -z "${1}" ]] ; then |
256 | # 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() { |
257 | mysql_disable_test() { |
|
|
258 | local rawtestname testname testsuite reason mysql_disable_file |
| 205 | local testname="${1}" ; shift |
259 | rawtestname="${1}" ; shift |
| 206 | local reason="${@}" |
260 | reason="${@}" |
|
|
261 | ewarn "test '${rawtestname}' disabled: '${reason}'" |
|
|
262 | |
|
|
263 | testsuite="${rawtestname/.*}" |
|
|
264 | testname="${rawtestname/*.}" |
| 207 | local mysql_disable_file="${S}/mysql-test/t/disabled.def" |
265 | mysql_disable_file="${S}/mysql-test/t/disabled.def" |
|
|
266 | #einfo "rawtestname=${rawtestname} testname=${testname} testsuite=${testsuite}" |
| 208 | echo ${testname} : ${reason} >> "${mysql_disable_file}" |
267 | echo ${testname} : ${reason} >> "${mysql_disable_file}" |
| 209 | ewarn "test '${testname}' disabled: '${reason}'" |
|
|
| 210 | } |
|
|
| 211 | |
268 | |
|
|
269 | # ${S}/mysql-tests/t/disabled.def |
|
|
270 | # |
|
|
271 | # ${S}/mysql-tests/suite/federated/disabled.def |
|
|
272 | # |
|
|
273 | # ${S}/mysql-tests/suite/jp/t/disabled.def |
|
|
274 | # ${S}/mysql-tests/suite/ndb/t/disabled.def |
|
|
275 | # ${S}/mysql-tests/suite/rpl/t/disabled.def |
|
|
276 | # ${S}/mysql-tests/suite/parts/t/disabled.def |
|
|
277 | # ${S}/mysql-tests/suite/rpl_ndb/t/disabled.def |
|
|
278 | # ${S}/mysql-tests/suite/ndb_team/t/disabled.def |
|
|
279 | # ${S}/mysql-tests/suite/binlog/t/disabled.def |
|
|
280 | # ${S}/mysql-tests/suite/innodb/t/disabled.def |
|
|
281 | if [ -n "${testsuite}" ]; then |
|
|
282 | for mysql_disable_file in \ |
|
|
283 | ${S}/mysql-test/suite/${testsuite}/disabled.def \ |
|
|
284 | ${S}/mysql-test/suite/${testsuite}/t/disabled.def \ |
|
|
285 | FAILED ; do |
|
|
286 | [ -f "${mysql_disable_file}" ] && break |
|
|
287 | done |
|
|
288 | if [ "${mysql_disabled_file}" != "FAILED" ]; then |
|
|
289 | echo "${testname} : ${reason}" >> "${mysql_disable_file}" |
|
|
290 | else |
|
|
291 | ewarn "Could not find testsuite disabled.def location for ${rawtestname}" |
|
|
292 | fi |
|
|
293 | fi |
|
|
294 | } |
|
|
295 | |
|
|
296 | # @FUNCTION: mysql_init_vars |
|
|
297 | # @DESCRIPTION: |
| 212 | # void mysql_init_vars() |
298 | # void mysql_init_vars() |
| 213 | # |
|
|
| 214 | # Initialize global variables |
299 | # Initialize global variables |
| 215 | # 2005-11-19 <vivo@gentoo.org> |
300 | # 2005-11-19 <vivo@gentoo.org> |
| 216 | |
|
|
| 217 | mysql_init_vars() { |
301 | mysql_init_vars() { |
| 218 | MY_SHAREDSTATEDIR=${MY_SHAREDSTATEDIR="/usr/share/mysql"} |
302 | MY_SHAREDSTATEDIR=${MY_SHAREDSTATEDIR="/usr/share/mysql"} |
| 219 | MY_SYSCONFDIR=${MY_SYSCONFDIR="/etc/mysql"} |
303 | MY_SYSCONFDIR=${MY_SYSCONFDIR="/etc/mysql"} |
| 220 | MY_LIBDIR=${MY_LIBDIR="/usr/$(get_libdir)/mysql"} |
304 | MY_LIBDIR=${MY_LIBDIR="/usr/$(get_libdir)/mysql"} |
| 221 | MY_LOCALSTATEDIR=${MY_LOCALSTATEDIR="/var/lib/mysql"} |
305 | MY_LOCALSTATEDIR=${MY_LOCALSTATEDIR="/var/lib/mysql"} |
| … | |
… | |
| 240 | fi |
324 | fi |
| 241 | elog "MySQL MY_DATADIR is ${MY_DATADIR}" |
325 | elog "MySQL MY_DATADIR is ${MY_DATADIR}" |
| 242 | |
326 | |
| 243 | if [[ -z "${PREVIOUS_DATADIR}" ]] ; then |
327 | if [[ -z "${PREVIOUS_DATADIR}" ]] ; then |
| 244 | if [[ -e "${MY_DATADIR}" ]] ; then |
328 | if [[ -e "${MY_DATADIR}" ]] ; then |
| 245 | elog "Previous datadir found, it's YOUR job to change" |
329 | # If you get this and you're wondering about it, see bug #207636 |
| 246 | elog "ownership and take care of it" |
330 | elog "MySQL datadir found in ${MY_DATADIR}" |
|
|
331 | elog "A new one will not be created." |
| 247 | PREVIOUS_DATADIR="yes" |
332 | PREVIOUS_DATADIR="yes" |
| 248 | else |
333 | else |
| 249 | PREVIOUS_DATADIR="no" |
334 | PREVIOUS_DATADIR="no" |
| 250 | fi |
335 | fi |
| 251 | export PREVIOUS_DATADIR |
336 | export PREVIOUS_DATADIR |
|
|
337 | fi |
|
|
338 | else |
|
|
339 | if [[ ${EBUILD_PHASE} == "config" ]]; then |
|
|
340 | local new_MY_DATADIR |
|
|
341 | new_MY_DATADIR=`"my_print_defaults" mysqld 2>/dev/null \ |
|
|
342 | | sed -ne '/datadir/s|^--datadir=||p' \ |
|
|
343 | | tail -n1` |
|
|
344 | |
|
|
345 | if [[ ( -n "${new_MY_DATADIR}" ) && ( "${new_MY_DATADIR}" != "${MY_DATADIR}" ) ]]; then |
|
|
346 | ewarn "MySQL MY_DATADIR has changed" |
|
|
347 | ewarn "from ${MY_DATADIR}" |
|
|
348 | ewarn "to ${new_MY_DATADIR}" |
|
|
349 | MY_DATADIR="${new_MY_DATADIR}" |
|
|
350 | fi |
| 252 | fi |
351 | fi |
| 253 | fi |
352 | fi |
| 254 | |
353 | |
| 255 | MY_SOURCEDIR=${SERVER_URI##*/} |
354 | MY_SOURCEDIR=${SERVER_URI##*/} |
| 256 | MY_SOURCEDIR=${MY_SOURCEDIR%.tar*} |
355 | MY_SOURCEDIR=${MY_SOURCEDIR%.tar*} |
| … | |
… | |
| 312 | mysql_version_is_at_least "4.1.3" \ |
411 | mysql_version_is_at_least "4.1.3" \ |
| 313 | && use cluster \ |
412 | && use cluster \ |
| 314 | && myconf="${myconf} --without-ndb-debug" |
413 | && myconf="${myconf} --without-ndb-debug" |
| 315 | fi |
414 | fi |
| 316 | |
415 | |
|
|
416 | if [ -n "${MYSQL_DEFAULT_CHARSET}" -a -n "${MYSQL_DEFAULT_COLLATION}" ]; then |
|
|
417 | ewarn "You are using a custom charset of ${MYSQL_DEFAULT_CHARSET}" |
|
|
418 | ewarn "and a collation of ${MYSQL_DEFAULT_COLLATION}." |
|
|
419 | ewarn "You MUST file bugs without these variables set." |
|
|
420 | myconf="${myconf} --with-charset=${MYSQL_DEFAULT_CHARSET}" |
|
|
421 | myconf="${myconf} --with-collation=${MYSQL_DEFAULT_COLLATION}" |
| 317 | if mysql_version_is_at_least "4.1" && ! use latin1 ; then |
422 | elif mysql_version_is_at_least "4.1" && ! use latin1 ; then |
| 318 | myconf="${myconf} --with-charset=utf8" |
423 | myconf="${myconf} --with-charset=utf8" |
| 319 | myconf="${myconf} --with-collation=utf8_general_ci" |
424 | myconf="${myconf} --with-collation=utf8_general_ci" |
| 320 | else |
425 | else |
| 321 | myconf="${myconf} --with-charset=latin1" |
426 | myconf="${myconf} --with-charset=latin1" |
| 322 | myconf="${myconf} --with-collation=latin1_swedish_ci" |
427 | myconf="${myconf} --with-collation=latin1_swedish_ci" |
| 323 | fi |
428 | fi |
| 324 | |
429 | |
| 325 | if use embedded ; then |
430 | if use embedded ; then |
| 326 | myconf="${myconf} --with-embedded-privilege-control" |
431 | myconf="${myconf} --with-embedded-privilege-control" |
| 327 | myconf="${myconf} --with-embedded-server" |
432 | myconf="${myconf} --with-embedded-server" |
| … | |
… | |
| 336 | myconf="${myconf} $(use_with perl bench)" |
441 | myconf="${myconf} $(use_with perl bench)" |
| 337 | myconf="${myconf} --enable-assembler" |
442 | myconf="${myconf} --enable-assembler" |
| 338 | myconf="${myconf} --with-extra-tools" |
443 | myconf="${myconf} --with-extra-tools" |
| 339 | myconf="${myconf} --with-innodb" |
444 | myconf="${myconf} --with-innodb" |
| 340 | myconf="${myconf} --without-readline" |
445 | myconf="${myconf} --without-readline" |
|
|
446 | myconf="${myconf} $(use_with ssl openssl)" |
| 341 | mysql_version_is_at_least "5.0" || myconf="${myconf} $(use_with raid)" |
447 | mysql_version_is_at_least "5.0" || myconf="${myconf} $(use_with raid)" |
| 342 | |
448 | |
| 343 | # --with-vio is not needed anymore, it's on by default and |
449 | # --with-vio is not needed anymore, it's on by default and |
| 344 | # has been removed from configure |
450 | # has been removed from configure |
|
|
451 | # Apply to 4.x and 5.0.[0-3] |
| 345 | if use ssl ; then |
452 | if use ssl ; then |
| 346 | mysql_version_is_at_least "5.0.4" || myconf="${myconf} --with-vio" |
453 | mysql_version_is_at_least "5.0.4" || myconf="${myconf} --with-vio" |
| 347 | fi |
454 | fi |
| 348 | |
455 | |
| 349 | if mysql_version_is_at_least "5.1.11" ; then |
456 | if mysql_version_is_at_least "5.0.60" ; then |
| 350 | myconf="${myconf} $(use_with ssl)" |
|
|
| 351 | else |
|
|
| 352 | myconf="${myconf} $(use_with ssl openssl)" |
|
|
| 353 | fi |
|
|
| 354 | |
|
|
| 355 | if use berkdb ; then |
457 | if use berkdb ; then |
|
|
458 | elog "Berkeley DB support was disabled due to build failures" |
|
|
459 | elog "on multiple arches, go to a version earlier than 5.0.60" |
|
|
460 | elog "if you want it again. Gentoo bug #224067." |
|
|
461 | fi |
|
|
462 | myconf="${myconf} --without-berkeley-db" |
|
|
463 | elif use berkdb ; then |
| 356 | # The following fix is due to a bug with bdb on SPARC's. See: |
464 | # 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 |
465 | # http://www.geocrawler.com/mail/msg.php3?msg_id=4754814&list=8 |
| 358 | # It comes down to non-64-bit safety problems. |
466 | # It comes down to non-64-bit safety problems. |
| 359 | if use alpha || use amd64 || use hppa || use mips || use sparc ; then |
467 | 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" |
468 | elog "Berkeley DB support was disabled due to compatibility issues on this arch" |
| … | |
… | |
| 389 | elog "http://dev.mysql.com/doc/mysql/en/federated-limitations.html" |
497 | elog "http://dev.mysql.com/doc/mysql/en/federated-limitations.html" |
| 390 | myconf="${myconf} --with-federated-storage-engine" |
498 | myconf="${myconf} --with-federated-storage-engine" |
| 391 | fi |
499 | fi |
| 392 | fi |
500 | fi |
| 393 | |
501 | |
|
|
502 | if [ "${MYSQL_COMMUNITY_FEATURES}" == "1" ]; then |
|
|
503 | myconf="${myconf} `use_enable community community-features`" |
|
|
504 | if use community; then |
|
|
505 | myconf="${myconf} `use_enable profiling`" |
|
|
506 | else |
|
|
507 | myconf="${myconf} --disable-profiling" |
|
|
508 | fi |
|
|
509 | fi |
|
|
510 | |
| 394 | mysql_version_is_at_least "5.0.18" \ |
511 | mysql_version_is_at_least "5.0.18" \ |
| 395 | && use max-idx-128 \ |
512 | && use max-idx-128 \ |
| 396 | && myconf="${myconf} --with-max-indexes=128" |
513 | && myconf="${myconf} --with-max-indexes=128" |
| 397 | } |
514 | } |
| 398 | |
515 | |
| 399 | configure_51() { |
516 | configure_51() { |
| 400 | # TODO: !!!! readd --without-readline |
517 | # TODO: !!!! readd --without-readline |
| 401 | # the failure depend upon config/ac-macros/readline.m4 checking into |
518 | # the failure depend upon config/ac-macros/readline.m4 checking into |
| 402 | # readline.h instead of history.h |
519 | # readline.h instead of history.h |
| 403 | myconf="${myconf} $(use_with ssl)" |
520 | myconf="${myconf} $(use_with ssl ssl /usr)" |
| 404 | myconf="${myconf} --enable-assembler" |
521 | myconf="${myconf} --enable-assembler" |
| 405 | myconf="${myconf} --with-geometry" |
522 | myconf="${myconf} --with-geometry" |
| 406 | myconf="${myconf} --with-readline" |
523 | myconf="${myconf} --with-readline" |
| 407 | myconf="${myconf} --with-row-based-replication" |
|
|
| 408 | myconf="${myconf} --with-zlib=/usr/$(get_libdir)" |
524 | myconf="${myconf} --with-zlib-dir=/usr/" |
| 409 | myconf="${myconf} --without-pstack" |
525 | myconf="${myconf} --without-pstack" |
| 410 | use max-idx-128 && myconf="${myconf} --with-max-indexes=128" |
526 | use max-idx-128 && myconf="${myconf} --with-max-indexes=128" |
|
|
527 | if [ "${MYSQL_COMMUNITY_FEATURES}" == "1" ]; then |
|
|
528 | myconf="${myconf} $(use_enable community community-features)" |
|
|
529 | if use community; then |
|
|
530 | myconf="${myconf} $(use_enable profiling)" |
|
|
531 | else |
|
|
532 | myconf="${myconf} --disable-profiling" |
|
|
533 | fi |
|
|
534 | fi |
| 411 | |
535 | |
| 412 | # 5.1 introduces a new way to manage storage engines (plugins) |
536 | # 5.1 introduces a new way to manage storage engines (plugins) |
| 413 | # like configuration=none |
537 | # like configuration=none |
|
|
538 | # This base set are required, and will always be statically built. |
| 414 | local plugins="csv,myisam,myisammrg,heap" |
539 | local plugins="csv,myisam,myisammrg,heap" |
| 415 | if use extraengine ; then |
540 | if use extraengine ; then |
| 416 | # like configuration=max-no-ndb, archive and example removed in 5.1.11 |
541 | # like configuration=max-no-ndb, archive and example removed in 5.1.11 |
|
|
542 | # not added yet: ibmdb2i |
|
|
543 | # Not supporting as examples: example,daemon_example,ftexample |
| 417 | plugins="${plugins},archive,blackhole,example,federated,partition" |
544 | plugins="${plugins},archive,blackhole,federated,partition" |
| 418 | |
545 | |
|
|
546 | if [[ "${PN}" != "mariadb" ]] ; then |
| 419 | elog "Before using the Federated storage engine, please be sure to read" |
547 | 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" |
548 | elog "http://dev.mysql.com/doc/refman/5.1/en/federated-limitations.html" |
|
|
549 | else |
|
|
550 | elog "MariaDB includes the FederatedX engine. Be sure to read" |
|
|
551 | elog "http://askmonty.org/wiki/index.php/Manual:FederatedX_storage_engine" |
| 421 | fi |
552 | fi |
| 422 | |
|
|
| 423 | if use innodb ; then |
|
|
| 424 | plugins="${plugins},innobase" |
|
|
| 425 | fi |
553 | fi |
|
|
554 | |
|
|
555 | # Upstream specifically requests that InnoDB always be built: |
|
|
556 | # - innobase, innodb_plugin |
|
|
557 | # Build falcon if available for 6.x series. |
|
|
558 | for i in innobase innodb_plugin falcon ; do |
|
|
559 | [ -e "${S}"/storage/${i} ] && plugins="${plugins},${i}" |
|
|
560 | done |
| 426 | |
561 | |
| 427 | # like configuration=max-no-ndb |
562 | # like configuration=max-no-ndb |
| 428 | if use cluster ; then |
563 | if use cluster ; then |
| 429 | plugins="${plugins},ndbcluster" |
564 | plugins="${plugins},ndbcluster" |
| 430 | myconf="${myconf} --with-ndb-binlog" |
565 | myconf="${myconf} --with-ndb-binlog" |
| 431 | fi |
566 | fi |
| 432 | |
567 | |
| 433 | if mysql_version_is_at_least "5.2" ; then |
568 | if [[ "${PN}" == "mariadb" ]] ; then |
|
|
569 | # In MariaDB, InnoDB is packaged in the xtradb directory, so it's not |
|
|
570 | # caught above. |
|
|
571 | plugins="${plugins},maria,innobase" |
|
|
572 | if use pbxt ; then |
| 434 | plugins="${plugins},falcon" |
573 | plugins="${plugins},pbxt" |
|
|
574 | else |
|
|
575 | myconf="${myconf} --without-plugin-pbxt" |
|
|
576 | fi |
|
|
577 | myconf="${myconf} $(use_with libevent)" |
|
|
578 | # This is not optional, without it several upstream testcases fail. |
|
|
579 | # Also strongly recommended by upstream. |
|
|
580 | myconf="${myconf} --with-maria-tmp-tables" |
| 435 | fi |
581 | fi |
| 436 | |
582 | |
| 437 | myconf="${myconf} --with-plugins=${plugins}" |
583 | myconf="${myconf} --with-plugins=${plugins}" |
| 438 | } |
584 | } |
| 439 | |
585 | |
| 440 | pbxt_src_compile() { |
586 | pbxt_src_configure() { |
| 441 | mysql_init_vars |
587 | mysql_init_vars |
| 442 | |
588 | |
| 443 | pushd "${WORKDIR}/pbxt-${PBXT_VERSION}" &>/dev/null |
589 | pushd "${WORKDIR}/pbxt-${PBXT_VERSION}" &>/dev/null |
| 444 | |
590 | |
| 445 | einfo "Reconfiguring dir '${PWD}'" |
591 | einfo "Reconfiguring dir '${PWD}'" |
| 446 | AT_GNUCONF_UPDATE="yes" eautoreconf |
592 | AT_GNUCONF_UPDATE="yes" eautoreconf |
| 447 | |
593 | |
| 448 | local myconf="" |
594 | local myconf="" |
| 449 | myconf="${myconf} --with-mysql=${S} --libdir=${D}/${MY_LIBDIR}" |
595 | myconf="${myconf} --with-mysql=${S} --libdir=/usr/$(get_libdir)" |
| 450 | use debug && myconf="${myconf} --with-debug=full" |
596 | use debug && myconf="${myconf} --with-debug=full" |
| 451 | # TODO: is it safe/needed to use econf here ? |
|
|
| 452 | ./configure ${myconf} || die "Problem configuring PBXT storage engine" |
597 | econf ${myconf} || die "Problem configuring PBXT storage engine" |
|
|
598 | } |
|
|
599 | |
|
|
600 | pbxt_src_compile() { |
|
|
601 | # Be backwards compatible for now |
|
|
602 | if [[ $EAPI != 2 ]]; then |
|
|
603 | pbxt_src_configure |
|
|
604 | fi |
| 453 | # TODO: is it safe/needed to use emake here ? |
605 | # TODO: is it safe/needed to use emake here ? |
| 454 | make || die "Problem making PBXT storage engine (${myconf})" |
606 | make || die "Problem making PBXT storage engine (${myconf})" |
| 455 | |
607 | |
| 456 | popd |
608 | popd |
| 457 | # TODO: modify test suite for PBXT |
609 | # TODO: modify test suite for PBXT |
| 458 | } |
610 | } |
| 459 | |
611 | |
| 460 | pbxt_src_install() { |
612 | pbxt_src_install() { |
| 461 | pushd "${WORKDIR}/pbxt-${PBXT_VERSION}" &>/dev/null |
613 | pushd "${WORKDIR}/pbxt-${PBXT_VERSION}" &>/dev/null |
| 462 | make install || die "Failed to install PBXT" |
614 | emake install DESTDIR="${D}" || die "Failed to install PBXT" |
| 463 | popd |
615 | popd |
| 464 | } |
616 | } |
| 465 | |
617 | |
| 466 | # |
618 | # |
| 467 | # EBUILD FUNCTIONS |
619 | # EBUILD FUNCTIONS |
| 468 | # |
620 | # |
|
|
621 | # @FUNCTION: mysql_pkg_setup |
|
|
622 | # @DESCRIPTION: |
|
|
623 | # Perform some basic tests and tasks during pkg_setup phase: |
|
|
624 | # die if FEATURES="test", USE="-minimal" and not using FEATURES="userpriv" |
|
|
625 | # check for conflicting use flags |
|
|
626 | # create new user and group for mysql |
|
|
627 | # warn about deprecated features |
| 469 | mysql_pkg_setup() { |
628 | mysql_pkg_setup() { |
| 470 | if hasq test ${FEATURES} ; then |
629 | if hasq test ${FEATURES} ; then |
| 471 | if ! use minimal ; then |
630 | if ! use minimal ; then |
| 472 | if [[ $UID -eq 0 ]]; then |
631 | if [[ $UID -eq 0 ]]; then |
| 473 | die "Testing with FEATURES=-userpriv is no longer supported by upstream. Tests MUST be run as non-root." |
632 | eerror "Testing with FEATURES=-userpriv is no longer supported by upstream. Tests MUST be run as non-root." |
| 474 | fi |
633 | fi |
| 475 | fi |
634 | fi |
| 476 | fi |
635 | 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 | |
636 | |
| 482 | # Check for USE flag problems in pkg_setup |
637 | # Check for USE flag problems in pkg_setup |
| 483 | if use static && use ssl ; then |
638 | if use static && use ssl ; then |
| 484 | eerror "MySQL does not support being built statically with SSL support enabled!" |
639 | 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!" |
640 | die "MySQL does not support being built statically with SSL support enabled!" |
| … | |
… | |
| 497 | && ( use cluster || use extraengine ) \ |
652 | && ( use cluster || use extraengine ) \ |
| 498 | && use minimal ; then |
653 | && use minimal ; then |
| 499 | eerror "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
654 | eerror "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
| 500 | die "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
655 | die "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
| 501 | fi |
656 | fi |
| 502 | |
657 | |
|
|
658 | # Bug #290570 fun. Upstream made us need a fairly new GCC4. |
|
|
659 | if mysql_version_is_at_least "5.0.83" ; then |
|
|
660 | GCC_VER=$(gcc-version) |
|
|
661 | case ${GCC_VER} in |
|
|
662 | 2*|3*|4.0|4.1|4.2) die "Active GCC too old! Must have at least GCC4.3" ;; |
|
|
663 | esac |
|
|
664 | fi |
|
|
665 | |
| 503 | # This should come after all of the die statements |
666 | # This should come after all of the die statements |
| 504 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
667 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
| 505 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
668 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
| 506 | |
669 | |
| 507 | mysql_check_version_range "4.0 to 5.0.99.99" \ |
670 | mysql_check_version_range "4.0 to 5.0.99.99" \ |
| 508 | && use berkdb \ |
671 | && use berkdb \ |
| 509 | && elog "Berkeley DB support is deprecated and will be removed in future versions!" |
672 | && elog "Berkeley DB support is deprecated and will be removed in future versions!" |
| 510 | } |
|
|
| 511 | |
673 | |
|
|
674 | if [ "${PN}" != "mysql-cluster" ] && use cluster; then |
|
|
675 | ewarn "Upstream has noted that the NDB cluster support in the 5.0 and" |
|
|
676 | ewarn "5.1 series should NOT be put into production. In the near" |
|
|
677 | ewarn "future, it will be disabled from building." |
|
|
678 | ewarn "" |
|
|
679 | ewarn "If you need NDB support, you should instead move to the new" |
|
|
680 | ewarn "mysql-cluster package that represents that upstream NDB" |
|
|
681 | ewarn "development." |
|
|
682 | fi |
|
|
683 | } |
|
|
684 | |
|
|
685 | # @FUNCTION: mysql_src_unpack |
|
|
686 | # @DESCRIPTION: |
|
|
687 | # Unpack the source code and call mysql_src_prepare for EAPI < 2. |
| 512 | mysql_src_unpack() { |
688 | mysql_src_unpack() { |
| 513 | # Initialize the proper variables first |
689 | # Initialize the proper variables first |
| 514 | mysql_init_vars |
690 | mysql_init_vars |
| 515 | |
691 | |
| 516 | unpack ${A} |
692 | unpack ${A} |
| 517 | # Grab the patches |
693 | # Grab the patches |
| 518 | [[ "${MY_EXTRAS_VER}" == "live" ]] && S="${WORKDIR}/mysql-extras" git_src_unpack |
694 | [[ "${MY_EXTRAS_VER}" == "live" ]] && S="${WORKDIR}/mysql-extras" git_src_unpack |
| 519 | # Bitkeeper checkout support |
695 | |
| 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}" |
696 | mv -f "${WORKDIR}/${MY_SOURCEDIR}" "${S}" |
|
|
697 | |
|
|
698 | # Be backwards compatible for now |
|
|
699 | case ${EAPI:-0} in |
|
|
700 | 2) : ;; |
|
|
701 | 0 | 1) mysql_src_prepare ;; |
|
|
702 | esac |
|
|
703 | } |
|
|
704 | |
|
|
705 | # @FUNCTION: mysql_src_prepare |
|
|
706 | # @DESCRIPTION: |
|
|
707 | # Apply patches to the source code and remove unneeded bundled libs. |
|
|
708 | mysql_src_prepare() { |
| 533 | cd "${S}" |
709 | cd "${S}" |
| 534 | fi |
|
|
| 535 | |
710 | |
| 536 | # Apply the patches for this MySQL version |
711 | # Apply the patches for this MySQL version |
| 537 | EPATCH_SUFFIX="patch" |
712 | EPATCH_SUFFIX="patch" |
| 538 | mkdir -p "${EPATCH_SOURCE}" || die "Unable to create epatch directory" |
713 | mkdir -p "${EPATCH_SOURCE}" || die "Unable to create epatch directory" |
| 539 | # Clean out old items |
714 | # Clean out old items |
| … | |
… | |
| 541 | # Now link in right patches |
716 | # Now link in right patches |
| 542 | mysql_mv_patches |
717 | mysql_mv_patches |
| 543 | # And apply |
718 | # And apply |
| 544 | epatch |
719 | epatch |
| 545 | |
720 | |
|
|
721 | # last -fPIC fixup, per bug #305873 |
|
|
722 | i="${S}"/storage/innodb_plugin/plug.in |
|
|
723 | [ -f "${i}" ] && sed -i -e '/CFLAGS/s,-prefer-non-pic,,g' "${i}" |
|
|
724 | |
| 546 | # Additional checks, remove bundled zlib |
725 | # Additional checks, remove bundled zlib |
| 547 | rm -f "${S}/zlib/"*.[ch] |
726 | rm -f "${S}/zlib/"*.[ch] |
| 548 | sed -i -e "s/zlib\/Makefile dnl/dnl zlib\/Makefile/" "${S}/configure.in" |
727 | sed -i -e "s/zlib\/Makefile dnl/dnl zlib\/Makefile/" "${S}/configure.in" |
| 549 | rm -f "scripts/mysqlbug" |
728 | rm -f "scripts/mysqlbug" |
| 550 | |
729 | |
| … | |
… | |
| 552 | find . -name 'Makefile.am' \ |
731 | find . -name 'Makefile.am' \ |
| 553 | -exec sed --in-place -e 's!$(pkgdatadir)!'${MY_SHAREDSTATEDIR}'!g' {} \; |
732 | -exec sed --in-place -e 's!$(pkgdatadir)!'${MY_SHAREDSTATEDIR}'!g' {} \; |
| 554 | |
733 | |
| 555 | if mysql_version_is_at_least "4.1" ; then |
734 | if mysql_version_is_at_least "4.1" ; then |
| 556 | # Remove what needs to be recreated, so we're sure it's actually done |
735 | # Remove what needs to be recreated, so we're sure it's actually done |
|
|
736 | einfo "Cleaning up old buildscript files" |
| 557 | find . -name Makefile \ |
737 | find . -name Makefile \ |
| 558 | -o -name Makefile.in \ |
738 | -o -name Makefile.in \ |
| 559 | -o -name configure \ |
739 | -o -name configure \ |
| 560 | -exec rm -f {} \; |
740 | -exec rm -f {} \; |
| 561 | rm -f "ltmain.sh" |
741 | rm -f "ltmain.sh" |
| 562 | rm -f "scripts/mysqlbug" |
742 | rm -f "scripts/mysqlbug" |
| 563 | fi |
743 | fi |
| 564 | |
744 | |
| 565 | local rebuilddirlist d |
745 | local rebuilddirlist d |
| 566 | |
746 | |
|
|
747 | if xtradb_patch_available && use xtradb ; then |
|
|
748 | einfo "Replacing InnoDB with Percona XtraDB" |
|
|
749 | pushd "${S}"/storage |
|
|
750 | i="innobase" |
|
|
751 | o="${WORKDIR}/storage-${i}.mysql-upstream" |
|
|
752 | # Have we been here already? |
|
|
753 | [ -d "${o}" ] && rm -f "${i}" |
|
|
754 | # Or maybe we haven't |
|
|
755 | [ -d "${i}" -a ! -d "${o}" ] && mv "${i}" "${o}" |
|
|
756 | cp -ra "${WORKDIR}/${XTRADB_P}" "${i}" |
|
|
757 | popd |
|
|
758 | fi |
|
|
759 | |
| 567 | if mysql_version_is_at_least "5.1.12" ; then |
760 | if mysql_version_is_at_least "5.1.12" ; then |
| 568 | rebuilddirlist="." |
761 | rebuilddirlist="." |
|
|
762 | # This does not seem to be needed presently. robbat2 2010/02/23 |
|
|
763 | #einfo "Updating innobase cmake" |
| 569 | # TODO: check this with a cmake expert |
764 | ## TODO: check this with a cmake expert |
| 570 | use innodb \ |
|
|
| 571 | && cmake \ |
765 | #cmake \ |
| 572 | -DCMAKE_C_COMPILER=$(type -P $(tc-getCC)) \ |
766 | # -DCMAKE_C_COMPILER=$(type -P $(tc-getCC)) \ |
| 573 | -DCMAKE_CXX_COMPILER=$(type -P $(tc-getCXX)) \ |
767 | # -DCMAKE_CXX_COMPILER=$(type -P $(tc-getCXX)) \ |
| 574 | "storage/innobase" |
768 | # "storage/innobase" |
| 575 | else |
769 | else |
| 576 | rebuilddirlist=". innobase" |
770 | rebuilddirlist=". innobase" |
| 577 | fi |
771 | fi |
| 578 | |
772 | |
| 579 | for d in ${rebuilddirlist} ; do |
773 | for d in ${rebuilddirlist} ; do |
| … | |
… | |
| 583 | popd &>/dev/null |
777 | popd &>/dev/null |
| 584 | done |
778 | done |
| 585 | |
779 | |
| 586 | if mysql_check_version_range "4.1 to 5.0.99.99" \ |
780 | if mysql_check_version_range "4.1 to 5.0.99.99" \ |
| 587 | && use berkdb ; then |
781 | && use berkdb ; then |
|
|
782 | einfo "Fixing up berkdb buildsystem" |
| 588 | [[ -w "bdb/dist/ltmain.sh" ]] && cp -f "ltmain.sh" "bdb/dist/ltmain.sh" |
783 | [[ -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" \ |
784 | cp -f "/usr/share/aclocal/libtool.m4" "bdb/dist/aclocal/libtool.ac" \ |
| 590 | || die "Could not copy libtool.m4 to bdb/dist/" |
785 | || die "Could not copy libtool.m4 to bdb/dist/" |
|
|
786 | #These files exist only with libtool-2*, and need to be included. |
|
|
787 | if [ -f '/usr/share/aclocal/ltsugar.m4' ]; then |
|
|
788 | cat "/usr/share/aclocal/ltsugar.m4" >> "bdb/dist/aclocal/libtool.ac" |
|
|
789 | cat "/usr/share/aclocal/ltversion.m4" >> "bdb/dist/aclocal/libtool.ac" |
|
|
790 | cat "/usr/share/aclocal/lt~obsolete.m4" >> "bdb/dist/aclocal/libtool.ac" |
|
|
791 | cat "/usr/share/aclocal/ltoptions.m4" >> "bdb/dist/aclocal/libtool.ac" |
|
|
792 | fi |
| 591 | pushd "bdb/dist" &>/dev/null |
793 | pushd "bdb/dist" &>/dev/null |
| 592 | sh s_all \ |
794 | sh s_all \ |
| 593 | || die "Failed bdb reconfigure" |
795 | || die "Failed bdb reconfigure" |
| 594 | popd &>/dev/null |
796 | popd &>/dev/null |
| 595 | fi |
797 | fi |
| 596 | } |
798 | } |
| 597 | |
799 | |
|
|
800 | # @FUNCTION: mysql_src_configure |
|
|
801 | # @DESCRIPTION: |
|
|
802 | # Configure mysql to build the code for Gentoo respecting the use flags. |
| 598 | mysql_src_compile() { |
803 | mysql_src_configure() { |
| 599 | # Make sure the vars are correctly initialized |
804 | # Make sure the vars are correctly initialized |
| 600 | mysql_init_vars |
805 | mysql_init_vars |
| 601 | |
806 | |
| 602 | # $myconf is modified by the configure_* functions |
807 | # $myconf is modified by the configure_* functions |
| 603 | local myconf="" |
808 | local myconf="" |
| … | |
… | |
| 617 | filter-flags "-O" "-O[01]" |
822 | filter-flags "-O" "-O[01]" |
| 618 | |
823 | |
| 619 | # glib-2.3.2_pre fix, bug #16496 |
824 | # glib-2.3.2_pre fix, bug #16496 |
| 620 | append-flags "-DHAVE_ERRNO_AS_DEFINE=1" |
825 | append-flags "-DHAVE_ERRNO_AS_DEFINE=1" |
| 621 | |
826 | |
|
|
827 | # As discovered by bug #246652, doing a double-level of SSP causes NDB to |
|
|
828 | # fail badly during cluster startup. |
|
|
829 | if [[ $(gcc-major-version) -lt 4 ]]; then |
|
|
830 | filter-flags "-fstack-protector-all" |
|
|
831 | fi |
|
|
832 | |
| 622 | CXXFLAGS="${CXXFLAGS} -fno-exceptions -fno-strict-aliasing" |
833 | CXXFLAGS="${CXXFLAGS} -fno-exceptions -fno-strict-aliasing" |
| 623 | CXXFLAGS="${CXXFLAGS} -felide-constructors -fno-rtti" |
834 | CXXFLAGS="${CXXFLAGS} -felide-constructors -fno-rtti" |
| 624 | mysql_version_is_at_least "5.0" \ |
835 | mysql_version_is_at_least "5.0" \ |
| 625 | && CXXFLAGS="${CXXFLAGS} -fno-implicit-templates" |
836 | && CXXFLAGS="${CXXFLAGS} -fno-implicit-templates" |
| 626 | export CXXFLAGS |
837 | export CXXFLAGS |
|
|
838 | |
|
|
839 | # bug #283926, with GCC4.4, this is required to get correct behavior. |
|
|
840 | append-flags -fno-strict-aliasing |
| 627 | |
841 | |
| 628 | econf \ |
842 | econf \ |
| 629 | --libexecdir="/usr/sbin" \ |
843 | --libexecdir="/usr/sbin" \ |
| 630 | --sysconfdir="${MY_SYSCONFDIR}" \ |
844 | --sysconfdir="${MY_SYSCONFDIR}" \ |
| 631 | --localstatedir="${MY_LOCALSTATEDIR}" \ |
845 | --localstatedir="${MY_LOCALSTATEDIR}" \ |
| … | |
… | |
| 642 | # TODO: Move this before autoreconf !!! |
856 | # TODO: Move this before autoreconf !!! |
| 643 | find . -type f -name Makefile -print0 \ |
857 | find . -type f -name Makefile -print0 \ |
| 644 | | xargs -0 -n100 sed -i \ |
858 | | xargs -0 -n100 sed -i \ |
| 645 | -e 's|^pkglibdir *= *$(libdir)/mysql|pkglibdir = $(libdir)|;s|^pkgincludedir *= *$(includedir)/mysql|pkgincludedir = $(includedir)|' |
859 | -e 's|^pkglibdir *= *$(libdir)/mysql|pkglibdir = $(libdir)|;s|^pkgincludedir *= *$(includedir)/mysql|pkgincludedir = $(includedir)|' |
| 646 | |
860 | |
|
|
861 | if [[ $EAPI == 2 ]]; then |
|
|
862 | pbxt_patch_available && use pbxt && pbxt_src_configure |
|
|
863 | fi |
|
|
864 | } |
|
|
865 | |
|
|
866 | # @FUNCTION: mysql_src_compile |
|
|
867 | # @DESCRIPTION: |
|
|
868 | # Compile the mysql code. |
|
|
869 | mysql_src_compile() { |
|
|
870 | # Be backwards compatible for now |
|
|
871 | case ${EAPI:-0} in |
|
|
872 | 2) : ;; |
|
|
873 | 0 | 1) mysql_src_configure ;; |
|
|
874 | esac |
|
|
875 | |
| 647 | emake || die "emake failed" |
876 | emake || die "emake failed" |
| 648 | |
877 | |
| 649 | mysql_version_is_at_least "5.1.12" && use pbxt && pbxt_src_compile |
878 | pbxt_patch_available && use pbxt && pbxt_src_compile |
| 650 | } |
879 | } |
| 651 | |
880 | |
|
|
881 | # @FUNCTION: mysql_src_install |
|
|
882 | # @DESCRIPTION: |
|
|
883 | # Install mysql. |
| 652 | mysql_src_install() { |
884 | mysql_src_install() { |
| 653 | # Make sure the vars are correctly initialized |
885 | # Make sure the vars are correctly initialized |
| 654 | mysql_init_vars |
886 | mysql_init_vars |
| 655 | |
887 | |
| 656 | emake install DESTDIR="${D}" benchdir_root="${MY_SHAREDSTATEDIR}" || die "emake install failed" |
888 | emake install \ |
|
|
889 | DESTDIR="${D}" \ |
|
|
890 | benchdir_root="${MY_SHAREDSTATEDIR}" \ |
|
|
891 | testroot="${MY_SHAREDSTATEDIR}" \ |
|
|
892 | || die "emake install failed" |
| 657 | |
893 | |
| 658 | mysql_version_is_at_least "5.1.12" && use pbxt && pbxt_src_install |
894 | pbxt_patch_available && use pbxt && pbxt_src_install |
| 659 | |
|
|
| 660 | insinto "${MY_INCLUDEDIR}" |
|
|
| 661 | doins "${MY_INCLUDEDIR}"/my_{config,dir}.h |
|
|
| 662 | |
895 | |
| 663 | # Convenience links |
896 | # Convenience links |
|
|
897 | einfo "Making Convenience links for mysqlcheck multi-call binary" |
| 664 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlanalyze" |
898 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlanalyze" |
| 665 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlrepair" |
899 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlrepair" |
| 666 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqloptimize" |
900 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqloptimize" |
| 667 | |
901 | |
| 668 | # Various junk (my-*.cnf moved elsewhere) |
902 | # Various junk (my-*.cnf moved elsewhere) |
|
|
903 | einfo "Removing duplicate /usr/share/mysql files" |
| 669 | rm -Rf "${D}/usr/share/info" |
904 | rm -Rf "${D}/usr/share/info" |
| 670 | for removeme in "mysql-log-rotate" mysql.server* \ |
905 | for removeme in "mysql-log-rotate" mysql.server* \ |
| 671 | binary-configure* my-*.cnf mi_test_all* |
906 | binary-configure* my-*.cnf mi_test_all* |
| 672 | do |
907 | do |
| 673 | rm -f "${D}"/usr/share/mysql/${removeme} |
908 | rm -f "${D}"/${MY_SHAREDSTATEDIR}/${removeme} |
| 674 | done |
909 | done |
| 675 | |
910 | |
| 676 | # Clean up stuff for a minimal build |
911 | # Clean up stuff for a minimal build |
| 677 | if use minimal ; then |
912 | if use minimal ; then |
|
|
913 | einfo "Remove all extra content for minimal build" |
| 678 | rm -Rf "${D}${MY_SHAREDSTATEDIR}"/{mysql-test,sql-bench} |
914 | 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} |
915 | 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" |
916 | 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 |
917 | rm -f "${D}${MY_LIBDIR}"/lib{heap,merge,nisam,my{sys,strings,sqld,isammrg,isam},vio,dbug}.a |
| 682 | fi |
918 | fi |
| 683 | |
919 | |
|
|
920 | # Unless they explicitly specific USE=test, then do not install the |
|
|
921 | # testsuite. It DOES have a use to be installed, esp. when you want to do a |
|
|
922 | # validation of your database configuration after tuning it. |
|
|
923 | if use !test ; then |
|
|
924 | rm -rf "${D}"/${MY_SHAREDSTATEDIR}/mysql-test |
|
|
925 | fi |
|
|
926 | |
| 684 | # Configuration stuff |
927 | # Configuration stuff |
|
|
928 | if mysql_version_is_at_least "5.1" ; then |
|
|
929 | mysql_mycnf_version="5.1" |
| 685 | if mysql_version_is_at_least "4.1" ; then |
930 | elif mysql_version_is_at_least "4.1" ; then |
| 686 | mysql_mycnf_version="4.1" |
931 | mysql_mycnf_version="4.1" |
| 687 | else |
932 | else |
| 688 | mysql_mycnf_version="4.0" |
933 | mysql_mycnf_version="4.0" |
| 689 | fi |
934 | fi |
|
|
935 | einfo "Building default my.cnf" |
| 690 | insinto "${MY_SYSCONFDIR}" |
936 | insinto "${MY_SYSCONFDIR}" |
| 691 | doins scripts/mysqlaccess.conf |
937 | doins scripts/mysqlaccess.conf |
| 692 | sed -e "s!@DATADIR@!${MY_DATADIR}!g" \ |
938 | sed -e "s!@DATADIR@!${MY_DATADIR}!g" \ |
| 693 | "${FILESDIR}/my.cnf-${mysql_mycnf_version}" \ |
939 | "${FILESDIR}/my.cnf-${mysql_mycnf_version}" \ |
| 694 | > "${TMPDIR}/my.cnf.ok" |
940 | > "${TMPDIR}/my.cnf.ok" |
| 695 | if mysql_version_is_at_least "4.1" && use latin1 ; then |
941 | if mysql_version_is_at_least "4.1" && use latin1 ; then |
| 696 | sed -e "s|utf8|latin1|g" -i "${TMPDIR}/my.cnf.ok" |
942 | sed -i \ |
|
|
943 | -e "/character-set/s|utf8|latin1|g" \ |
|
|
944 | "${TMPDIR}/my.cnf.ok" |
| 697 | fi |
945 | fi |
| 698 | newins "${TMPDIR}/my.cnf.ok" my.cnf |
946 | newins "${TMPDIR}/my.cnf.ok" my.cnf |
| 699 | |
947 | |
| 700 | # Minimal builds don't have the MySQL server |
948 | # Minimal builds don't have the MySQL server |
| 701 | if ! use minimal ; then |
949 | if ! use minimal ; then |
|
|
950 | einfo "Creating initial directories" |
| 702 | # Empty directories ... |
951 | # Empty directories ... |
| 703 | diropts "-m0750" |
952 | diropts "-m0750" |
| 704 | if [[ "${PREVIOUS_DATADIR}" != "yes" ]] ; then |
953 | if [[ "${PREVIOUS_DATADIR}" != "yes" ]] ; then |
| 705 | dodir "${MY_DATADIR}" |
954 | dodir "${MY_DATADIR}" |
| 706 | keepdir "${MY_DATADIR}" |
955 | keepdir "${MY_DATADIR}" |
| … | |
… | |
| 714 | chown -R mysql:mysql "${D}/${folder}" |
963 | chown -R mysql:mysql "${D}/${folder}" |
| 715 | done |
964 | done |
| 716 | fi |
965 | fi |
| 717 | |
966 | |
| 718 | # Docs |
967 | # Docs |
|
|
968 | einfo "Installing docs" |
| 719 | dodoc README COPYING ChangeLog EXCEPTIONS-CLIENT INSTALL-SOURCE |
969 | dodoc README ChangeLog EXCEPTIONS-CLIENT INSTALL-SOURCE |
| 720 | doinfo "${S}"/Docs/mysql.info |
970 | doinfo "${S}"/Docs/mysql.info |
| 721 | |
971 | |
| 722 | # Minimal builds don't have the MySQL server |
972 | # Minimal builds don't have the MySQL server |
| 723 | if ! use minimal ; then |
973 | if ! use minimal ; then |
|
|
974 | einfo "Including support files and sample configurations" |
| 724 | docinto "support-files" |
975 | docinto "support-files" |
| 725 | for script in \ |
976 | for script in \ |
| 726 | "${S}"/support-files/my-*.cnf \ |
977 | "${S}"/support-files/my-*.cnf \ |
| 727 | "${S}"/support-files/magic \ |
978 | "${S}"/support-files/magic \ |
| 728 | "${S}"/support-files/ndb-config-2-node.ini |
979 | "${S}"/support-files/ndb-config-2-node.ini |
| 729 | do |
980 | do |
| 730 | dodoc "${script}" |
981 | [[ -f "$script" ]] && dodoc "${script}" |
| 731 | done |
982 | done |
| 732 | |
983 | |
| 733 | docinto "scripts" |
984 | docinto "scripts" |
| 734 | for script in "${S}"/scripts/mysql* ; do |
985 | for script in "${S}"/scripts/mysql* ; do |
| 735 | [[ "${script%.sh}" == "${script}" ]] && dodoc "${script}" |
986 | [[ -f "$script" ]] && [[ "${script%.sh}" == "${script}" ]] && dodoc "${script}" |
| 736 | done |
987 | done |
| 737 | |
988 | |
| 738 | fi |
989 | fi |
| 739 | |
990 | |
| 740 | mysql_lib_symlinks "${D}" |
991 | mysql_lib_symlinks "${D}" |
| 741 | } |
992 | } |
| 742 | |
993 | |
|
|
994 | # @FUNCTION: mysql_pkg_preinst |
|
|
995 | # @DESCRIPTION: |
|
|
996 | # Create the user and groups for mysql - die if that fails. |
| 743 | mysql_pkg_preinst() { |
997 | mysql_pkg_preinst() { |
| 744 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
998 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
| 745 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
999 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
| 746 | } |
1000 | } |
| 747 | |
1001 | |
|
|
1002 | # @FUNCTION: mysql_pkg_postinst |
|
|
1003 | # @DESCRIPTION: |
|
|
1004 | # Run post-installation tasks: |
|
|
1005 | # create the dir for logfiles if non-existant |
|
|
1006 | # touch the logfiles and secure them |
|
|
1007 | # install scripts |
|
|
1008 | # issue required steps for optional features |
|
|
1009 | # issue deprecation warnings |
| 748 | mysql_pkg_postinst() { |
1010 | mysql_pkg_postinst() { |
| 749 | # Make sure the vars are correctly initialized |
1011 | # Make sure the vars are correctly initialized |
| 750 | mysql_init_vars |
1012 | mysql_init_vars |
| 751 | |
1013 | |
| 752 | # Check FEATURES="collision-protect" before removing this |
1014 | # Check FEATURES="collision-protect" before removing this |
| … | |
… | |
| 763 | for script in \ |
1025 | for script in \ |
| 764 | support-files/my-*.cnf \ |
1026 | support-files/my-*.cnf \ |
| 765 | support-files/magic \ |
1027 | support-files/magic \ |
| 766 | support-files/ndb-config-2-node.ini |
1028 | support-files/ndb-config-2-node.ini |
| 767 | do |
1029 | do |
|
|
1030 | [[ -f "${script}" ]] \ |
| 768 | dodoc "${script}" |
1031 | && dodoc "${script}" |
| 769 | done |
1032 | done |
| 770 | |
1033 | |
| 771 | docinto "scripts" |
1034 | docinto "scripts" |
| 772 | for script in scripts/mysql* ; do |
1035 | for script in scripts/mysql* ; do |
|
|
1036 | [[ -f "${script}" ]] \ |
| 773 | [[ "${script%.sh}" == "${script}" ]] && dodoc "${script}" |
1037 | && [[ "${script%.sh}" == "${script}" ]] \ |
|
|
1038 | && dodoc "${script}" |
| 774 | done |
1039 | done |
| 775 | |
1040 | |
| 776 | einfo |
1041 | einfo |
| 777 | elog "You might want to run:" |
1042 | elog "You might want to run:" |
| 778 | elog "\"emerge --config =${CATEGORY}/${PF}\"" |
1043 | elog "\"emerge --config =${CATEGORY}/${PF}\"" |
| 779 | elog "if this is a new install." |
1044 | elog "if this is a new install." |
| 780 | einfo |
1045 | einfo |
| 781 | fi |
1046 | fi |
| 782 | |
1047 | |
| 783 | if mysql_version_is_at_least "5.1.12" && use pbxt ; then |
1048 | if pbxt_available && use pbxt ; then |
| 784 | # TODO: explain it better |
1049 | # TODO: explain it better |
| 785 | elog " mysql> INSTALL PLUGIN pbxt SONAME 'libpbxt.so';" |
1050 | elog " mysql> INSTALL PLUGIN pbxt SONAME 'libpbxt.so';" |
| 786 | elog " mysql> CREATE TABLE t1 (c1 int, c2 text) ENGINE=pbxt;" |
1051 | elog " mysql> CREATE TABLE t1 (c1 int, c2 text) ENGINE=pbxt;" |
| 787 | elog "if, after that, you cannot start the MySQL server," |
1052 | elog "if, after that, you cannot start the MySQL server," |
| 788 | elog "remove the ${MY_DATADIR}/mysql/plugin.* files, then" |
1053 | elog "remove the ${MY_DATADIR}/mysql/plugin.* files, then" |
| … | |
… | |
| 798 | mysql_check_version_range "4.0 to 5.0.99.99" \ |
1063 | mysql_check_version_range "4.0 to 5.0.99.99" \ |
| 799 | && use berkdb \ |
1064 | && use berkdb \ |
| 800 | && elog "Berkeley DB support is deprecated and will be removed in future versions!" |
1065 | && elog "Berkeley DB support is deprecated and will be removed in future versions!" |
| 801 | } |
1066 | } |
| 802 | |
1067 | |
|
|
1068 | # @FUNCTION: mysql_pkg_config |
|
|
1069 | # @DESCRIPTION: |
|
|
1070 | # Configure mysql environment. |
| 803 | mysql_pkg_config() { |
1071 | mysql_pkg_config() { |
|
|
1072 | local old_MY_DATADIR="${MY_DATADIR}" |
|
|
1073 | |
| 804 | # Make sure the vars are correctly initialized |
1074 | # Make sure the vars are correctly initialized |
| 805 | mysql_init_vars |
1075 | mysql_init_vars |
| 806 | |
1076 | |
| 807 | [[ -z "${MY_DATADIR}" ]] && die "Sorry, unable to find MY_DATADIR" |
1077 | [[ -z "${MY_DATADIR}" ]] && die "Sorry, unable to find MY_DATADIR" |
| 808 | |
1078 | |
| 809 | if built_with_use ${CATEGORY}/${PN} minimal ; then |
1079 | if built_with_use ${CATEGORY}/${PN} minimal ; then |
| 810 | die "Minimal builds do NOT include the MySQL server" |
1080 | die "Minimal builds do NOT include the MySQL server" |
| 811 | fi |
1081 | fi |
| 812 | |
1082 | |
|
|
1083 | if [[ ( -n "${MY_DATADIR}" ) && ( "${MY_DATADIR}" != "${old_MY_DATADIR}" ) ]]; then |
|
|
1084 | local MY_DATADIR_s="$(strip_duplicate_slashes ${ROOT}/${MY_DATADIR})" |
|
|
1085 | local old_MY_DATADIR_s="$(strip_duplicate_slashes ${ROOT}/${old_MY_DATADIR})" |
|
|
1086 | |
|
|
1087 | if [[ -d "${old_MY_DATADIR_s}" ]]; then |
|
|
1088 | if [[ -d "${MY_DATADIR_s}" ]]; then |
|
|
1089 | ewarn "Both ${old_MY_DATADIR_s} and ${MY_DATADIR_s} exist" |
|
|
1090 | ewarn "Attempting to use ${MY_DATADIR_s} and preserving ${old_MY_DATADIR_s}" |
|
|
1091 | else |
|
|
1092 | elog "Moving MY_DATADIR from ${old_MY_DATADIR_s} to ${MY_DATADIR_s}" |
|
|
1093 | mv --strip-trailing-slashes -T "${old_MY_DATADIR_s}" "${MY_DATADIR_s}" \ |
|
|
1094 | || die "Moving MY_DATADIR failed" |
|
|
1095 | fi |
|
|
1096 | else |
|
|
1097 | ewarn "Previous MY_DATADIR (${old_MY_DATADIR_s}) does not exist" |
|
|
1098 | if [[ -d "${MY_DATADIR_s}" ]]; then |
|
|
1099 | ewarn "Attempting to use ${MY_DATADIR_s}" |
|
|
1100 | else |
|
|
1101 | eerror "New MY_DATADIR (${MY_DATADIR_s}) does not exist" |
|
|
1102 | die "Configuration Failed! Please reinstall ${CATEGORY}/${PN}" |
|
|
1103 | fi |
|
|
1104 | fi |
|
|
1105 | fi |
|
|
1106 | |
| 813 | local pwd1="a" |
1107 | local pwd1="a" |
| 814 | local pwd2="b" |
1108 | local pwd2="b" |
|
|
1109 | local MYSQL_ROOT_PASSWORD='' |
| 815 | local maxtry=5 |
1110 | local maxtry=15 |
| 816 | |
1111 | |
| 817 | if [[ -d "${ROOT}/${MY_DATADIR}/mysql" ]] ; then |
1112 | if [[ -d "${ROOT}/${MY_DATADIR}/mysql" ]] ; then |
| 818 | ewarn "You have already a MySQL database in place." |
1113 | ewarn "You have already a MySQL database in place." |
| 819 | ewarn "(${ROOT}/${MY_DATADIR}/*)" |
1114 | ewarn "(${ROOT}/${MY_DATADIR}/*)" |
| 820 | ewarn "Please rename or delete it if you wish to replace it." |
1115 | ewarn "Please rename or delete it if you wish to replace it." |
| 821 | die "MySQL database already exists!" |
1116 | die "MySQL database already exists!" |
| 822 | fi |
1117 | fi |
| 823 | |
1118 | |
| 824 | einfo "Creating the mysql database and setting proper" |
1119 | # Bug #213475 - MySQL _will_ object strenously if your machine is named |
| 825 | einfo "permissions on it ..." |
1120 | # localhost. Also causes weird failures. |
|
|
1121 | [[ "${HOSTNAME}" == "localhost" ]] && die "Your machine must NOT be named localhost" |
| 826 | |
1122 | |
|
|
1123 | if [ -z "${MYSQL_ROOT_PASSWORD}" ]; then |
|
|
1124 | |
| 827 | einfo "Insert a password for the mysql 'root' user" |
1125 | einfo "Please provide a password for the mysql 'root' user now," |
|
|
1126 | einfo "or in the MYSQL_ROOT_PASSWORD env var." |
| 828 | ewarn "Avoid [\"'\\_%] characters in the password" |
1127 | ewarn "Avoid [\"'\\_%] characters in the password" |
| 829 | read -rsp " >" pwd1 ; echo |
1128 | read -rsp " >" pwd1 ; echo |
| 830 | |
1129 | |
| 831 | einfo "Retype the password" |
1130 | einfo "Retype the password" |
| 832 | read -rsp " >" pwd2 ; echo |
1131 | read -rsp " >" pwd2 ; echo |
| 833 | |
1132 | |
| 834 | if [[ "x$pwd1" != "x$pwd2" ]] ; then |
1133 | if [[ "x$pwd1" != "x$pwd2" ]] ; then |
| 835 | die "Passwords are not the same" |
1134 | die "Passwords are not the same" |
|
|
1135 | fi |
|
|
1136 | MYSQL_ROOT_PASSWORD="${pwd1}" |
|
|
1137 | unset pwd1 pwd2 |
| 836 | fi |
1138 | fi |
| 837 | |
1139 | |
| 838 | local options="" |
1140 | local options="" |
| 839 | local sqltmp="$(emktemp)" |
1141 | local sqltmp="$(emktemp)" |
| 840 | |
1142 | |
| … | |
… | |
| 854 | [[ -f "${ROOT}/${MY_DATADIR}/mysql/user.frm" ]] \ |
1156 | [[ -f "${ROOT}/${MY_DATADIR}/mysql/user.frm" ]] \ |
| 855 | || die "MySQL databases not installed" |
1157 | || die "MySQL databases not installed" |
| 856 | chown -R mysql:mysql "${ROOT}/${MY_DATADIR}" 2>/dev/null |
1158 | chown -R mysql:mysql "${ROOT}/${MY_DATADIR}" 2>/dev/null |
| 857 | chmod 0750 "${ROOT}/${MY_DATADIR}" 2>/dev/null |
1159 | chmod 0750 "${ROOT}/${MY_DATADIR}" 2>/dev/null |
| 858 | |
1160 | |
|
|
1161 | # Figure out which options we need to disable to do the setup |
|
|
1162 | helpfile="${TMPDIR}/mysqld-help" |
|
|
1163 | ${ROOT}/usr/sbin/mysqld --verbose --help >"${helpfile}" 2>/dev/null |
|
|
1164 | for opt in grant-tables host-cache name-resolve networking slave-start bdb \ |
|
|
1165 | federated innodb ssl log-bin relay-log slow-query-log external-locking \ |
|
|
1166 | ; do |
|
|
1167 | optexp="--(skip-)?${opt}" optfull="--skip-${opt}" |
|
|
1168 | egrep -sq -- "${optexp}" "${helpfile}" && options="${options} ${optfull}" |
|
|
1169 | done |
|
|
1170 | # But some options changed names |
|
|
1171 | egrep -sq external-locking "${helpfile}" && \ |
|
|
1172 | options="${options/skip-locking/skip-external-locking}" |
|
|
1173 | |
| 859 | if mysql_version_is_at_least "4.1.3" ; then |
1174 | if mysql_version_is_at_least "4.1.3" ; then |
| 860 | options="--skip-ndbcluster" |
|
|
| 861 | |
|
|
| 862 | # Filling timezones, see |
1175 | # Filling timezones, see |
| 863 | # http://dev.mysql.com/doc/mysql/en/time-zone-support.html |
1176 | # http://dev.mysql.com/doc/mysql/en/time-zone-support.html |
| 864 | "${ROOT}/usr/bin/mysql_tzinfo_to_sql" "${ROOT}/usr/share/zoneinfo" > "${sqltmp}" 2>/dev/null |
1177 | "${ROOT}/usr/bin/mysql_tzinfo_to_sql" "${ROOT}/usr/share/zoneinfo" > "${sqltmp}" 2>/dev/null |
| 865 | |
1178 | |
| 866 | if [[ -r "${help_tables}" ]] ; then |
1179 | if [[ -r "${help_tables}" ]] ; then |
| 867 | cat "${help_tables}" >> "${sqltmp}" |
1180 | cat "${help_tables}" >> "${sqltmp}" |
| 868 | fi |
1181 | fi |
| 869 | fi |
1182 | fi |
|
|
1183 | |
|
|
1184 | einfo "Creating the mysql database and setting proper" |
|
|
1185 | einfo "permissions on it ..." |
| 870 | |
1186 | |
| 871 | local socket="${ROOT}/var/run/mysqld/mysqld${RANDOM}.sock" |
1187 | local socket="${ROOT}/var/run/mysqld/mysqld${RANDOM}.sock" |
| 872 | local pidfile="${ROOT}/var/run/mysqld/mysqld${RANDOM}.pid" |
1188 | local pidfile="${ROOT}/var/run/mysqld/mysqld${RANDOM}.pid" |
| 873 | local mysqld="${ROOT}/usr/sbin/mysqld \ |
1189 | local mysqld="${ROOT}/usr/sbin/mysqld \ |
| 874 | ${options} \ |
1190 | ${options} \ |
| 875 | --user=mysql \ |
1191 | --user=mysql \ |
| 876 | --skip-grant-tables \ |
|
|
| 877 | --basedir=${ROOT}/usr \ |
1192 | --basedir=${ROOT}/usr \ |
| 878 | --datadir=${ROOT}/${MY_DATADIR} \ |
1193 | --datadir=${ROOT}/${MY_DATADIR} \ |
| 879 | --skip-innodb \ |
|
|
| 880 | --skip-bdb \ |
|
|
| 881 | --skip-networking \ |
|
|
| 882 | --max_allowed_packet=8M \ |
1194 | --max_allowed_packet=8M \ |
| 883 | --net_buffer_length=16K \ |
1195 | --net_buffer_length=16K \ |
| 884 | --socket=${socket} \ |
1196 | --socket=${socket} \ |
| 885 | --pid-file=${pidfile}" |
1197 | --pid-file=${pidfile}" |
|
|
1198 | #einfo "About to start mysqld: ${mysqld}" |
|
|
1199 | ebegin "Starting mysqld" |
| 886 | ${mysqld} & |
1200 | ${mysqld} & |
|
|
1201 | rc=$? |
| 887 | while ! [[ -S "${socket}" || "${maxtry}" -lt 1 ]] ; do |
1202 | while ! [[ -S "${socket}" || "${maxtry}" -lt 1 ]] ; do |
| 888 | maxtry=$((${maxtry}-1)) |
1203 | maxtry=$((${maxtry}-1)) |
| 889 | echo -n "." |
1204 | echo -n "." |
| 890 | sleep 1 |
1205 | sleep 1 |
| 891 | done |
1206 | done |
|
|
1207 | eend $rc |
| 892 | |
1208 | |
|
|
1209 | if ! [[ -S "${socket}" ]]; then |
|
|
1210 | die "Completely failed to start up mysqld with: ${mysqld}" |
|
|
1211 | fi |
|
|
1212 | |
|
|
1213 | ebegin "Setting root password" |
| 893 | # Do this from memory, as we don't want clear text passwords in temp files |
1214 | # Do this from memory, as we don't want clear text passwords in temp files |
| 894 | local sql="UPDATE mysql.user SET Password = PASSWORD('${pwd1}') WHERE USER='root'" |
1215 | local sql="UPDATE mysql.user SET Password = PASSWORD('${MYSQL_ROOT_PASSWORD}') WHERE USER='root'" |
| 895 | "${ROOT}/usr/bin/mysql" \ |
1216 | "${ROOT}/usr/bin/mysql" \ |
| 896 | --socket=${socket} \ |
1217 | --socket=${socket} \ |
| 897 | -hlocalhost \ |
1218 | -hlocalhost \ |
| 898 | -e "${sql}" |
1219 | -e "${sql}" |
|
|
1220 | eend $? |
| 899 | |
1221 | |
| 900 | einfo "Loading \"zoneinfo\", this step may require a few seconds ..." |
1222 | ebegin "Loading \"zoneinfo\", this step may require a few seconds ..." |
| 901 | |
|
|
| 902 | "${ROOT}/usr/bin/mysql" \ |
1223 | "${ROOT}/usr/bin/mysql" \ |
| 903 | --socket=${socket} \ |
1224 | --socket=${socket} \ |
| 904 | -hlocalhost \ |
1225 | -hlocalhost \ |
| 905 | -uroot \ |
1226 | -uroot \ |
| 906 | -p"${pwd1}" \ |
1227 | -p"${MYSQL_ROOT_PASSWORD}" \ |
| 907 | mysql < "${sqltmp}" |
1228 | mysql < "${sqltmp}" |
|
|
1229 | rc=$? |
|
|
1230 | eend $? |
|
|
1231 | [ $rc -ne 0 ] && ewarn "Failed to load zoneinfo!" |
| 908 | |
1232 | |
| 909 | # Stop the server and cleanup |
1233 | # Stop the server and cleanup |
|
|
1234 | einfo "Stopping the server ..." |
| 910 | kill $(< "${pidfile}" ) |
1235 | kill $(< "${pidfile}" ) |
| 911 | rm -f "${sqltmp}" |
1236 | rm -f "${sqltmp}" |
| 912 | einfo "Stopping the server ..." |
|
|
| 913 | wait %1 |
1237 | wait %1 |
| 914 | einfo "Done" |
1238 | einfo "Done" |
| 915 | } |
1239 | } |
| 916 | |
1240 | |
|
|
1241 | # @FUNCTION: mysql_pkg_postrm |
|
|
1242 | # @DESCRIPTION: |
|
|
1243 | # Remove mysql symlinks. |
| 917 | mysql_pkg_postrm() { |
1244 | mysql_pkg_postrm() { |
| 918 | : # mysql_lib_symlinks "${D}" |
1245 | : # mysql_lib_symlinks "${D}" |
| 919 | } |
1246 | } |