| 1 | # Copyright 1999-2009 Gentoo Foundation |
1 | # Copyright 1999-2012 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.135 2010/03/03 23:57:13 robbat2 Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/mysql.eclass,v 1.175 2012/09/27 16:35:41 axs Exp $ |
| 4 | |
4 | |
| 5 | # @ECLASS: mysql.eclass |
5 | # @ECLASS: mysql.eclass |
| 6 | # @MAINTAINER: |
6 | # @MAINTAINER: |
| 7 | # Author: Francesco Riosa (Retired) <vivo@gentoo.org> |
|
|
| 8 | # Maintainers: MySQL Team <mysql-bugs@gentoo.org> |
7 | # MySQL Team <mysql-bugs@gentoo.org> |
| 9 | # - Luca Longinotti <chtekk@gentoo.org> |
8 | # Luca Longinotti <chtekk@gentoo.org> |
| 10 | # - Robin H. Johnson <robbat2@gentoo.org> |
9 | # Robin H. Johnson <robbat2@gentoo.org> |
|
|
10 | # @AUTHOR: |
|
|
11 | # Francesco Riosa (Retired) <vivo@gentoo.org> |
| 11 | # @BLURB: This eclass provides most of the functions for mysql ebuilds |
12 | # @BLURB: This eclass provides most of the functions for mysql ebuilds |
| 12 | # @DESCRIPTION: |
13 | # @DESCRIPTION: |
| 13 | # The mysql.eclass provides almost all the code to build the mysql ebuilds |
14 | # 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 | # including the src_unpack, src_prepare, src_configure, src_compile, |
| 15 | # scr_install, pkg_preinst, pkg_postinst, pkg_config and pkg_postrm |
16 | # scr_install, pkg_preinst, pkg_postinst, pkg_config and pkg_postrm |
| 16 | # phase hooks. |
17 | # phase hooks. |
| 17 | |
18 | |
| 18 | WANT_AUTOCONF="latest" |
19 | WANT_AUTOCONF="latest" |
| 19 | WANT_AUTOMAKE="latest" |
20 | WANT_AUTOMAKE="latest" |
| 20 | |
21 | |
| 21 | inherit eutils flag-o-matic gnuconfig autotools mysql_fx versionator toolchain-funcs |
22 | inherit eutils flag-o-matic gnuconfig autotools multilib mysql_fx versionator toolchain-funcs |
| 22 | |
23 | |
| 23 | # Shorten the path because the socket path length must be shorter than 107 chars |
24 | # Shorten the path because the socket path length must be shorter than 107 chars |
| 24 | # and we will run a mysql server during test phase |
25 | # and we will run a mysql server during test phase |
| 25 | S="${WORKDIR}/mysql" |
26 | S="${WORKDIR}/mysql" |
| 26 | |
27 | |
| 27 | [[ "${MY_EXTRAS_VER}" == "latest" ]] && MY_EXTRAS_VER="20090228-0714Z" |
28 | [[ "${MY_EXTRAS_VER}" == "latest" ]] && MY_EXTRAS_VER="20090228-0714Z" |
| 28 | if [[ "${MY_EXTRAS_VER}" == "live" ]]; then |
29 | if [[ "${MY_EXTRAS_VER}" == "live" ]]; then |
| 29 | EGIT_PROJECT=mysql-extras |
30 | EGIT_PROJECT=mysql-extras |
| 30 | EGIT_REPO_URI="git://git.overlays.gentoo.org/proj/mysql-extras.git" |
31 | EGIT_REPO_URI="git://git.overlays.gentoo.org/proj/mysql-extras.git" |
| 31 | inherit git |
32 | inherit git-2 |
| 32 | fi |
33 | fi |
| 33 | |
34 | |
| 34 | case "${EAPI:-0}" in |
35 | case "${EAPI:-0}" in |
| 35 | 2) |
36 | 2|3|4|5) |
| 36 | EXPORT_FUNCTIONS pkg_setup \ |
37 | EXPORT_FUNCTIONS pkg_setup \ |
| 37 | src_unpack src_prepare \ |
38 | src_unpack src_prepare \ |
| 38 | src_configure src_compile \ |
39 | src_configure src_compile \ |
| 39 | src_install \ |
40 | src_install \ |
| 40 | pkg_preinst pkg_postinst \ |
41 | pkg_preinst pkg_postinst \ |
| … | |
… | |
| 51 | ;; |
52 | ;; |
| 52 | *) |
53 | *) |
| 53 | die "Unsupported EAPI: ${EAPI}" ;; |
54 | die "Unsupported EAPI: ${EAPI}" ;; |
| 54 | esac |
55 | esac |
| 55 | |
56 | |
|
|
57 | |
|
|
58 | # @ECLASS-VARIABLE: MYSQL_PV_MAJOR |
|
|
59 | # @DESCRIPTION: |
|
|
60 | # Upstream MySQL considers the first two parts of the version number to be the |
|
|
61 | # major version. Upgrades that change major version should always run |
|
|
62 | # mysql_upgrade. |
|
|
63 | MYSQL_PV_MAJOR="$(get_version_component_range 1-2 ${PV})" |
|
|
64 | |
|
|
65 | # Cluster is a special case... |
|
|
66 | if [[ "${PN}" == "mysql-cluster" ]]; then |
|
|
67 | case $PV in |
|
|
68 | 6.1*|7.0*|7.1*) MYSQL_PV_MAJOR=5.1 ;; |
|
|
69 | esac |
|
|
70 | fi |
|
|
71 | |
|
|
72 | |
| 56 | # @ECLASS-VARIABLE: MYSQL_VERSION_ID |
73 | # @ECLASS-VARIABLE: MYSQL_VERSION_ID |
| 57 | # @DESCRIPTION: |
74 | # @DESCRIPTION: |
| 58 | # MYSQL_VERSION_ID will be: |
75 | # MYSQL_VERSION_ID will be: |
| 59 | # major * 10e6 + minor * 10e4 + micro * 10e2 + gentoo revision number, all [0..99] |
76 | # major * 10e6 + minor * 10e4 + micro * 10e2 + gentoo revision number, all [0..99] |
| 60 | # This is an important part, because many of the choices the MySQL ebuild will do |
77 | # This is an important part, because many of the choices the MySQL ebuild will do |
| … | |
… | |
| 77 | # @DESCRIPTION: |
94 | # @DESCRIPTION: |
| 78 | # Specifiy if community features are available. Possible values are 1 (yes) |
95 | # Specifiy if community features are available. Possible values are 1 (yes) |
| 79 | # and 0 (no). |
96 | # and 0 (no). |
| 80 | # Community features are available in mysql-community |
97 | # Community features are available in mysql-community |
| 81 | # AND in the re-merged mysql-5.0.82 and newer |
98 | # AND in the re-merged mysql-5.0.82 and newer |
| 82 | if [ "${PN}" == "mysql-community" ]; then |
99 | if [ "${PN}" == "mysql-community" -o "${PN}" == "mariadb" ]; then |
| 83 | MYSQL_COMMUNITY_FEATURES=1 |
100 | MYSQL_COMMUNITY_FEATURES=1 |
| 84 | elif [ "${PV#5.0}" != "${PV}" ] && mysql_version_is_at_least "5.0.82"; then |
101 | elif [ "${PV#5.0}" != "${PV}" ] && mysql_version_is_at_least "5.0.82"; then |
| 85 | MYSQL_COMMUNITY_FEATURES=1 |
102 | MYSQL_COMMUNITY_FEATURES=1 |
| 86 | elif [ "${PV#5.1}" != "${PV}" ] && mysql_version_is_at_least "5.1.28"; then |
103 | elif [ "${PV#5.1}" != "${PV}" ] && mysql_version_is_at_least "5.1.28"; then |
| 87 | MYSQL_COMMUNITY_FEATURES=1 |
104 | MYSQL_COMMUNITY_FEATURES=1 |
| 88 | elif [ "${PV#5.4}" != "${PV}" ] ; then |
105 | elif [ "${PV#5.4}" != "${PV}" ] ; then |
| 89 | MYSQL_COMMUNITY_FEATURES=1 |
106 | MYSQL_COMMUNITY_FEATURES=1 |
| 90 | elif [ "${PV#5.5}" != "${PV}" ] ; then |
107 | elif [ "${PV#5.5}" != "${PV}" ] ; then |
| 91 | MYSQL_COMMUNITY_FEATURES=1 |
108 | MYSQL_COMMUNITY_FEATURES=1 |
| 92 | elif [ "${PV#6.0}" != "${PV}" ] ; then |
109 | elif [ "${PV#6}" != "${PV}" ] ; then |
|
|
110 | MYSQL_COMMUNITY_FEATURES=1 |
|
|
111 | elif [ "${PV#7}" != "${PV}" ] ; then |
| 93 | MYSQL_COMMUNITY_FEATURES=1 |
112 | MYSQL_COMMUNITY_FEATURES=1 |
| 94 | else |
113 | else |
| 95 | MYSQL_COMMUNITY_FEATURES=0 |
114 | MYSQL_COMMUNITY_FEATURES=0 |
| 96 | fi |
115 | fi |
| 97 | |
116 | |
| … | |
… | |
| 106 | PERCONA_VER="${PERCONA_VER}" |
125 | PERCONA_VER="${PERCONA_VER}" |
| 107 | |
126 | |
| 108 | # Be warned, *DEPEND are version-dependant |
127 | # Be warned, *DEPEND are version-dependant |
| 109 | # These are used for both runtime and compiletime |
128 | # These are used for both runtime and compiletime |
| 110 | DEPEND="ssl? ( >=dev-libs/openssl-0.9.6d ) |
129 | DEPEND="ssl? ( >=dev-libs/openssl-0.9.6d ) |
| 111 | userland_GNU? ( sys-process/procps ) |
130 | kernel_linux? ( sys-process/procps ) |
| 112 | >=sys-apps/sed-4 |
131 | >=sys-apps/sed-4 |
| 113 | >=sys-apps/texinfo-4.7-r1 |
132 | >=sys-apps/texinfo-4.7-r1 |
| 114 | >=sys-libs/readline-4.1 |
133 | >=sys-libs/readline-4.1 |
| 115 | >=sys-libs/zlib-1.2.3" |
134 | >=sys-libs/zlib-1.2.3" |
| 116 | |
135 | |
|
|
136 | [[ "${PN}" == "mariadb" ]] \ |
|
|
137 | && DEPEND="${DEPEND} libevent? ( >=dev-libs/libevent-1.4 )" |
|
|
138 | |
| 117 | # Having different flavours at the same time is not a good idea |
139 | # Having different flavours at the same time is not a good idea |
| 118 | for i in "" "-community" ; do |
140 | for i in "mysql" "mysql-community" "mysql-cluster" "mariadb" ; do |
| 119 | [[ "${i}" == ${PN#mysql} ]] || |
141 | [[ "${i}" == ${PN} ]] || |
| 120 | DEPEND="${DEPEND} !dev-db/mysql${i}" |
142 | DEPEND="${DEPEND} !dev-db/${i}" |
| 121 | done |
143 | done |
| 122 | |
144 | |
|
|
145 | # prefix: first need to implement something for #196294 |
| 123 | RDEPEND="${DEPEND} |
146 | RDEPEND="${DEPEND} |
| 124 | !minimal? ( dev-db/mysql-init-scripts ) |
147 | !minimal? ( !prefix? ( dev-db/mysql-init-scripts ) ) |
| 125 | selinux? ( sec-policy/selinux-mysql )" |
148 | selinux? ( sec-policy/selinux-mysql )" |
|
|
149 | |
|
|
150 | DEPEND="${DEPEND} |
|
|
151 | virtual/yacc" |
|
|
152 | |
|
|
153 | if [ "${EAPI:-0}" = "2" ]; then |
|
|
154 | DEPEND="${DEPEND} static? ( sys-libs/ncurses[static-libs] )" |
|
|
155 | fi |
| 126 | |
156 | |
| 127 | # compile-time-only |
157 | # compile-time-only |
| 128 | mysql_version_is_at_least "5.1" \ |
158 | mysql_version_is_at_least "5.1" \ |
| 129 | || DEPEND="${DEPEND} berkdb? ( sys-apps/ed )" |
159 | || DEPEND="${DEPEND} berkdb? ( sys-apps/ed )" |
| 130 | |
160 | |
| 131 | # compile-time-only |
161 | # compile-time-only |
| 132 | mysql_version_is_at_least "5.1.12" \ |
162 | mysql_version_is_at_least "5.1.12" \ |
| 133 | && DEPEND="${DEPEND} >=dev-util/cmake-2.4.3" |
163 | && DEPEND="${DEPEND} >=dev-util/cmake-2.4.3" |
| 134 | |
164 | |
|
|
165 | [[ "${PN}" == "mariadb" ]] \ |
|
|
166 | && mysql_version_is_at_least "5.2" \ |
|
|
167 | && DEPEND="${DEPEND} oqgraph? ( >=dev-libs/boost-1.40.0 )" |
|
|
168 | #SphinxSE is included but is not available in 5.2.4 due to a missing plug.in file |
|
|
169 | # sphinx? ( app-misc/sphinx )" |
|
|
170 | |
| 135 | # dev-perl/DBD-mysql is needed by some scripts installed by MySQL |
171 | # dev-perl/DBD-mysql is needed by some scripts installed by MySQL |
| 136 | PDEPEND="perl? ( >=dev-perl/DBD-mysql-2.9004 )" |
172 | PDEPEND="perl? ( >=dev-perl/DBD-mysql-2.9004 )" |
| 137 | |
173 | |
| 138 | # For other stuff to bring us in |
174 | # For other stuff to bring us in |
| 139 | PDEPEND="${PDEPEND} =virtual/mysql-$(get_version_component_range 1-2 ${PV})" |
175 | PDEPEND="${PDEPEND} =virtual/mysql-${MYSQL_PV_MAJOR}" |
| 140 | |
176 | |
| 141 | # Work out the default SERVER_URI correctly |
177 | # Work out the default SERVER_URI correctly |
| 142 | if [ -z "${SERVER_URI}" ]; then |
178 | if [ -z "${SERVER_URI}" ]; then |
| 143 | [ -z "${MY_PV}" ] && MY_PV="${PV//_/-}" |
179 | [ -z "${MY_PV}" ] && MY_PV="${PV//_/-}" |
|
|
180 | if [ "${PN}" == "mariadb" ]; then |
|
|
181 | MARIA_FULL_PV="$(replace_version_separator 3 '-' ${PV})" |
|
|
182 | MARIA_FULL_P="${PN}-${MARIA_FULL_PV}" |
|
|
183 | SERVER_URI=" |
|
|
184 | http://ftp.osuosl.org/pub/mariadb/${MARIA_FULL_P}/kvm-tarbake-jaunty-x86/${MARIA_FULL_P}.tar.gz |
|
|
185 | http://ftp.rediris.es/mirror/MariaDB/${MARIA_FULL_P}/kvm-tarbake-jaunty-x86/${MARIA_FULL_P}.tar.gz |
|
|
186 | http://maria.llarian.net/download/${MARIA_FULL_P}/kvm-tarbake-jaunty-x86/${MARIA_FULL_P}.tar.gz |
|
|
187 | http://launchpad.net/maria/${MYSQL_PV_MAJOR}/ongoing/+download/${MARIA_FULL_P}.tar.gz |
|
|
188 | http://mirrors.fe.up.pt/pub/${PN}/${MARIA_FULL_P}/kvm-tarbake-jaunty-x86/${MARIA_FULL_P}.tar.gz |
|
|
189 | http://ftp-stud.hs-esslingen.de/pub/Mirrors/${PN}/${MARIA_FULL_P}/kvm-tarbake-jaunty-x86/${MARIA_FULL_P}.tar.gz |
|
|
190 | " |
| 144 | # The community build is on the mirrors |
191 | # The community and cluster builds are on the mirrors |
| 145 | if [ "${MYSQL_COMMUNITY_FEATURES}" == "1" ]; then |
192 | elif [[ "${MYSQL_COMMUNITY_FEATURES}" == "1" || ${PN} == "mysql-cluster" ]] ; then |
| 146 | SERVER_URI="mirror://mysql/Downloads/MySQL-${PV%.*}/mysql-${MY_PV}.tar.gz" |
193 | if [[ "${PN}" == "mysql-cluster" ]] ; then |
|
|
194 | URI_DIR="MySQL-Cluster" |
|
|
195 | URI_FILE="mysql-cluster-gpl" |
|
|
196 | else |
|
|
197 | URI_DIR="MySQL" |
|
|
198 | URI_FILE="mysql" |
|
|
199 | fi |
|
|
200 | URI_A="${URI_FILE}-${MY_PV}.tar.gz" |
|
|
201 | MIRROR_PV=$(get_version_component_range 1-2 ${PV}) |
|
|
202 | # Recently upstream switched to an archive site, and not on mirrors |
|
|
203 | SERVER_URI="http://downloads.mysql.com/archives/${URI_FILE}-${MIRROR_PV}/${URI_A} |
|
|
204 | mirror://mysql/Downloads/${URI_DIR}-${PV%.*}/${URI_A}" |
| 147 | # The (old) enterprise source is on the primary site only |
205 | # The (old) enterprise source is on the primary site only |
| 148 | elif [ "${PN}" == "mysql" ]; then |
206 | elif [ "${PN}" == "mysql" ]; then |
| 149 | SERVER_URI="ftp://ftp.mysql.com/pub/mysql/src/mysql-${MY_PV}.tar.gz" |
207 | SERVER_URI="ftp://ftp.mysql.com/pub/mysql/src/mysql-${MY_PV}.tar.gz" |
| 150 | fi |
208 | fi |
| 151 | fi |
209 | fi |
| … | |
… | |
| 160 | http://g3nt8.org/patches/mysql-extras-${MY_EXTRAS_VER}.tar.bz2 |
218 | http://g3nt8.org/patches/mysql-extras-${MY_EXTRAS_VER}.tar.bz2 |
| 161 | http://dev.gentoo.org/~robbat2/distfiles/mysql-extras-${MY_EXTRAS_VER}.tar.bz2" |
219 | http://dev.gentoo.org/~robbat2/distfiles/mysql-extras-${MY_EXTRAS_VER}.tar.bz2" |
| 162 | |
220 | |
| 163 | DESCRIPTION="A fast, multi-threaded, multi-user SQL database server." |
221 | DESCRIPTION="A fast, multi-threaded, multi-user SQL database server." |
| 164 | HOMEPAGE="http://www.mysql.com/" |
222 | HOMEPAGE="http://www.mysql.com/" |
|
|
223 | if [[ "${PN}" == "mariadb" ]]; then |
|
|
224 | HOMEPAGE="http://askmonty.org/" |
|
|
225 | DESCRIPTION="MariaDB is a MySQL fork with 3rd-party patches and additional storage engines merged." |
|
|
226 | fi |
|
|
227 | if [[ "${PN}" == "mysql-community" ]]; then |
|
|
228 | DESCRIPTION="${DESCRIPTION} (obsolete, move to dev-db/mysql)" |
|
|
229 | fi |
| 165 | LICENSE="GPL-2" |
230 | LICENSE="GPL-2" |
| 166 | SLOT="0" |
231 | SLOT="0" |
| 167 | IUSE="big-tables debug embedded minimal ${IUSE_DEFAULT_ON}perl selinux ssl static test" |
232 | IUSE="big-tables debug embedded minimal ${IUSE_DEFAULT_ON}perl selinux ssl static test" |
| 168 | |
233 | |
| 169 | mysql_version_is_at_least "4.1" \ |
234 | mysql_version_is_at_least "4.1" \ |
| 170 | && IUSE="${IUSE} latin1" |
235 | && IUSE="${IUSE} latin1" |
| 171 | |
236 | |
| 172 | mysql_version_is_at_least "4.1.3" \ |
237 | if mysql_version_is_at_least "4.1.3" ; then |
| 173 | && IUSE="${IUSE} cluster extraengine" |
238 | IUSE="${IUSE} extraengine" |
|
|
239 | if [[ "${PN}" != "mysql-cluster" ]] ; then |
|
|
240 | IUSE="${IUSE} cluster" |
|
|
241 | fi |
|
|
242 | fi |
| 174 | |
243 | |
| 175 | mysql_version_is_at_least "5.0" \ |
244 | mysql_version_is_at_least "5.0" \ |
| 176 | || IUSE="${IUSE} raid" |
245 | || IUSE="${IUSE} raid" |
| 177 | |
246 | |
| 178 | mysql_version_is_at_least "5.0.18" \ |
247 | mysql_version_is_at_least "5.0.18" \ |
| … | |
… | |
| 182 | || IUSE="${IUSE} berkdb" |
251 | || IUSE="${IUSE} berkdb" |
| 183 | |
252 | |
| 184 | [ "${MYSQL_COMMUNITY_FEATURES}" == "1" ] \ |
253 | [ "${MYSQL_COMMUNITY_FEATURES}" == "1" ] \ |
| 185 | && IUSE="${IUSE} ${IUSE_DEFAULT_ON}community profiling" |
254 | && IUSE="${IUSE} ${IUSE_DEFAULT_ON}community profiling" |
| 186 | |
255 | |
| 187 | # PBXT engine |
256 | [[ "${PN}" == "mariadb" ]] \ |
|
|
257 | && IUSE="${IUSE} libevent" |
|
|
258 | |
|
|
259 | [[ "${PN}" == "mariadb" ]] \ |
|
|
260 | && mysql_version_is_at_least "5.2" \ |
|
|
261 | && IUSE="${IUSE} oqgraph" |
|
|
262 | #SphinxSE is included but is not available in 5.2.4 due to a missing plug.in file |
|
|
263 | #&& IUSE="${IUSE} oqgraph sphinx" |
|
|
264 | |
|
|
265 | # MariaDB has integrated PBXT |
|
|
266 | # PBXT_VERSION means that we have a PBXT patch for this PV |
|
|
267 | # PBXT was only introduced after 5.1.12 |
|
|
268 | pbxt_patch_available() { |
|
|
269 | [[ "${PN}" != "mariadb" ]] \ |
| 188 | mysql_version_is_at_least "5.1.12" \ |
270 | && mysql_version_is_at_least "5.1.12" \ |
| 189 | && [[ -n "${PBXT_VERSION}" ]] \ |
271 | && [[ -n "${PBXT_VERSION}" ]] |
|
|
272 | return $? |
|
|
273 | } |
|
|
274 | |
|
|
275 | pbxt_available() { |
|
|
276 | pbxt_patch_available || [[ "${PN}" == "mariadb" ]] |
|
|
277 | return $? |
|
|
278 | } |
|
|
279 | |
|
|
280 | # Get the percona tarball if XTRADB_VER and PERCONA_VER are both set |
|
|
281 | # MariaDB has integrated XtraDB |
|
|
282 | # XTRADB_VERS means that we have a XTRADB patch for this PV |
|
|
283 | # XTRADB was only introduced after 5.1.26 |
|
|
284 | xtradb_patch_available() { |
|
|
285 | [[ "${PN}" != "mariadb" ]] \ |
|
|
286 | && mysql_version_is_at_least "5.1.26" \ |
|
|
287 | && [[ -n "${XTRADB_VER}" && -n "${PERCONA_VER}" ]] |
|
|
288 | return $? |
|
|
289 | } |
|
|
290 | |
|
|
291 | |
|
|
292 | pbxt_patch_available \ |
| 190 | && PBXT_P="pbxt-${PBXT_VERSION}" \ |
293 | && PBXT_P="pbxt-${PBXT_VERSION}" \ |
| 191 | && PBXT_SRC_URI="http://www.primebase.org/download/${PBXT_P}.tar.gz mirror://sourceforge/pbxt/${PBXT_P}.tar.gz" \ |
294 | && PBXT_SRC_URI="http://www.primebase.org/download/${PBXT_P}.tar.gz mirror://sourceforge/pbxt/${PBXT_P}.tar.gz" \ |
| 192 | && SRC_URI="${SRC_URI} pbxt? ( ${PBXT_SRC_URI} )" \ |
295 | && SRC_URI="${SRC_URI} pbxt? ( ${PBXT_SRC_URI} )" \ |
|
|
296 | |
|
|
297 | # PBXT_NEWSTYLE means pbxt is in storage/ and gets enabled as other plugins |
|
|
298 | # vs. built outside the dir |
|
|
299 | pbxt_available \ |
| 193 | && IUSE="${IUSE} pbxt" |
300 | && IUSE="${IUSE} pbxt" \ |
| 194 | |
|
|
| 195 | # Get the percona tarball if XTRADB_VER and PERCONA_VER are both set |
|
|
| 196 | mysql_version_is_at_least "5.1.26" \ |
301 | && mysql_version_is_at_least "5.1.40" \ |
| 197 | && [[ -n "${XTRADB_VER}" && -n "${PERCONA_VER}" ]] \ |
302 | && PBXT_NEWSTYLE=1 |
|
|
303 | |
|
|
304 | xtradb_patch_available \ |
| 198 | && XTRADB_P="percona-xtradb-${XTRADB_VER}" \ |
305 | && XTRADB_P="percona-xtradb-${XTRADB_VER}" \ |
| 199 | && XTRADB_SRC_URI_COMMON="${PERCONA_VER}/source/${XTRADB_P}.tar.gz" \ |
306 | && XTRADB_SRC_URI_COMMON="${PERCONA_VER}/source/${XTRADB_P}.tar.gz" \ |
| 200 | && XTRADB_SRC_URI1="http://www.percona.com/percona-builds/xtradb/${XTRADB_SRC_URI_COMMON}" \ |
307 | && XTRADB_SRC_B1="http://www.percona.com/" \ |
|
|
308 | && XTRADB_SRC_B2="${XTRADB_SRC_B1}/percona-builds/" \ |
|
|
309 | && XTRADB_SRC_URI1="${XTRADB_SRC_B2}/Percona-Server/Percona-Server-${XTRADB_SRC_URI_COMMON}" \ |
| 201 | && XTRADB_SRC_URI2="http://www.percona.com/${PN}/xtradb/${XTRADB_SRC_URI_COMMON}" \ |
310 | && XTRADB_SRC_URI2="${XTRADB_SRC_B2}/xtradb/${XTRADB_SRC_URI_COMMON}" \ |
|
|
311 | && XTRADB_SRC_URI3="${XTRADB_SRC_B1}/${PN}/xtradb/${XTRADB_SRC_URI_COMMON}" \ |
| 202 | && SRC_URI="${SRC_URI} xtradb? ( ${XTRADB_SRC_URI1} ${XTRADB_SRC_URI2} )" \ |
312 | && SRC_URI="${SRC_URI} xtradb? ( ${XTRADB_SRC_URI1} ${XTRADB_SRC_URI2} ${XTRADB_SRC_URI3} )" \ |
| 203 | && IUSE="${IUSE} xtradb" |
313 | && IUSE="${IUSE} xtradb" |
| 204 | |
314 | |
| 205 | # |
315 | # |
| 206 | # HELPER FUNCTIONS: |
316 | # HELPER FUNCTIONS: |
| 207 | # |
317 | # |
| … | |
… | |
| 212 | mysql_disable_test() { |
322 | mysql_disable_test() { |
| 213 | local rawtestname testname testsuite reason mysql_disable_file |
323 | local rawtestname testname testsuite reason mysql_disable_file |
| 214 | rawtestname="${1}" ; shift |
324 | rawtestname="${1}" ; shift |
| 215 | reason="${@}" |
325 | reason="${@}" |
| 216 | ewarn "test '${rawtestname}' disabled: '${reason}'" |
326 | ewarn "test '${rawtestname}' disabled: '${reason}'" |
| 217 | |
327 | |
| 218 | testsuite="${rawtestname/.*}" |
328 | testsuite="${rawtestname/.*}" |
| 219 | testname="${rawtestname/*.}" |
329 | testname="${rawtestname/*.}" |
| 220 | mysql_disable_file="${S}/mysql-test/t/disabled.def" |
330 | mysql_disable_file="${S}/mysql-test/t/disabled.def" |
| 221 | #einfo "rawtestname=${rawtestname} testname=${testname} testsuite=${testsuite}" |
331 | #einfo "rawtestname=${rawtestname} testname=${testname} testsuite=${testsuite}" |
| 222 | echo ${testname} : ${reason} >> "${mysql_disable_file}" |
332 | echo ${testname} : ${reason} >> "${mysql_disable_file}" |
| … | |
… | |
| 252 | # @DESCRIPTION: |
362 | # @DESCRIPTION: |
| 253 | # void mysql_init_vars() |
363 | # void mysql_init_vars() |
| 254 | # Initialize global variables |
364 | # Initialize global variables |
| 255 | # 2005-11-19 <vivo@gentoo.org> |
365 | # 2005-11-19 <vivo@gentoo.org> |
| 256 | mysql_init_vars() { |
366 | mysql_init_vars() { |
| 257 | MY_SHAREDSTATEDIR=${MY_SHAREDSTATEDIR="/usr/share/mysql"} |
367 | MY_SHAREDSTATEDIR=${MY_SHAREDSTATEDIR="${EPREFIX}/usr/share/mysql"} |
| 258 | MY_SYSCONFDIR=${MY_SYSCONFDIR="/etc/mysql"} |
368 | MY_SYSCONFDIR=${MY_SYSCONFDIR="${EPREFIX}/etc/mysql"} |
| 259 | MY_LIBDIR=${MY_LIBDIR="/usr/$(get_libdir)/mysql"} |
369 | MY_LIBDIR=${MY_LIBDIR="${EPREFIX}/usr/$(get_libdir)/mysql"} |
| 260 | MY_LOCALSTATEDIR=${MY_LOCALSTATEDIR="/var/lib/mysql"} |
370 | MY_LOCALSTATEDIR=${MY_LOCALSTATEDIR="${EPREFIX}/var/lib/mysql"} |
| 261 | MY_LOGDIR=${MY_LOGDIR="/var/log/mysql"} |
371 | MY_LOGDIR=${MY_LOGDIR="${EPREFIX}/var/log/mysql"} |
| 262 | MY_INCLUDEDIR=${MY_INCLUDEDIR="/usr/include/mysql"} |
372 | MY_INCLUDEDIR=${MY_INCLUDEDIR="${EPREFIX}/usr/include/mysql"} |
| 263 | |
373 | |
| 264 | if [[ -z "${MY_DATADIR}" ]] ; then |
374 | if [[ -z "${MY_DATADIR}" ]] ; then |
| 265 | MY_DATADIR="" |
375 | MY_DATADIR="" |
| 266 | if [[ -f "${MY_SYSCONFDIR}/my.cnf" ]] ; then |
376 | if [[ -f ${MY_SYSCONFDIR}/my.cnf ]] ; then |
| 267 | MY_DATADIR=`"my_print_defaults" mysqld 2>/dev/null \ |
377 | MY_DATADIR=`"my_print_defaults" mysqld 2>/dev/null \ |
| 268 | | sed -ne '/datadir/s|^--datadir=||p' \ |
378 | | sed -ne '/datadir/s|^--datadir=||p' \ |
| 269 | | tail -n1` |
379 | | tail -n1` |
| 270 | if [[ -z "${MY_DATADIR}" ]] ; then |
380 | if [[ -z "${MY_DATADIR}" ]] ; then |
| 271 | MY_DATADIR=`grep ^datadir "${MY_SYSCONFDIR}/my.cnf" \ |
381 | MY_DATADIR=`grep ^datadir ${MY_SYSCONFDIR}/my.cnf \ |
| 272 | | sed -e 's/.*=\s*//' \ |
382 | | sed -e 's/.*=\s*//' \ |
| 273 | | tail -n1` |
383 | | tail -n1` |
| 274 | fi |
384 | fi |
| 275 | fi |
385 | fi |
| 276 | if [[ -z "${MY_DATADIR}" ]] ; then |
386 | if [[ -z "${MY_DATADIR}" ]] ; then |
| … | |
… | |
| 304 | MY_DATADIR="${new_MY_DATADIR}" |
414 | MY_DATADIR="${new_MY_DATADIR}" |
| 305 | fi |
415 | fi |
| 306 | fi |
416 | fi |
| 307 | fi |
417 | fi |
| 308 | |
418 | |
|
|
419 | if [ "${MY_SOURCEDIR:-unset}" == "unset" ]; then |
| 309 | MY_SOURCEDIR=${SERVER_URI##*/} |
420 | MY_SOURCEDIR=${SERVER_URI##*/} |
| 310 | MY_SOURCEDIR=${MY_SOURCEDIR%.tar*} |
421 | MY_SOURCEDIR=${MY_SOURCEDIR%.tar*} |
|
|
422 | fi |
| 311 | |
423 | |
| 312 | export MY_SHAREDSTATEDIR MY_SYSCONFDIR |
424 | export MY_SHAREDSTATEDIR MY_SYSCONFDIR |
| 313 | export MY_LIBDIR MY_LOCALSTATEDIR MY_LOGDIR |
425 | export MY_LIBDIR MY_LOCALSTATEDIR MY_LOGDIR |
| 314 | export MY_INCLUDEDIR MY_DATADIR MY_SOURCEDIR |
426 | export MY_INCLUDEDIR MY_DATADIR MY_SOURCEDIR |
| 315 | } |
427 | } |
| … | |
… | |
| 346 | myconf="${myconf} $(use_with big-tables)" |
458 | myconf="${myconf} $(use_with big-tables)" |
| 347 | myconf="${myconf} --enable-local-infile" |
459 | myconf="${myconf} --enable-local-infile" |
| 348 | myconf="${myconf} --with-extra-charsets=all" |
460 | myconf="${myconf} --with-extra-charsets=all" |
| 349 | myconf="${myconf} --with-mysqld-user=mysql" |
461 | myconf="${myconf} --with-mysqld-user=mysql" |
| 350 | myconf="${myconf} --with-server" |
462 | myconf="${myconf} --with-server" |
| 351 | myconf="${myconf} --with-unix-socket-path=/var/run/mysqld/mysqld.sock" |
463 | myconf="${myconf} --with-unix-socket-path=${EPREFIX}/var/run/mysqld/mysqld.sock" |
| 352 | myconf="${myconf} --without-libwrap" |
464 | myconf="${myconf} --without-libwrap" |
| 353 | |
465 | |
| 354 | if use static ; then |
466 | if use static ; then |
| 355 | myconf="${myconf} --with-mysqld-ldflags=-all-static" |
467 | myconf="${myconf} --with-mysqld-ldflags=-all-static" |
| 356 | myconf="${myconf} --with-client-ldflags=-all-static" |
468 | myconf="${myconf} --with-client-ldflags=-all-static" |
| … | |
… | |
| 362 | if use debug ; then |
474 | if use debug ; then |
| 363 | myconf="${myconf} --with-debug=full" |
475 | myconf="${myconf} --with-debug=full" |
| 364 | else |
476 | else |
| 365 | myconf="${myconf} --without-debug" |
477 | myconf="${myconf} --without-debug" |
| 366 | mysql_version_is_at_least "4.1.3" \ |
478 | mysql_version_is_at_least "4.1.3" \ |
| 367 | && use cluster \ |
479 | && ( use cluster || [[ "${PN}" == "mysql-cluster" ]] ) \ |
| 368 | && myconf="${myconf} --without-ndb-debug" |
480 | && myconf="${myconf} --without-ndb-debug" |
| 369 | fi |
481 | fi |
| 370 | |
482 | |
| 371 | if [ -n "${MYSQL_DEFAULT_CHARSET}" -a -n "${MYSQL_DEFAULT_COLLATION}" ]; then |
483 | if [ -n "${MYSQL_DEFAULT_CHARSET}" -a -n "${MYSQL_DEFAULT_COLLATION}" ]; then |
| 372 | ewarn "You are using a custom charset of ${MYSQL_DEFAULT_CHARSET}" |
484 | ewarn "You are using a custom charset of ${MYSQL_DEFAULT_CHARSET}" |
| … | |
… | |
| 391 | fi |
503 | fi |
| 392 | |
504 | |
| 393 | } |
505 | } |
| 394 | |
506 | |
| 395 | configure_40_41_50() { |
507 | configure_40_41_50() { |
|
|
508 | myconf="${myconf} --with-zlib-dir=${EPREFIX}/usr" |
| 396 | myconf="${myconf} $(use_with perl bench)" |
509 | myconf="${myconf} $(use_with perl bench)" |
| 397 | myconf="${myconf} --enable-assembler" |
510 | myconf="${myconf} --enable-assembler" |
| 398 | myconf="${myconf} --with-extra-tools" |
511 | myconf="${myconf} --with-extra-tools" |
| 399 | myconf="${myconf} --with-innodb" |
512 | myconf="${myconf} --with-innodb" |
| 400 | myconf="${myconf} --without-readline" |
513 | myconf="${myconf} --without-readline" |
|
|
514 | myconf="${myconf} $(use_with ssl openssl "${EPREFIX}/usr")" |
| 401 | mysql_version_is_at_least "5.0" || myconf="${myconf} $(use_with raid)" |
515 | mysql_version_is_at_least "5.0" || myconf="${myconf} $(use_with raid)" |
| 402 | |
516 | |
| 403 | # --with-vio is not needed anymore, it's on by default and |
517 | # --with-vio is not needed anymore, it's on by default and |
| 404 | # has been removed from configure |
518 | # has been removed from configure |
|
|
519 | # Apply to 4.x and 5.0.[0-3] |
| 405 | if use ssl ; then |
520 | if use ssl ; then |
| 406 | mysql_version_is_at_least "5.0.4" || myconf="${myconf} --with-vio" |
521 | mysql_version_is_at_least "5.0.4" || myconf="${myconf} --with-vio" |
| 407 | fi |
|
|
| 408 | |
|
|
| 409 | if mysql_version_is_at_least "5.1.11" ; then |
|
|
| 410 | myconf="${myconf} $(use_with ssl /usr)" |
|
|
| 411 | else |
|
|
| 412 | myconf="${myconf} $(use_with ssl openssl)" |
|
|
| 413 | fi |
522 | fi |
| 414 | |
523 | |
| 415 | if mysql_version_is_at_least "5.0.60" ; then |
524 | if mysql_version_is_at_least "5.0.60" ; then |
| 416 | if use berkdb ; then |
525 | if use berkdb ; then |
| 417 | elog "Berkeley DB support was disabled due to build failures" |
526 | elog "Berkeley DB support was disabled due to build failures" |
| … | |
… | |
| 433 | myconf="${myconf} --without-berkeley-db" |
542 | myconf="${myconf} --without-berkeley-db" |
| 434 | fi |
543 | fi |
| 435 | |
544 | |
| 436 | if mysql_version_is_at_least "4.1.3" ; then |
545 | if mysql_version_is_at_least "4.1.3" ; then |
| 437 | myconf="${myconf} --with-geometry" |
546 | myconf="${myconf} --with-geometry" |
|
|
547 | if [[ "${PN}" != "mysql-cluster" ]] ; then |
| 438 | myconf="${myconf} $(use_with cluster ndbcluster)" |
548 | myconf="${myconf} $(use_with cluster ndbcluster)" |
|
|
549 | fi |
| 439 | fi |
550 | fi |
| 440 | |
551 | |
| 441 | if mysql_version_is_at_least "4.1.3" && use extraengine ; then |
552 | if mysql_version_is_at_least "4.1.3" && use extraengine ; then |
| 442 | # http://dev.mysql.com/doc/mysql/en/archive-storage-engine.html |
553 | # http://dev.mysql.com/doc/mysql/en/archive-storage-engine.html |
| 443 | myconf="${myconf} --with-archive-storage-engine" |
554 | myconf="${myconf} --with-archive-storage-engine" |
| … | |
… | |
| 474 | |
585 | |
| 475 | configure_51() { |
586 | configure_51() { |
| 476 | # TODO: !!!! readd --without-readline |
587 | # TODO: !!!! readd --without-readline |
| 477 | # the failure depend upon config/ac-macros/readline.m4 checking into |
588 | # the failure depend upon config/ac-macros/readline.m4 checking into |
| 478 | # readline.h instead of history.h |
589 | # readline.h instead of history.h |
| 479 | myconf="${myconf} $(use_with ssl)" |
590 | myconf="${myconf} $(use_with ssl ssl "${EPREFIX}"/usr)" |
| 480 | myconf="${myconf} --enable-assembler" |
591 | myconf="${myconf} --enable-assembler" |
| 481 | myconf="${myconf} --with-geometry" |
592 | myconf="${myconf} --with-geometry" |
| 482 | myconf="${myconf} --with-readline" |
593 | myconf="${myconf} --with-readline" |
| 483 | myconf="${myconf} --with-zlib-dir=/usr/" |
594 | myconf="${myconf} --with-zlib-dir=${EPREFIX}/usr/" |
| 484 | myconf="${myconf} --without-pstack" |
595 | myconf="${myconf} --without-pstack" |
|
|
596 | myconf="${myconf} --with-plugindir=${EPREFIX}/usr/$(get_libdir)/mysql/plugin" |
|
|
597 | |
|
|
598 | # This is an explict die here, because if we just forcibly disable it, then the |
|
|
599 | # user's data is not accessible. |
|
|
600 | use max-idx-128 && die "Bug #336027: upstream has a corruption issue with max-idx-128 presently" |
| 485 | use max-idx-128 && myconf="${myconf} --with-max-indexes=128" |
601 | #use max-idx-128 && myconf="${myconf} --with-max-indexes=128" |
|
|
602 | if [ "${MYSQL_COMMUNITY_FEATURES}" == "1" ]; then |
|
|
603 | myconf="${myconf} $(use_enable community community-features)" |
|
|
604 | if use community; then |
|
|
605 | myconf="${myconf} $(use_enable profiling)" |
|
|
606 | else |
|
|
607 | myconf="${myconf} --disable-profiling" |
|
|
608 | fi |
|
|
609 | fi |
|
|
610 | |
|
|
611 | # Scan for all available plugins |
|
|
612 | local plugins_avail="$( |
|
|
613 | LANG=C \ |
|
|
614 | find "${S}" \ |
|
|
615 | \( \ |
|
|
616 | -name 'plug.in' \ |
|
|
617 | -o -iname 'configure.in' \ |
|
|
618 | -o -iname 'configure.ac' \ |
|
|
619 | \) \ |
|
|
620 | -print0 \ |
|
|
621 | | xargs -0 sed -r -n \ |
|
|
622 | -e '/^MYSQL_STORAGE_ENGINE/{ |
|
|
623 | s~MYSQL_STORAGE_ENGINE\([[:space:]]*\[?([-_a-z0-9]+)\]?.*,~\1 ~g ; |
|
|
624 | s~^([^ ]+).*~\1~gp; |
|
|
625 | }' \ |
|
|
626 | | tr -s '\n' ' ' |
|
|
627 | )" |
| 486 | |
628 | |
| 487 | # 5.1 introduces a new way to manage storage engines (plugins) |
629 | # 5.1 introduces a new way to manage storage engines (plugins) |
| 488 | # like configuration=none |
630 | # like configuration=none |
|
|
631 | # This base set are required, and will always be statically built. |
| 489 | local plugins="csv,myisam,myisammrg,heap" |
632 | local plugins_sta="csv myisam myisammrg heap" |
|
|
633 | local plugins_dyn="" |
|
|
634 | local plugins_dis="example ibmdb2i" |
|
|
635 | |
|
|
636 | # These aren't actually required by the base set, but are really useful: |
|
|
637 | plugins_sta="${plugins_sta} archive blackhole" |
|
|
638 | |
|
|
639 | # default in 5.5.4 |
|
|
640 | if mysql_version_is_at_least "5.5.4" ; then |
|
|
641 | plugins_sta="${plugins_sta} partition" |
|
|
642 | fi |
|
|
643 | # Now the extras |
| 490 | if use extraengine ; then |
644 | if use extraengine ; then |
| 491 | # like configuration=max-no-ndb, archive and example removed in 5.1.11 |
645 | # like configuration=max-no-ndb, archive and example removed in 5.1.11 |
| 492 | # not added yet: ibmdb2i |
646 | # not added yet: ibmdb2i |
| 493 | # Not supporting as examples: example,daemon_example,ftexample |
647 | # Not supporting as examples: example,daemon_example,ftexample |
| 494 | plugins="${plugins},archive,blackhole,federated,partition" |
648 | plugins_sta="${plugins_sta} partition" |
| 495 | |
649 | |
|
|
650 | if [[ "${PN}" != "mariadb" ]] ; then |
| 496 | elog "Before using the Federated storage engine, please be sure to read" |
651 | elog "Before using the Federated storage engine, please be sure to read" |
| 497 | elog "http://dev.mysql.com/doc/refman/5.1/en/federated-limitations.html" |
652 | elog "http://dev.mysql.com/doc/refman/5.1/en/federated-limitations.html" |
|
|
653 | plugins_dyn="${plugins_sta} federated" |
|
|
654 | else |
|
|
655 | elog "MariaDB includes the FederatedX engine. Be sure to read" |
|
|
656 | elog "http://askmonty.org/wiki/index.php/Manual:FederatedX_storage_engine" |
|
|
657 | plugins_dyn="${plugins_sta} federatedx" |
|
|
658 | fi |
|
|
659 | else |
|
|
660 | plugins_dis="${plugins_dis} partition federated" |
| 498 | fi |
661 | fi |
| 499 | |
662 | |
| 500 | # Upstream specifically requests that InnoDB always be built: |
663 | # Upstream specifically requests that InnoDB always be built: |
| 501 | # - innobase, innodb_plugin |
664 | # - innobase, innodb_plugin |
| 502 | # Build falcon if available for 6.x series. |
665 | # Build falcon if available for 6.x series. |
| 503 | for i in innobase innodb_plugin falcon ; do |
666 | for i in innobase falcon ; do |
| 504 | [ -e "${S}"/storage/${i} ] && plugins="${plugins},${i}" |
667 | [ -e "${S}"/storage/${i} ] && plugins_sta="${plugins_sta} ${i}" |
| 505 | done |
668 | done |
|
|
669 | for i in innodb_plugin ; do |
|
|
670 | [ -e "${S}"/storage/${i} ] && plugins_dyn="${plugins_dyn} ${i}" |
|
|
671 | done |
| 506 | |
672 | |
| 507 | # like configuration=max-no-ndb |
673 | # like configuration=max-no-ndb |
| 508 | if use cluster ; then |
674 | if ( use cluster || [[ "${PN}" == "mysql-cluster" ]] ) ; then |
| 509 | plugins="${plugins},ndbcluster" |
675 | plugins_sta="${plugins_sta} ndbcluster partition" |
|
|
676 | plugins_dis="${plugins_dis//partition}" |
| 510 | myconf="${myconf} --with-ndb-binlog" |
677 | myconf="${myconf} --with-ndb-binlog" |
|
|
678 | else |
|
|
679 | plugins_dis="${plugins_dis} ndbcluster" |
|
|
680 | fi |
|
|
681 | |
|
|
682 | if [[ "${PN}" == "mariadb" ]] ; then |
|
|
683 | # In MariaDB, InnoDB is packaged in the xtradb directory, so it's not |
|
|
684 | # caught above. |
|
|
685 | # This is not optional, without it several upstream testcases fail. |
|
|
686 | # Also strongly recommended by upstream. |
|
|
687 | if [[ "${PV}" < "5.2.0" ]] ; then |
|
|
688 | myconf="${myconf} --with-maria-tmp-tables" |
|
|
689 | plugins_sta="${plugins_sta} maria" |
|
|
690 | else |
|
|
691 | myconf="${myconf} --with-aria-tmp-tables" |
|
|
692 | plugins_sta="${plugins_sta} aria" |
| 511 | fi |
693 | fi |
| 512 | |
694 | |
|
|
695 | [ -e "${S}"/storage/innobase ] || [ -e "${S}"/storage/xtradb ] || |
|
|
696 | die "The ${P} package doesn't provide innobase nor xtradb" |
|
|
697 | |
|
|
698 | for i in innobase xtradb ; do |
|
|
699 | [ -e "${S}"/storage/${i} ] && plugins_sta="${plugins_sta} ${i}" |
|
|
700 | done |
|
|
701 | |
|
|
702 | myconf="${myconf} $(use_with libevent)" |
|
|
703 | |
|
|
704 | if mysql_version_is_at_least "5.2" ; then |
|
|
705 | #This should include sphinx, but the 5.2.4 archive forgot the plug.in file |
|
|
706 | #for i in oqgraph sphinx ; do |
|
|
707 | for i in oqgraph ; do |
|
|
708 | use ${i} \ |
|
|
709 | && plugins_dyn="${plugins_dyn} ${i}" \ |
|
|
710 | || plugins_dis="${plugins_dis} ${i}" |
|
|
711 | done |
|
|
712 | fi |
|
|
713 | fi |
|
|
714 | |
|
|
715 | if pbxt_available && [[ "${PBXT_NEWSTYLE}" == "1" ]]; then |
|
|
716 | use pbxt \ |
|
|
717 | && plugins_dyn="${plugins_dyn} pbxt" \ |
|
|
718 | || plugins_dis="${plugins_dis} pbxt" |
|
|
719 | fi |
|
|
720 | |
|
|
721 | use static && \ |
|
|
722 | plugins_sta="${plugins_sta} ${plugins_dyn}" && \ |
|
|
723 | plugins_dyn="" |
|
|
724 | |
|
|
725 | einfo "Available plugins: ${plugins_avail}" |
|
|
726 | einfo "Dynamic plugins: ${plugins_dyn}" |
|
|
727 | einfo "Static plugins: ${plugins_sta}" |
|
|
728 | einfo "Disabled plugins: ${plugins_dis}" |
|
|
729 | |
|
|
730 | # These are the static plugins |
| 513 | myconf="${myconf} --with-plugins=${plugins}" |
731 | myconf="${myconf} --with-plugins=${plugins_sta// /,}" |
| 514 | } |
732 | # And the disabled ones |
| 515 | |
733 | for i in ${plugins_dis} ; do |
| 516 | xtradb_applicable() { |
734 | myconf="${myconf} --without-plugin-${i}" |
| 517 | mysql_version_is_at_least "5.1.26" \ |
735 | done |
| 518 | && [[ -n "${XTRADB_VER}" && -n "${PERCONA_VER}" ]] \ |
|
|
| 519 | && use xtradb |
|
|
| 520 | return $? |
|
|
| 521 | } |
|
|
| 522 | |
|
|
| 523 | pbxt_applicable() { |
|
|
| 524 | mysql_version_is_at_least "5.1.12" \ |
|
|
| 525 | && [[ -n "${PBXT_VERSION}" ]] \ |
|
|
| 526 | && use pbxt |
|
|
| 527 | return $? |
|
|
| 528 | } |
736 | } |
| 529 | |
737 | |
| 530 | pbxt_src_configure() { |
738 | pbxt_src_configure() { |
| 531 | mysql_init_vars |
739 | mysql_init_vars |
| 532 | |
740 | |
| 533 | pushd "${WORKDIR}/pbxt-${PBXT_VERSION}" &>/dev/null |
741 | pushd "${WORKDIR}/pbxt-${PBXT_VERSION}" &>/dev/null |
| 534 | |
742 | |
| 535 | einfo "Reconfiguring dir '${PWD}'" |
743 | einfo "Reconfiguring dir '${PWD}'" |
| 536 | AT_GNUCONF_UPDATE="yes" eautoreconf |
744 | eautoreconf |
| 537 | |
745 | |
| 538 | local myconf="" |
746 | local myconf="" |
| 539 | myconf="${myconf} --with-mysql=${S} --libdir=${MY_LIBDIR}" |
747 | myconf="${myconf} --with-mysql=${S} --libdir=${EPREFIX}/usr/$(get_libdir)" |
| 540 | use debug && myconf="${myconf} --with-debug=full" |
748 | use debug && myconf="${myconf} --with-debug=full" |
| 541 | # TODO: is it safe/needed to use econf here ? |
|
|
| 542 | ./configure ${myconf} || die "Problem configuring PBXT storage engine" |
749 | econf ${myconf} || die "Problem configuring PBXT storage engine" |
| 543 | } |
750 | } |
| 544 | |
751 | |
| 545 | pbxt_src_compile() { |
752 | pbxt_src_compile() { |
|
|
753 | |
| 546 | # Be backwards compatible for now |
754 | # Be backwards compatible for now |
| 547 | if [[ $EAPI != 2 ]]; then |
755 | if [[ $EAPI != 2 ]]; then |
| 548 | pbxt_src_configure |
756 | pbxt_src_configure |
| 549 | fi |
757 | fi |
| 550 | # TODO: is it safe/needed to use emake here ? |
758 | # TODO: is it safe/needed to use emake here ? |
| … | |
… | |
| 569 | # die if FEATURES="test", USE="-minimal" and not using FEATURES="userpriv" |
777 | # die if FEATURES="test", USE="-minimal" and not using FEATURES="userpriv" |
| 570 | # check for conflicting use flags |
778 | # check for conflicting use flags |
| 571 | # create new user and group for mysql |
779 | # create new user and group for mysql |
| 572 | # warn about deprecated features |
780 | # warn about deprecated features |
| 573 | mysql_pkg_setup() { |
781 | mysql_pkg_setup() { |
| 574 | if hasq test ${FEATURES} ; then |
782 | if has test ${FEATURES} ; then |
| 575 | if ! use minimal ; then |
783 | if ! use minimal ; then |
| 576 | if [[ $UID -eq 0 ]]; then |
784 | if [[ $UID -eq 0 ]]; then |
| 577 | eerror "Testing with FEATURES=-userpriv is no longer supported by upstream. Tests MUST be run as non-root." |
785 | eerror "Testing with FEATURES=-userpriv is no longer supported by upstream. Tests MUST be run as non-root." |
| 578 | fi |
786 | fi |
| 579 | fi |
787 | fi |
| 580 | fi |
788 | fi |
| 581 | |
789 | |
|
|
790 | # bug 350844 |
|
|
791 | case "${EAPI:-0}" in |
|
|
792 | 0 | 1) |
|
|
793 | if use static && ! built_with_use sys-libs/ncurses static-libs; then |
|
|
794 | die "To build MySQL statically you need to enable static-libs for sys-libs/ncurses" |
|
|
795 | fi |
|
|
796 | ;; |
|
|
797 | esac |
|
|
798 | |
| 582 | # Check for USE flag problems in pkg_setup |
799 | # Check for USE flag problems in pkg_setup |
| 583 | if use static && use ssl ; then |
800 | if use static && use ssl ; then |
| 584 | eerror "MySQL does not support being built statically with SSL support enabled!" |
|
|
| 585 | die "MySQL does not support being built statically with SSL support enabled!" |
801 | M="MySQL does not support being built statically with SSL support enabled!" |
|
|
802 | eerror "${M}" |
|
|
803 | die "${M}" |
|
|
804 | fi |
|
|
805 | |
|
|
806 | if mysql_version_is_at_least "5.1.51" \ |
|
|
807 | && ! mysql_version_is_at_least "5.2" \ |
|
|
808 | && use debug ; then |
|
|
809 | # Also in package.use.mask |
|
|
810 | die "Bug #344885: Upstream has broken USE=debug for 5.1 series >=5.1.51" |
| 586 | fi |
811 | fi |
| 587 | |
812 | |
| 588 | if ! mysql_version_is_at_least "5.0" \ |
813 | if ! mysql_version_is_at_least "5.0" \ |
| 589 | && use raid \ |
814 | && use raid \ |
| 590 | && use static ; then |
815 | && use static ; then |
| … | |
… | |
| 592 | eerror "with RAID support enabled." |
817 | eerror "with RAID support enabled." |
| 593 | die "USE flags 'raid' and 'static' conflict!" |
818 | die "USE flags 'raid' and 'static' conflict!" |
| 594 | fi |
819 | fi |
| 595 | |
820 | |
| 596 | if mysql_version_is_at_least "4.1.3" \ |
821 | if mysql_version_is_at_least "4.1.3" \ |
| 597 | && ( use cluster || use extraengine ) \ |
822 | && ( use cluster || use extraengine || use embedded ) \ |
| 598 | && use minimal ; then |
823 | && use minimal ; then |
| 599 | eerror "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
|
|
| 600 | die "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
824 | M="USE flags 'cluster', 'extraengine', 'embedded' conflict with 'minimal' USE flag!" |
|
|
825 | eerror "${M}" |
|
|
826 | die "${M}" |
| 601 | fi |
827 | fi |
| 602 | |
828 | |
| 603 | # Bug #290570 fun. Upstream made us need a fairly new GCC4. |
|
|
| 604 | if mysql_version_is_at_least "5.0.83" ; then |
829 | if mysql_version_is_at_least "5.1" \ |
|
|
830 | && xtradb_patch_available \ |
|
|
831 | && use xtradb \ |
|
|
832 | && use embedded ; then |
|
|
833 | M="USE flags 'xtradb' and 'embedded' conflict and cause build failures" |
|
|
834 | eerror "${M}" |
|
|
835 | die "${M}" |
|
|
836 | fi |
|
|
837 | |
|
|
838 | # Bug #290570, 284946, 307251 |
|
|
839 | # Upstream changes made us need a fairly new GCC4. |
|
|
840 | # But only for 5.0.8[3-6]! |
|
|
841 | if mysql_version_is_at_least "5.0.83" && ! mysql_version_is_at_least 5.0.87 ; then |
| 605 | GCC_VER=$(gcc-version) |
842 | GCC_VER=$(gcc-version) |
| 606 | case ${GCC_VER} in |
843 | case ${CHOST}:${GCC_VER} in |
| 607 | 2*|3*|4.0|4.1|4.2) die "Active GCC too old! Must have at least GCC4.3" ;; |
844 | *-darwin*:4.*) : ;; # bug #310615 |
|
|
845 | *:2*|*:3*|*:4.0|*:4.1|*:4.2) |
|
|
846 | eerror "Some releases of MySQL required a very new GCC, and then" |
|
|
847 | eerror "later release relaxed that requirement again. Either pick a" |
|
|
848 | eerror "MySQL >=5.0.87, or use a newer GCC." |
|
|
849 | die "Active GCC too old!" ;; |
| 608 | esac |
850 | esac |
| 609 | fi |
851 | fi |
| 610 | |
852 | |
| 611 | # This should come after all of the die statements |
853 | # This should come after all of the die statements |
| 612 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
854 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
| … | |
… | |
| 662 | mysql_mv_patches |
904 | mysql_mv_patches |
| 663 | # And apply |
905 | # And apply |
| 664 | epatch |
906 | epatch |
| 665 | |
907 | |
| 666 | # last -fPIC fixup, per bug #305873 |
908 | # last -fPIC fixup, per bug #305873 |
| 667 | i="${S}"/storage/innodb_plugin/plug.in |
909 | i="${S}"/storage/innodb_plugin/plug.in |
| 668 | [ -f "${i}" ] && sed -i -e '/CFLAGS/s,-prefer-non-pic,,g' "${i}" |
910 | [ -f "${i}" ] && sed -i -e '/CFLAGS/s,-prefer-non-pic,,g' "${i}" |
| 669 | |
911 | |
| 670 | # Additional checks, remove bundled zlib |
912 | # Additional checks, remove bundled zlib (Cluster needs this, for static |
|
|
913 | # memory management in zlib, leave available for Cluster) |
|
|
914 | if [[ "${PN}" != "mysql-cluster" ]] ; then |
| 671 | rm -f "${S}/zlib/"*.[ch] |
915 | rm -f "${S}/zlib/"*.[ch] |
| 672 | sed -i -e "s/zlib\/Makefile dnl/dnl zlib\/Makefile/" "${S}/configure.in" |
916 | sed -i -e "s/zlib\/Makefile dnl/dnl zlib\/Makefile/" "${S}/configure.in" |
|
|
917 | fi |
| 673 | rm -f "scripts/mysqlbug" |
918 | rm -f "scripts/mysqlbug" |
| 674 | |
919 | |
| 675 | # Make charsets install in the right place |
920 | # Make charsets install in the right place |
| 676 | find . -name 'Makefile.am' \ |
921 | find . -name 'Makefile.am' \ |
| 677 | -exec sed --in-place -e 's!$(pkgdatadir)!'${MY_SHAREDSTATEDIR}'!g' {} \; |
922 | -exec sed --in-place -e 's!$(pkgdatadir)!'${MY_SHAREDSTATEDIR}'!g' {} \; |
| … | |
… | |
| 687 | rm -f "scripts/mysqlbug" |
932 | rm -f "scripts/mysqlbug" |
| 688 | fi |
933 | fi |
| 689 | |
934 | |
| 690 | local rebuilddirlist d |
935 | local rebuilddirlist d |
| 691 | |
936 | |
| 692 | if xtradb_applicable ; then |
937 | if xtradb_patch_available && use xtradb ; then |
| 693 | einfo "Replacing InnoDB with Percona XtraDB" |
938 | einfo "Adding storage engine: Percona XtraDB (replacing InnoDB)" |
| 694 | pushd "${S}"/storage |
939 | pushd "${S}"/storage >/dev/null |
| 695 | i="innobase" |
940 | i="innobase" |
| 696 | o="${WORKDIR}/storage-${i}.mysql-upstream" |
941 | o="${WORKDIR}/storage-${i}.mysql-upstream" |
| 697 | # Have we been here already? |
942 | # Have we been here already? |
| 698 | [ -d "${o}" ] && rm -f "${i}" |
943 | [ -d "${o}" ] && rm -f "${i}" |
| 699 | # Or maybe we haven't |
944 | # Or maybe we haven't |
| 700 | [ -d "${i}" -a ! -d "${o}" ] && mv "${i}" "${o}" |
945 | [ -d "${i}" -a ! -d "${o}" ] && mv "${i}" "${o}" |
| 701 | cp -ra "${WORKDIR}/${XTRADB_P}" "${i}" |
946 | cp -ral "${WORKDIR}/${XTRADB_P}" "${i}" |
| 702 | popd |
947 | popd >/dev/null |
|
|
948 | fi |
|
|
949 | |
|
|
950 | if pbxt_patch_available && [[ "${PBXT_NEWSTYLE}" == "1" ]] && use pbxt ; then |
|
|
951 | einfo "Adding storage engine: PBXT" |
|
|
952 | pushd "${S}"/storage >/dev/null |
|
|
953 | i='pbxt' |
|
|
954 | [ -d "${i}" ] && rm -rf "${i}" |
|
|
955 | cp -ral "${WORKDIR}/${PBXT_P}" "${i}" |
|
|
956 | popd >/dev/null |
| 703 | fi |
957 | fi |
| 704 | |
958 | |
| 705 | if mysql_version_is_at_least "5.1.12" ; then |
959 | if mysql_version_is_at_least "5.1.12" ; then |
| 706 | rebuilddirlist="." |
960 | rebuilddirlist="." |
| 707 | # This does not seem to be needed presently. robbat2 2010/02/23 |
961 | # This does not seem to be needed presently. robbat2 2010/02/23 |
| … | |
… | |
| 716 | fi |
970 | fi |
| 717 | |
971 | |
| 718 | for d in ${rebuilddirlist} ; do |
972 | for d in ${rebuilddirlist} ; do |
| 719 | einfo "Reconfiguring dir '${d}'" |
973 | einfo "Reconfiguring dir '${d}'" |
| 720 | pushd "${d}" &>/dev/null |
974 | pushd "${d}" &>/dev/null |
| 721 | AT_GNUCONF_UPDATE="yes" eautoreconf |
975 | eautoreconf |
| 722 | popd &>/dev/null |
976 | popd &>/dev/null |
| 723 | done |
977 | done |
| 724 | |
978 | |
| 725 | if mysql_check_version_range "4.1 to 5.0.99.99" \ |
979 | if mysql_check_version_range "4.1 to 5.0.99.99" \ |
| 726 | && use berkdb ; then |
980 | && use berkdb ; then |
| 727 | einfo "Fixing up berkdb buildsystem" |
981 | einfo "Fixing up berkdb buildsystem" |
| 728 | [[ -w "bdb/dist/ltmain.sh" ]] && cp -f "ltmain.sh" "bdb/dist/ltmain.sh" |
982 | [[ -w "bdb/dist/ltmain.sh" ]] && cp -f "ltmain.sh" "bdb/dist/ltmain.sh" |
| 729 | cp -f "/usr/share/aclocal/libtool.m4" "bdb/dist/aclocal/libtool.ac" \ |
983 | cp -f "${EPREFIX}/usr/share/aclocal/libtool.m4" "bdb/dist/aclocal/libtool.ac" \ |
| 730 | || die "Could not copy libtool.m4 to bdb/dist/" |
984 | || die "Could not copy libtool.m4 to bdb/dist/" |
| 731 | #These files exist only with libtool-2*, and need to be included. |
985 | #These files exist only with libtool-2*, and need to be included. |
| 732 | if [ -f '/usr/share/aclocal/ltsugar.m4' ]; then |
986 | if [ -f ${EPREFIX}'/usr/share/aclocal/ltsugar.m4' ]; then |
| 733 | cat "/usr/share/aclocal/ltsugar.m4" >> "bdb/dist/aclocal/libtool.ac" |
987 | cat "${EPREFIX}/usr/share/aclocal/ltsugar.m4" >> "bdb/dist/aclocal/libtool.ac" |
| 734 | cat "/usr/share/aclocal/ltversion.m4" >> "bdb/dist/aclocal/libtool.ac" |
988 | cat "${EPREFIX}/usr/share/aclocal/ltversion.m4" >> "bdb/dist/aclocal/libtool.ac" |
| 735 | cat "/usr/share/aclocal/lt~obsolete.m4" >> "bdb/dist/aclocal/libtool.ac" |
989 | cat "${EPREFIX}/usr/share/aclocal/lt~obsolete.m4" >> "bdb/dist/aclocal/libtool.ac" |
| 736 | cat "/usr/share/aclocal/ltoptions.m4" >> "bdb/dist/aclocal/libtool.ac" |
990 | cat "${EPREFIX}/usr/share/aclocal/ltoptions.m4" >> "bdb/dist/aclocal/libtool.ac" |
| 737 | fi |
991 | fi |
| 738 | pushd "bdb/dist" &>/dev/null |
992 | pushd "bdb/dist" &>/dev/null |
| 739 | sh s_all \ |
993 | sh s_all \ |
| 740 | || die "Failed bdb reconfigure" |
994 | || die "Failed bdb reconfigure" |
| 741 | popd &>/dev/null |
995 | popd &>/dev/null |
| … | |
… | |
| 782 | export CXXFLAGS |
1036 | export CXXFLAGS |
| 783 | |
1037 | |
| 784 | # bug #283926, with GCC4.4, this is required to get correct behavior. |
1038 | # bug #283926, with GCC4.4, this is required to get correct behavior. |
| 785 | append-flags -fno-strict-aliasing |
1039 | append-flags -fno-strict-aliasing |
| 786 | |
1040 | |
|
|
1041 | # bug #335185, #335995, with >= GCC4.3.3 on x86 only, omit-frame-pointer |
|
|
1042 | # causes a mis-compile. |
|
|
1043 | # Upstream bugs: |
|
|
1044 | # http://gcc.gnu.org/bugzilla/show_bug.cgi?id=38562 |
|
|
1045 | # http://bugs.mysql.com/bug.php?id=45205 |
|
|
1046 | use x86 && version_is_at_least "4.3.3" "$(gcc-fullversion)" && \ |
|
|
1047 | append-flags -fno-omit-frame-pointer && \ |
|
|
1048 | filter-flags -fomit-frame-pointer |
|
|
1049 | |
| 787 | econf \ |
1050 | econf \ |
| 788 | --libexecdir="/usr/sbin" \ |
1051 | --libexecdir="${EPREFIX}"/usr/sbin \ |
| 789 | --sysconfdir="${MY_SYSCONFDIR}" \ |
1052 | --sysconfdir=${MY_SYSCONFDIR} \ |
| 790 | --localstatedir="${MY_LOCALSTATEDIR}" \ |
1053 | --localstatedir=${MY_LOCALSTATEDIR} \ |
| 791 | --sharedstatedir="${MY_SHAREDSTATEDIR}" \ |
1054 | --sharedstatedir=${MY_SHAREDSTATEDIR} \ |
| 792 | --libdir="${MY_LIBDIR}" \ |
1055 | --libdir=${MY_LIBDIR} \ |
| 793 | --includedir="${MY_INCLUDEDIR}" \ |
1056 | --includedir=${MY_INCLUDEDIR} \ |
| 794 | --with-low-memory \ |
1057 | --with-low-memory \ |
| 795 | --with-client-ldflags=-lstdc++ \ |
1058 | --with-client-ldflags=-lstdc++ \ |
| 796 | --enable-thread-safe-client \ |
1059 | --enable-thread-safe-client \ |
| 797 | --with-comment="Gentoo Linux ${PF}" \ |
1060 | --with-comment="Gentoo Linux ${PF}" \ |
| 798 | --without-docs \ |
1061 | --without-docs \ |
|
|
1062 | --with-LIBDIR="$(get_libdir)" \ |
| 799 | ${myconf} || die "econf failed" |
1063 | ${myconf} || die "econf failed" |
| 800 | |
1064 | |
| 801 | # TODO: Move this before autoreconf !!! |
1065 | # TODO: Move this before autoreconf !!! |
| 802 | find . -type f -name Makefile -print0 \ |
1066 | find . -type f -name Makefile -print0 \ |
| 803 | | xargs -0 -n100 sed -i \ |
1067 | | xargs -0 -n100 sed -i \ |
| 804 | -e 's|^pkglibdir *= *$(libdir)/mysql|pkglibdir = $(libdir)|;s|^pkgincludedir *= *$(includedir)/mysql|pkgincludedir = $(includedir)|' |
1068 | -e 's|^pkglibdir *= *$(libdir)/mysql|pkglibdir = $(libdir)|;s|^pkgincludedir *= *$(includedir)/mysql|pkgincludedir = $(includedir)|' |
| 805 | |
1069 | |
| 806 | if [[ $EAPI == 2 ]]; then |
1070 | if [[ $EAPI == 2 ]] && [[ "${PBXT_NEWSTYLE}" != "1" ]]; then |
| 807 | pbxt_applicable && pbxt_src_configure |
1071 | pbxt_patch_available && use pbxt && pbxt_src_configure |
| 808 | fi |
1072 | fi |
| 809 | } |
1073 | } |
| 810 | |
1074 | |
| 811 | # @FUNCTION: mysql_src_compile |
1075 | # @FUNCTION: mysql_src_compile |
| 812 | # @DESCRIPTION: |
1076 | # @DESCRIPTION: |
| 813 | # Compile the mysql code. |
1077 | # Compile the mysql code. |
| 814 | mysql_src_compile() { |
1078 | mysql_src_compile() { |
| 815 | # Be backwards compatible for now |
1079 | # Be backwards compatible for now |
| 816 | case ${EAPI:-0} in |
1080 | case ${EAPI:-0} in |
| 817 | 2) : ;; |
1081 | 2) : ;; |
| 818 | 0 | 1) mysql_src_configure ;; |
1082 | 0 | 1) mysql_src_configure ;; |
| 819 | esac |
1083 | esac |
| 820 | |
1084 | |
| 821 | emake || die "emake failed" |
1085 | emake || die "emake failed" |
| 822 | |
1086 | |
| 823 | pbxt_applicable && pbxt_src_compile |
1087 | if [[ "${PBXT_NEWSTYLE}" != "1" ]]; then |
|
|
1088 | pbxt_patch_available && use pbxt && pbxt_src_compile |
|
|
1089 | fi |
| 824 | } |
1090 | } |
| 825 | |
1091 | |
| 826 | # @FUNCTION: mysql_src_install |
1092 | # @FUNCTION: mysql_src_install |
| 827 | # @DESCRIPTION: |
1093 | # @DESCRIPTION: |
| 828 | # Install mysql. |
1094 | # Install mysql. |
| … | |
… | |
| 830 | # Make sure the vars are correctly initialized |
1096 | # Make sure the vars are correctly initialized |
| 831 | mysql_init_vars |
1097 | mysql_init_vars |
| 832 | |
1098 | |
| 833 | emake install \ |
1099 | emake install \ |
| 834 | DESTDIR="${D}" \ |
1100 | DESTDIR="${D}" \ |
| 835 | benchdir_root="${MY_SHAREDSTATEDIR}" \ |
1101 | benchdir_root=${MY_SHAREDSTATEDIR} \ |
| 836 | testroot="${MY_SHAREDSTATEDIR}" \ |
1102 | testroot="${MY_SHAREDSTATEDIR}" \ |
| 837 | || die "emake install failed" |
1103 | || die "emake install failed" |
| 838 | |
1104 | |
| 839 | pbxt_applicable && pbxt_src_install |
1105 | if [[ "${PBXT_NEWSTYLE}" != "1" ]]; then |
|
|
1106 | pbxt_patch_available && use pbxt && pbxt_src_install |
|
|
1107 | fi |
| 840 | |
1108 | |
| 841 | # Convenience links |
1109 | # Convenience links |
| 842 | einfo "Making Convenience links for mysqlcheck multi-call binary" |
1110 | einfo "Making Convenience links for mysqlcheck multi-call binary" |
| 843 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlanalyze" |
1111 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlanalyze" |
| 844 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlrepair" |
1112 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlrepair" |
| 845 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqloptimize" |
1113 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqloptimize" |
| 846 | |
1114 | |
| 847 | # Various junk (my-*.cnf moved elsewhere) |
1115 | # Various junk (my-*.cnf moved elsewhere) |
| 848 | einfo "Removing duplicate /usr/share/mysql files" |
1116 | einfo "Removing duplicate /usr/share/mysql files" |
| 849 | rm -Rf "${D}/usr/share/info" |
1117 | rm -Rf "${ED}/usr/share/info" |
| 850 | for removeme in "mysql-log-rotate" mysql.server* \ |
1118 | for removeme in "mysql-log-rotate" mysql.server* \ |
| 851 | binary-configure* my-*.cnf mi_test_all* |
1119 | binary-configure* my-*.cnf mi_test_all* |
| 852 | do |
1120 | do |
| 853 | rm -f "${D}"/${MY_SHAREDSTATEDIR}/${removeme} |
1121 | rm -f "${D}"/${MY_SHAREDSTATEDIR}/${removeme} |
| 854 | done |
1122 | done |
| 855 | |
1123 | |
| 856 | # Clean up stuff for a minimal build |
1124 | # Clean up stuff for a minimal build |
| 857 | if use minimal ; then |
1125 | if use minimal ; then |
| 858 | einfo "Remove all extra content for minimal build" |
1126 | einfo "Remove all extra content for minimal build" |
| 859 | rm -Rf "${D}${MY_SHAREDSTATEDIR}"/{mysql-test,sql-bench} |
1127 | rm -Rf "${D}${MY_SHAREDSTATEDIR}"/{mysql-test,sql-bench} |
| 860 | rm -f "${D}"/usr/bin/{mysql{_install_db,manager*,_secure_installation,_fix_privilege_tables,hotcopy,_convert_table_format,d_multi,_fix_extensions,_zap,_explain_log,_tableinfo,d_safe,_install,_waitpid,binlog,test},myisam*,isam*,pack_isam} |
1128 | rm -f "${ED}"/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} |
| 861 | rm -f "${D}/usr/sbin/mysqld" |
1129 | rm -f "${ED}/usr/sbin/mysqld" |
| 862 | rm -f "${D}${MY_LIBDIR}"/lib{heap,merge,nisam,my{sys,strings,sqld,isammrg,isam},vio,dbug}.a |
1130 | rm -f "${D}${MY_LIBDIR}"/lib{heap,merge,nisam,my{sys,strings,sqld,isammrg,isam},vio,dbug}.a |
| 863 | fi |
1131 | fi |
| 864 | |
1132 | |
| 865 | # Unless they explicitly specific USE=test, then do not install the |
1133 | # Unless they explicitly specific USE=test, then do not install the |
| 866 | # testsuite. It DOES have a use to be installed, esp. when you want to do a |
1134 | # testsuite. It DOES have a use to be installed, esp. when you want to do a |
| … | |
… | |
| 868 | if use !test ; then |
1136 | if use !test ; then |
| 869 | rm -rf "${D}"/${MY_SHAREDSTATEDIR}/mysql-test |
1137 | rm -rf "${D}"/${MY_SHAREDSTATEDIR}/mysql-test |
| 870 | fi |
1138 | fi |
| 871 | |
1139 | |
| 872 | # Configuration stuff |
1140 | # Configuration stuff |
| 873 | if mysql_version_is_at_least "4.1" ; then |
1141 | case ${MYSQL_PV_MAJOR} in |
| 874 | mysql_mycnf_version="4.1" |
|
|
| 875 | else |
|
|
| 876 | mysql_mycnf_version="4.0" |
1142 | 3*|4.0) mysql_mycnf_version="4.0" ;; |
| 877 | fi |
1143 | 4.[1-9]|5.0) mysql_mycnf_version="4.1" ;; |
| 878 | einfo "Building default my.cnf" |
1144 | 5.[1-9]|6*|7*) mysql_mycnf_version="5.1" ;; |
|
|
1145 | esac |
|
|
1146 | einfo "Building default my.cnf (${mysql_mycnf_version})" |
| 879 | insinto "${MY_SYSCONFDIR}" |
1147 | insinto "${MY_SYSCONFDIR#${EPREFIX}}" |
| 880 | doins scripts/mysqlaccess.conf |
1148 | doins scripts/mysqlaccess.conf |
|
|
1149 | mycnf_src="my.cnf-${mysql_mycnf_version}" |
| 881 | sed -e "s!@DATADIR@!${MY_DATADIR}!g" \ |
1150 | sed -e "s!@DATADIR@!${MY_DATADIR}!g" \ |
| 882 | "${FILESDIR}/my.cnf-${mysql_mycnf_version}" \ |
1151 | -e "s!/tmp!${EPREFIX}/tmp!" \ |
|
|
1152 | -e "s!/usr!${EPREFIX}/usr!" \ |
|
|
1153 | -e "s!= /var!= ${EPREFIX}/var!" \ |
|
|
1154 | "${FILESDIR}/${mycnf_src}" \ |
| 883 | > "${TMPDIR}/my.cnf.ok" |
1155 | > "${TMPDIR}/my.cnf.ok" |
| 884 | if mysql_version_is_at_least "4.1" && use latin1 ; then |
1156 | use prefix && sed -i -e '/^user[ ]*= mysql$/d' "${TMPDIR}/my.cnf.ok" |
| 885 | sed -e "s|utf8|latin1|g" -i "${TMPDIR}/my.cnf.ok" |
1157 | if use latin1 ; then |
|
|
1158 | sed -i \ |
|
|
1159 | -e "/character-set/s|utf8|latin1|g" \ |
|
|
1160 | "${TMPDIR}/my.cnf.ok" |
| 886 | fi |
1161 | fi |
| 887 | newins "${TMPDIR}/my.cnf.ok" my.cnf |
1162 | newins "${TMPDIR}/my.cnf.ok" my.cnf |
| 888 | |
1163 | |
| 889 | # Minimal builds don't have the MySQL server |
1164 | # Minimal builds don't have the MySQL server |
| 890 | if ! use minimal ; then |
1165 | if ! use minimal ; then |
| 891 | einfo "Creating initial directories" |
1166 | einfo "Creating initial directories" |
| 892 | # Empty directories ... |
1167 | # Empty directories ... |
| 893 | diropts "-m0750" |
1168 | diropts "-m0750" |
| 894 | if [[ "${PREVIOUS_DATADIR}" != "yes" ]] ; then |
1169 | if [[ "${PREVIOUS_DATADIR}" != "yes" ]] ; then |
| 895 | dodir "${MY_DATADIR}" |
1170 | dodir "${MY_DATADIR#${EPREFIX}}" |
| 896 | keepdir "${MY_DATADIR}" |
1171 | keepdir "${MY_DATADIR#${EPREFIX}}" |
| 897 | chown -R mysql:mysql "${D}/${MY_DATADIR}" |
1172 | chown -R mysql:mysql "${D}/${MY_DATADIR}" |
| 898 | fi |
1173 | fi |
| 899 | |
1174 | |
| 900 | diropts "-m0755" |
1175 | diropts "-m0755" |
| 901 | for folder in "${MY_LOGDIR}" "/var/run/mysqld" ; do |
1176 | for folder in "${MY_LOGDIR#${EPREFIX}}" "/var/run/mysqld" ; do |
| 902 | dodir "${folder}" |
1177 | dodir "${folder}" |
| 903 | keepdir "${folder}" |
1178 | keepdir "${folder}" |
| 904 | chown -R mysql:mysql "${D}/${folder}" |
1179 | chown -R mysql:mysql "${ED}/${folder}" |
| 905 | done |
1180 | done |
| 906 | fi |
1181 | fi |
| 907 | |
1182 | |
| 908 | # Docs |
1183 | # Docs |
| 909 | einfo "Installing docs" |
1184 | einfo "Installing docs" |
| 910 | dodoc README ChangeLog EXCEPTIONS-CLIENT INSTALL-SOURCE |
1185 | for i in README ChangeLog EXCEPTIONS-CLIENT INSTALL-SOURCE ; do |
|
|
1186 | [[ -f "$i" ]] && dodoc "$i" |
|
|
1187 | done |
| 911 | doinfo "${S}"/Docs/mysql.info |
1188 | doinfo "${S}"/Docs/mysql.info |
| 912 | |
1189 | |
| 913 | # Minimal builds don't have the MySQL server |
1190 | # Minimal builds don't have the MySQL server |
| 914 | if ! use minimal ; then |
1191 | if ! use minimal ; then |
| 915 | einfo "Including support files and sample configurations" |
1192 | einfo "Including support files and sample configurations" |
| … | |
… | |
| 927 | [[ -f "$script" ]] && [[ "${script%.sh}" == "${script}" ]] && dodoc "${script}" |
1204 | [[ -f "$script" ]] && [[ "${script%.sh}" == "${script}" ]] && dodoc "${script}" |
| 928 | done |
1205 | done |
| 929 | |
1206 | |
| 930 | fi |
1207 | fi |
| 931 | |
1208 | |
| 932 | mysql_lib_symlinks "${D}" |
1209 | mysql_lib_symlinks "${ED}" |
| 933 | } |
1210 | } |
| 934 | |
1211 | |
| 935 | # @FUNCTION: mysql_pkg_preinst |
1212 | # @FUNCTION: mysql_pkg_preinst |
| 936 | # @DESCRIPTION: |
1213 | # @DESCRIPTION: |
| 937 | # Create the user and groups for mysql - die if that fails. |
1214 | # Create the user and groups for mysql - die if that fails. |
| … | |
… | |
| 951 | mysql_pkg_postinst() { |
1228 | mysql_pkg_postinst() { |
| 952 | # Make sure the vars are correctly initialized |
1229 | # Make sure the vars are correctly initialized |
| 953 | mysql_init_vars |
1230 | mysql_init_vars |
| 954 | |
1231 | |
| 955 | # Check FEATURES="collision-protect" before removing this |
1232 | # Check FEATURES="collision-protect" before removing this |
| 956 | [[ -d "${ROOT}/var/log/mysql" ]] || install -d -m0750 -o mysql -g mysql "${ROOT}${MY_LOGDIR}" |
1233 | [[ -d "${EROOT}/var/log/mysql" ]] || install -d -m0750 -o mysql -g mysql "${ROOT}${MY_LOGDIR}" |
| 957 | |
1234 | |
| 958 | # Secure the logfiles |
1235 | # Secure the logfiles |
| 959 | touch "${ROOT}${MY_LOGDIR}"/mysql.{log,err} |
1236 | touch "${ROOT}${MY_LOGDIR}"/mysql.{log,err} |
| 960 | chown mysql:mysql "${ROOT}${MY_LOGDIR}"/mysql* |
1237 | chown mysql:mysql "${ROOT}${MY_LOGDIR}"/mysql* |
| 961 | chmod 0660 "${ROOT}${MY_LOGDIR}"/mysql* |
1238 | chmod 0660 "${ROOT}${MY_LOGDIR}"/mysql* |
| … | |
… | |
| 966 | for script in \ |
1243 | for script in \ |
| 967 | support-files/my-*.cnf \ |
1244 | support-files/my-*.cnf \ |
| 968 | support-files/magic \ |
1245 | support-files/magic \ |
| 969 | support-files/ndb-config-2-node.ini |
1246 | support-files/ndb-config-2-node.ini |
| 970 | do |
1247 | do |
|
|
1248 | [[ -f "${script}" ]] \ |
| 971 | dodoc "${script}" |
1249 | && dodoc "${script}" |
| 972 | done |
1250 | done |
| 973 | |
1251 | |
| 974 | docinto "scripts" |
1252 | docinto "scripts" |
| 975 | for script in scripts/mysql* ; do |
1253 | for script in scripts/mysql* ; do |
|
|
1254 | [[ -f "${script}" ]] \ |
| 976 | [[ "${script%.sh}" == "${script}" ]] && dodoc "${script}" |
1255 | && [[ "${script%.sh}" == "${script}" ]] \ |
|
|
1256 | && dodoc "${script}" |
| 977 | done |
1257 | done |
| 978 | |
1258 | |
| 979 | einfo |
1259 | einfo |
| 980 | elog "You might want to run:" |
1260 | elog "You might want to run:" |
| 981 | elog "\"emerge --config =${CATEGORY}/${PF}\"" |
1261 | elog "\"emerge --config =${CATEGORY}/${PF}\"" |
| 982 | elog "if this is a new install." |
1262 | elog "if this is a new install." |
| 983 | einfo |
1263 | einfo |
| 984 | fi |
|
|
| 985 | |
1264 | |
| 986 | if pbxt_applicable ; then |
1265 | einfo |
|
|
1266 | elog "If you are upgrading major versions, you should run the" |
|
|
1267 | elog "mysql_upgrade tool." |
|
|
1268 | einfo |
|
|
1269 | fi |
|
|
1270 | |
|
|
1271 | if pbxt_available && use pbxt ; then |
| 987 | # TODO: explain it better |
1272 | # TODO: explain it better |
| 988 | elog " mysql> INSTALL PLUGIN pbxt SONAME 'libpbxt.so';" |
1273 | elog " mysql> INSTALL PLUGIN pbxt SONAME 'libpbxt.so';" |
| 989 | elog " mysql> CREATE TABLE t1 (c1 int, c2 text) ENGINE=pbxt;" |
1274 | elog " mysql> CREATE TABLE t1 (c1 int, c2 text) ENGINE=pbxt;" |
| 990 | elog "if, after that, you cannot start the MySQL server," |
1275 | elog "if, after that, you cannot start the MySQL server," |
| 991 | elog "remove the ${MY_DATADIR}/mysql/plugin.* files, then" |
1276 | elog "remove the ${MY_DATADIR}/mysql/plugin.* files, then" |
| … | |
… | |
| 1017 | if built_with_use ${CATEGORY}/${PN} minimal ; then |
1302 | if built_with_use ${CATEGORY}/${PN} minimal ; then |
| 1018 | die "Minimal builds do NOT include the MySQL server" |
1303 | die "Minimal builds do NOT include the MySQL server" |
| 1019 | fi |
1304 | fi |
| 1020 | |
1305 | |
| 1021 | if [[ ( -n "${MY_DATADIR}" ) && ( "${MY_DATADIR}" != "${old_MY_DATADIR}" ) ]]; then |
1306 | if [[ ( -n "${MY_DATADIR}" ) && ( "${MY_DATADIR}" != "${old_MY_DATADIR}" ) ]]; then |
| 1022 | local MY_DATADIR_s="$(strip_duplicate_slashes ${ROOT}/${MY_DATADIR})" |
1307 | local MY_DATADIR_s="${ROOT}/${MY_DATADIR}" |
|
|
1308 | MY_DATADIR_s="${MY_DATADIR_s%%/}" |
| 1023 | local old_MY_DATADIR_s="$(strip_duplicate_slashes ${ROOT}/${old_MY_DATADIR})" |
1309 | local old_MY_DATADIR_s="${ROOT}/${old_MY_DATADIR}" |
|
|
1310 | old_MY_DATADIR_s="${old_MY_DATADIR_s%%/}" |
| 1024 | |
1311 | |
| 1025 | if [[ -d "${old_MY_DATADIR_s}" ]]; then |
1312 | if [[ -d "${old_MY_DATADIR_s}" ]]; then |
| 1026 | if [[ -d "${MY_DATADIR_s}" ]]; then |
1313 | if [[ -d "${MY_DATADIR_s}" ]]; then |
| 1027 | ewarn "Both ${old_MY_DATADIR_s} and ${MY_DATADIR_s} exist" |
1314 | ewarn "Both ${old_MY_DATADIR_s} and ${MY_DATADIR_s} exist" |
| 1028 | ewarn "Attempting to use ${MY_DATADIR_s} and preserving ${old_MY_DATADIR_s}" |
1315 | ewarn "Attempting to use ${MY_DATADIR_s} and preserving ${old_MY_DATADIR_s}" |
| … | |
… | |
| 1042 | fi |
1329 | fi |
| 1043 | fi |
1330 | fi |
| 1044 | |
1331 | |
| 1045 | local pwd1="a" |
1332 | local pwd1="a" |
| 1046 | local pwd2="b" |
1333 | local pwd2="b" |
| 1047 | local maxtry=5 |
1334 | local maxtry=15 |
|
|
1335 | |
|
|
1336 | if [ -z "${MYSQL_ROOT_PASSWORD}" -a -f "${EROOT}/root/.my.cnf" ]; then |
|
|
1337 | MYSQL_ROOT_PASSWORD="$(sed -n -e '/^password=/s,^password=,,gp' "${EROOT}/root/.my.cnf")" |
|
|
1338 | fi |
| 1048 | |
1339 | |
| 1049 | if [[ -d "${ROOT}/${MY_DATADIR}/mysql" ]] ; then |
1340 | if [[ -d "${ROOT}/${MY_DATADIR}/mysql" ]] ; then |
| 1050 | ewarn "You have already a MySQL database in place." |
1341 | ewarn "You have already a MySQL database in place." |
| 1051 | ewarn "(${ROOT}/${MY_DATADIR}/*)" |
1342 | ewarn "(${ROOT}/${MY_DATADIR}/*)" |
| 1052 | ewarn "Please rename or delete it if you wish to replace it." |
1343 | ewarn "Please rename or delete it if you wish to replace it." |
| … | |
… | |
| 1055 | |
1346 | |
| 1056 | # Bug #213475 - MySQL _will_ object strenously if your machine is named |
1347 | # Bug #213475 - MySQL _will_ object strenously if your machine is named |
| 1057 | # localhost. Also causes weird failures. |
1348 | # localhost. Also causes weird failures. |
| 1058 | [[ "${HOSTNAME}" == "localhost" ]] && die "Your machine must NOT be named localhost" |
1349 | [[ "${HOSTNAME}" == "localhost" ]] && die "Your machine must NOT be named localhost" |
| 1059 | |
1350 | |
| 1060 | einfo "Creating the mysql database and setting proper" |
1351 | if [ -z "${MYSQL_ROOT_PASSWORD}" ]; then |
| 1061 | einfo "permissions on it ..." |
|
|
| 1062 | |
1352 | |
| 1063 | einfo "Insert a password for the mysql 'root' user" |
1353 | einfo "Please provide a password for the mysql 'root' user now, in the" |
|
|
1354 | einfo "MYSQL_ROOT_PASSWORD env var or through the /root/.my.cnf file." |
| 1064 | ewarn "Avoid [\"'\\_%] characters in the password" |
1355 | ewarn "Avoid [\"'\\_%] characters in the password" |
| 1065 | read -rsp " >" pwd1 ; echo |
1356 | read -rsp " >" pwd1 ; echo |
| 1066 | |
1357 | |
| 1067 | einfo "Retype the password" |
1358 | einfo "Retype the password" |
| 1068 | read -rsp " >" pwd2 ; echo |
1359 | read -rsp " >" pwd2 ; echo |
| 1069 | |
1360 | |
| 1070 | if [[ "x$pwd1" != "x$pwd2" ]] ; then |
1361 | if [[ "x$pwd1" != "x$pwd2" ]] ; then |
| 1071 | die "Passwords are not the same" |
1362 | die "Passwords are not the same" |
|
|
1363 | fi |
|
|
1364 | MYSQL_ROOT_PASSWORD="${pwd1}" |
|
|
1365 | unset pwd1 pwd2 |
| 1072 | fi |
1366 | fi |
| 1073 | |
1367 | |
| 1074 | local options="" |
1368 | local options="" |
| 1075 | local sqltmp="$(emktemp)" |
1369 | local sqltmp="$(emktemp)" |
| 1076 | |
1370 | |
| … | |
… | |
| 1079 | && cp "${help_tables}" "${TMPDIR}/fill_help_tables.sql" \ |
1373 | && cp "${help_tables}" "${TMPDIR}/fill_help_tables.sql" \ |
| 1080 | || touch "${TMPDIR}/fill_help_tables.sql" |
1374 | || touch "${TMPDIR}/fill_help_tables.sql" |
| 1081 | help_tables="${TMPDIR}/fill_help_tables.sql" |
1375 | help_tables="${TMPDIR}/fill_help_tables.sql" |
| 1082 | |
1376 | |
| 1083 | pushd "${TMPDIR}" &>/dev/null |
1377 | pushd "${TMPDIR}" &>/dev/null |
| 1084 | "${ROOT}/usr/bin/mysql_install_db" >"${TMPDIR}"/mysql_install_db.log 2>&1 |
1378 | "${EROOT}/usr/bin/mysql_install_db" >"${TMPDIR}"/mysql_install_db.log 2>&1 |
| 1085 | if [ $? -ne 0 ]; then |
1379 | if [ $? -ne 0 ]; then |
| 1086 | grep -B5 -A999 -i "ERROR" "${TMPDIR}"/mysql_install_db.log 1>&2 |
1380 | grep -B5 -A999 -i "ERROR" "${TMPDIR}"/mysql_install_db.log 1>&2 |
| 1087 | die "Failed to run mysql_install_db. Please review /var/log/mysql/mysqld.err AND ${TMPDIR}/mysql_install_db.log" |
1381 | die "Failed to run mysql_install_db. Please review /var/log/mysql/mysqld.err AND ${TMPDIR}/mysql_install_db.log" |
| 1088 | fi |
1382 | fi |
| 1089 | popd &>/dev/null |
1383 | popd &>/dev/null |
| 1090 | [[ -f "${ROOT}/${MY_DATADIR}/mysql/user.frm" ]] \ |
1384 | [[ -f "${ROOT}/${MY_DATADIR}/mysql/user.frm" ]] \ |
| 1091 | || die "MySQL databases not installed" |
1385 | || die "MySQL databases not installed" |
| 1092 | chown -R mysql:mysql "${ROOT}/${MY_DATADIR}" 2>/dev/null |
1386 | chown -R mysql:mysql "${ROOT}/${MY_DATADIR}" 2>/dev/null |
| 1093 | chmod 0750 "${ROOT}/${MY_DATADIR}" 2>/dev/null |
1387 | chmod 0750 "${ROOT}/${MY_DATADIR}" 2>/dev/null |
| 1094 | |
1388 | |
|
|
1389 | # Figure out which options we need to disable to do the setup |
|
|
1390 | helpfile="${TMPDIR}/mysqld-help" |
|
|
1391 | ${EROOT}/usr/sbin/mysqld --verbose --help >"${helpfile}" 2>/dev/null |
|
|
1392 | for opt in grant-tables host-cache name-resolve networking slave-start bdb \ |
|
|
1393 | federated innodb ssl log-bin relay-log slow-query-log external-locking \ |
|
|
1394 | ndbcluster \ |
|
|
1395 | ; do |
|
|
1396 | optexp="--(skip-)?${opt}" optfull="--skip-${opt}" |
|
|
1397 | egrep -sq -- "${optexp}" "${helpfile}" && options="${options} ${optfull}" |
|
|
1398 | done |
|
|
1399 | # But some options changed names |
|
|
1400 | egrep -sq external-locking "${helpfile}" && \ |
|
|
1401 | options="${options/skip-locking/skip-external-locking}" |
|
|
1402 | |
| 1095 | if mysql_version_is_at_least "4.1.3" ; then |
1403 | if mysql_version_is_at_least "4.1.3" ; then |
| 1096 | options="--skip-ndbcluster" |
|
|
| 1097 | |
|
|
| 1098 | # Filling timezones, see |
1404 | # Filling timezones, see |
| 1099 | # http://dev.mysql.com/doc/mysql/en/time-zone-support.html |
1405 | # http://dev.mysql.com/doc/mysql/en/time-zone-support.html |
| 1100 | "${ROOT}/usr/bin/mysql_tzinfo_to_sql" "${ROOT}/usr/share/zoneinfo" > "${sqltmp}" 2>/dev/null |
1406 | "${EROOT}/usr/bin/mysql_tzinfo_to_sql" "${EROOT}/usr/share/zoneinfo" > "${sqltmp}" 2>/dev/null |
| 1101 | |
1407 | |
| 1102 | if [[ -r "${help_tables}" ]] ; then |
1408 | if [[ -r "${help_tables}" ]] ; then |
| 1103 | cat "${help_tables}" >> "${sqltmp}" |
1409 | cat "${help_tables}" >> "${sqltmp}" |
| 1104 | fi |
1410 | fi |
| 1105 | fi |
1411 | fi |
| 1106 | |
1412 | |
|
|
1413 | einfo "Creating the mysql database and setting proper" |
|
|
1414 | einfo "permissions on it ..." |
|
|
1415 | |
|
|
1416 | use prefix || options="${options} --user=mysql" |
|
|
1417 | |
| 1107 | local socket="${ROOT}/var/run/mysqld/mysqld${RANDOM}.sock" |
1418 | local socket="${EROOT}/var/run/mysqld/mysqld${RANDOM}.sock" |
| 1108 | local pidfile="${ROOT}/var/run/mysqld/mysqld${RANDOM}.pid" |
1419 | local pidfile="${EROOT}/var/run/mysqld/mysqld${RANDOM}.pid" |
| 1109 | local mysqld="${ROOT}/usr/sbin/mysqld \ |
1420 | local mysqld="${EROOT}/usr/sbin/mysqld \ |
| 1110 | ${options} \ |
1421 | ${options} \ |
| 1111 | --user=mysql \ |
1422 | --user=mysql \ |
| 1112 | --skip-grant-tables \ |
|
|
| 1113 | --basedir=${ROOT}/usr \ |
1423 | --basedir=${EROOT}/usr \ |
| 1114 | --datadir=${ROOT}/${MY_DATADIR} \ |
1424 | --datadir=${ROOT}/${MY_DATADIR} \ |
| 1115 | --skip-innodb \ |
|
|
| 1116 | --skip-bdb \ |
|
|
| 1117 | --skip-networking \ |
|
|
| 1118 | --max_allowed_packet=8M \ |
1425 | --max_allowed_packet=8M \ |
| 1119 | --net_buffer_length=16K \ |
1426 | --net_buffer_length=16K \ |
|
|
1427 | --default-storage-engine=MyISAM \ |
| 1120 | --socket=${socket} \ |
1428 | --socket=${socket} \ |
| 1121 | --pid-file=${pidfile}" |
1429 | --pid-file=${pidfile}" |
|
|
1430 | #einfo "About to start mysqld: ${mysqld}" |
|
|
1431 | ebegin "Starting mysqld" |
| 1122 | ${mysqld} & |
1432 | ${mysqld} & |
|
|
1433 | rc=$? |
| 1123 | while ! [[ -S "${socket}" || "${maxtry}" -lt 1 ]] ; do |
1434 | while ! [[ -S "${socket}" || "${maxtry}" -lt 1 ]] ; do |
| 1124 | maxtry=$((${maxtry}-1)) |
1435 | maxtry=$((${maxtry}-1)) |
| 1125 | echo -n "." |
1436 | echo -n "." |
| 1126 | sleep 1 |
1437 | sleep 1 |
| 1127 | done |
1438 | done |
|
|
1439 | eend $rc |
| 1128 | |
1440 | |
|
|
1441 | if ! [[ -S "${socket}" ]]; then |
|
|
1442 | die "Completely failed to start up mysqld with: ${mysqld}" |
|
|
1443 | fi |
|
|
1444 | |
|
|
1445 | ebegin "Setting root password" |
| 1129 | # Do this from memory, as we don't want clear text passwords in temp files |
1446 | # Do this from memory, as we don't want clear text passwords in temp files |
| 1130 | local sql="UPDATE mysql.user SET Password = PASSWORD('${pwd1}') WHERE USER='root'" |
1447 | local sql="UPDATE mysql.user SET Password = PASSWORD('${MYSQL_ROOT_PASSWORD}') WHERE USER='root'" |
| 1131 | "${ROOT}/usr/bin/mysql" \ |
1448 | "${EROOT}/usr/bin/mysql" \ |
| 1132 | --socket=${socket} \ |
1449 | --socket=${socket} \ |
| 1133 | -hlocalhost \ |
1450 | -hlocalhost \ |
| 1134 | -e "${sql}" |
1451 | -e "${sql}" |
|
|
1452 | eend $? |
| 1135 | |
1453 | |
| 1136 | einfo "Loading \"zoneinfo\", this step may require a few seconds ..." |
1454 | ebegin "Loading \"zoneinfo\", this step may require a few seconds ..." |
| 1137 | |
|
|
| 1138 | "${ROOT}/usr/bin/mysql" \ |
1455 | "${EROOT}/usr/bin/mysql" \ |
| 1139 | --socket=${socket} \ |
1456 | --socket=${socket} \ |
| 1140 | -hlocalhost \ |
1457 | -hlocalhost \ |
| 1141 | -uroot \ |
1458 | -uroot \ |
| 1142 | -p"${pwd1}" \ |
1459 | -p"${MYSQL_ROOT_PASSWORD}" \ |
| 1143 | mysql < "${sqltmp}" |
1460 | mysql < "${sqltmp}" |
|
|
1461 | rc=$? |
|
|
1462 | eend $? |
|
|
1463 | [ $rc -ne 0 ] && ewarn "Failed to load zoneinfo!" |
| 1144 | |
1464 | |
| 1145 | # Stop the server and cleanup |
1465 | # Stop the server and cleanup |
|
|
1466 | einfo "Stopping the server ..." |
| 1146 | kill $(< "${pidfile}" ) |
1467 | kill $(< "${pidfile}" ) |
| 1147 | rm -f "${sqltmp}" |
1468 | rm -f "${sqltmp}" |
| 1148 | einfo "Stopping the server ..." |
|
|
| 1149 | wait %1 |
1469 | wait %1 |
| 1150 | einfo "Done" |
1470 | einfo "Done" |
| 1151 | } |
1471 | } |
| 1152 | |
1472 | |
| 1153 | # @FUNCTION: mysql_pkg_postrm |
1473 | # @FUNCTION: mysql_pkg_postrm |
| 1154 | # @DESCRIPTION: |
1474 | # @DESCRIPTION: |
| 1155 | # Remove mysql symlinks. |
1475 | # Remove mysql symlinks. |
| 1156 | mysql_pkg_postrm() { |
1476 | mysql_pkg_postrm() { |
| 1157 | : # mysql_lib_symlinks "${D}" |
1477 | : # mysql_lib_symlinks "${ED}" |
| 1158 | } |
1478 | } |