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