| 1 | # Copyright 1999-2009 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.133 2010/02/21 00:18:16 robbat2 Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/mysql.eclass,v 1.163 2011/08/21 16:14:56 jmbsvicetto Exp $ |
| 4 | |
4 | |
| 5 | # @ECLASS: mysql.eclass |
5 | # @ECLASS: mysql.eclass |
| 6 | # @MAINTAINER: |
6 | # @MAINTAINER: |
| 7 | # Author: Francesco Riosa (Retired) <vivo@gentoo.org> |
7 | # Author: Francesco Riosa (Retired) <vivo@gentoo.org> |
| 8 | # Maintainers: MySQL Team <mysql-bugs@gentoo.org> |
8 | # Maintainers: MySQL Team <mysql-bugs@gentoo.org> |
| … | |
… | |
| 51 | ;; |
51 | ;; |
| 52 | *) |
52 | *) |
| 53 | die "Unsupported EAPI: ${EAPI}" ;; |
53 | die "Unsupported EAPI: ${EAPI}" ;; |
| 54 | esac |
54 | esac |
| 55 | |
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 |
|
|
69 | fi |
|
|
70 | |
|
|
71 | |
| 56 | # @ECLASS-VARIABLE: MYSQL_VERSION_ID |
72 | # @ECLASS-VARIABLE: MYSQL_VERSION_ID |
| 57 | # @DESCRIPTION: |
73 | # @DESCRIPTION: |
| 58 | # MYSQL_VERSION_ID will be: |
74 | # MYSQL_VERSION_ID will be: |
| 59 | # 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] |
| 60 | # 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 |
| … | |
… | |
| 77 | # @DESCRIPTION: |
93 | # @DESCRIPTION: |
| 78 | # Specifiy if community features are available. Possible values are 1 (yes) |
94 | # Specifiy if community features are available. Possible values are 1 (yes) |
| 79 | # and 0 (no). |
95 | # and 0 (no). |
| 80 | # Community features are available in mysql-community |
96 | # Community features are available in mysql-community |
| 81 | # AND in the re-merged mysql-5.0.82 and newer |
97 | # AND in the re-merged mysql-5.0.82 and newer |
| 82 | if [ "${PN}" == "mysql-community" ]; then |
98 | if [ "${PN}" == "mysql-community" -o "${PN}" == "mariadb" ]; then |
| 83 | MYSQL_COMMUNITY_FEATURES=1 |
99 | MYSQL_COMMUNITY_FEATURES=1 |
| 84 | elif [ "${PV#5.0}" != "${PV}" ] && mysql_version_is_at_least "5.0.82"; then |
100 | elif [ "${PV#5.0}" != "${PV}" ] && mysql_version_is_at_least "5.0.82"; then |
| 85 | MYSQL_COMMUNITY_FEATURES=1 |
101 | MYSQL_COMMUNITY_FEATURES=1 |
| 86 | elif [ "${PV#5.1}" != "${PV}" ] && mysql_version_is_at_least "5.1.28"; then |
102 | elif [ "${PV#5.1}" != "${PV}" ] && mysql_version_is_at_least "5.1.28"; then |
| 87 | MYSQL_COMMUNITY_FEATURES=1 |
103 | MYSQL_COMMUNITY_FEATURES=1 |
| 88 | elif [ "${PV#5.4}" != "${PV}" ] ; then |
104 | elif [ "${PV#5.4}" != "${PV}" ] ; then |
| 89 | MYSQL_COMMUNITY_FEATURES=1 |
105 | MYSQL_COMMUNITY_FEATURES=1 |
| 90 | elif [ "${PV#5.5}" != "${PV}" ] ; then |
106 | elif [ "${PV#5.5}" != "${PV}" ] ; then |
| 91 | MYSQL_COMMUNITY_FEATURES=1 |
107 | MYSQL_COMMUNITY_FEATURES=1 |
| 92 | elif [ "${PV#6.0}" != "${PV}" ] ; then |
108 | elif [ "${PV#6}" != "${PV}" ] ; then |
|
|
109 | MYSQL_COMMUNITY_FEATURES=1 |
|
|
110 | elif [ "${PV#7}" != "${PV}" ] ; then |
| 93 | MYSQL_COMMUNITY_FEATURES=1 |
111 | MYSQL_COMMUNITY_FEATURES=1 |
| 94 | else |
112 | else |
| 95 | MYSQL_COMMUNITY_FEATURES=0 |
113 | MYSQL_COMMUNITY_FEATURES=0 |
| 96 | fi |
114 | fi |
| 97 | |
115 | |
| … | |
… | |
| 112 | >=sys-apps/sed-4 |
130 | >=sys-apps/sed-4 |
| 113 | >=sys-apps/texinfo-4.7-r1 |
131 | >=sys-apps/texinfo-4.7-r1 |
| 114 | >=sys-libs/readline-4.1 |
132 | >=sys-libs/readline-4.1 |
| 115 | >=sys-libs/zlib-1.2.3" |
133 | >=sys-libs/zlib-1.2.3" |
| 116 | |
134 | |
|
|
135 | [[ "${PN}" == "mariadb" ]] \ |
|
|
136 | && DEPEND="${DEPEND} libevent? ( >=dev-libs/libevent-1.4 )" |
|
|
137 | |
| 117 | # 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 |
| 118 | for i in "" "-community" ; do |
139 | for i in "mysql" "mysql-community" "mysql-cluster" "mariadb" ; do |
| 119 | [[ "${i}" == ${PN#mysql} ]] || |
140 | [[ "${i}" == ${PN} ]] || |
| 120 | DEPEND="${DEPEND} !dev-db/mysql${i}" |
141 | DEPEND="${DEPEND} !dev-db/${i}" |
| 121 | done |
142 | done |
| 122 | |
143 | |
| 123 | RDEPEND="${DEPEND} |
144 | RDEPEND="${DEPEND} |
| 124 | !minimal? ( dev-db/mysql-init-scripts ) |
145 | !minimal? ( dev-db/mysql-init-scripts ) |
| 125 | selinux? ( sec-policy/selinux-mysql )" |
146 | selinux? ( sec-policy/selinux-mysql )" |
| 126 | |
147 | |
|
|
148 | DEPEND="${DEPEND} |
|
|
149 | virtual/yacc" |
|
|
150 | |
|
|
151 | if [ "${EAPI:-0}" = "2" ]; then |
|
|
152 | DEPEND="${DEPEND} static? ( || ( sys-libs/ncurses[static-libs] <=sys-libs/ncurses-5.7-r3 ) )" |
|
|
153 | fi |
|
|
154 | |
| 127 | # compile-time-only |
155 | # compile-time-only |
| 128 | mysql_version_is_at_least "5.1" \ |
156 | mysql_version_is_at_least "5.1" \ |
| 129 | || DEPEND="${DEPEND} berkdb? ( sys-apps/ed )" |
157 | || DEPEND="${DEPEND} berkdb? ( sys-apps/ed )" |
| 130 | |
158 | |
| 131 | # compile-time-only |
159 | # compile-time-only |
| 132 | mysql_version_is_at_least "5.1.12" \ |
160 | mysql_version_is_at_least "5.1.12" \ |
| 133 | && DEPEND="${DEPEND} >=dev-util/cmake-2.4.3" |
161 | && DEPEND="${DEPEND} >=dev-util/cmake-2.4.3" |
| 134 | |
162 | |
|
|
163 | [[ "${PN}" == "mariadb" ]] \ |
|
|
164 | && mysql_version_is_at_least "5.2" \ |
|
|
165 | && DEPEND="${DEPEND} oqgraph? ( >=dev-libs/boost-1.40.0 )" |
|
|
166 | #SphinxSE is included but is not available in 5.2.4 due to a missing plug.in file |
|
|
167 | # sphinx? ( app-misc/sphinx )" |
|
|
168 | |
| 135 | # dev-perl/DBD-mysql is needed by some scripts installed by MySQL |
169 | # dev-perl/DBD-mysql is needed by some scripts installed by MySQL |
| 136 | PDEPEND="perl? ( >=dev-perl/DBD-mysql-2.9004 )" |
170 | PDEPEND="perl? ( >=dev-perl/DBD-mysql-2.9004 )" |
| 137 | |
171 | |
| 138 | # For other stuff to bring us in |
172 | # For other stuff to bring us in |
| 139 | PDEPEND="${PDEPEND} =virtual/mysql-$(get_version_component_range 1-2 ${PV})" |
173 | PDEPEND="${PDEPEND} =virtual/mysql-${MYSQL_PV_MAJOR}" |
| 140 | |
174 | |
| 141 | # Work out the default SERVER_URI correctly |
175 | # Work out the default SERVER_URI correctly |
| 142 | if [ -z "${SERVER_URI}" ]; then |
176 | if [ -z "${SERVER_URI}" ]; then |
| 143 | [ -z "${MY_PV}" ] && MY_PV="${PV//_/-}" |
177 | [ -z "${MY_PV}" ] && MY_PV="${PV//_/-}" |
|
|
178 | if [ "${PN}" == "mariadb" ]; then |
|
|
179 | MARIA_FULL_PV="$(replace_version_separator 3 '-' ${PV})" |
|
|
180 | MARIA_FULL_P="${PN}-${MARIA_FULL_PV}" |
|
|
181 | SERVER_URI=" |
|
|
182 | http://ftp.osuosl.org/pub/mariadb/${MARIA_FULL_P}/kvm-tarbake-jaunty-x86/${MARIA_FULL_P}.tar.gz |
|
|
183 | http://ftp.rediris.es/mirror/MariaDB/${MARIA_FULL_P}/kvm-tarbake-jaunty-x86/${MARIA_FULL_P}.tar.gz |
|
|
184 | http://maria.llarian.net/download/${MARIA_FULL_P}/kvm-tarbake-jaunty-x86/${MARIA_FULL_P}.tar.gz |
|
|
185 | http://launchpad.net/maria/${MYSQL_PV_MAJOR}/ongoing/+download/${MARIA_FULL_P}.tar.gz |
|
|
186 | http://mirrors.fe.up.pt/pub/${PN}/${MARIA_FULL_P}/kvm-tarbake-jaunty-x86/${MARIA_FULL_P}.tar.gz |
|
|
187 | http://ftp-stud.hs-esslingen.de/pub/Mirrors/${PN}/${MARIA_FULL_P}/kvm-tarbake-jaunty-x86/${MARIA_FULL_P}.tar.gz |
|
|
188 | " |
| 144 | # The community build is on the mirrors |
189 | # The community and cluster builds are on the mirrors |
| 145 | if [ "${MYSQL_COMMUNITY_FEATURES}" == "1" ]; then |
190 | elif [[ "${MYSQL_COMMUNITY_FEATURES}" == "1" || ${PN} == "mysql-cluster" ]] ; then |
| 146 | SERVER_URI="mirror://mysql/Downloads/MySQL-${PV%.*}/mysql-${MY_PV}.tar.gz" |
191 | if [[ "${PN}" == "mysql-cluster" ]] ; then |
|
|
192 | URI_DIR="MySQL-Cluster" |
|
|
193 | URI_FILE="mysql-cluster-gpl" |
|
|
194 | else |
|
|
195 | URI_DIR="MySQL" |
|
|
196 | URI_FILE="mysql" |
|
|
197 | fi |
|
|
198 | URI_A="${URI_FILE}-${MY_PV}.tar.gz" |
|
|
199 | MIRROR_PV=$(get_version_component_range 1-2 ${PV}) |
|
|
200 | # Recently upstream switched to an archive site, and not on mirrors |
|
|
201 | SERVER_URI="http://downloads.mysql.com/archives/${URI_FILE}-${MIRROR_PV}/${URI_A} |
|
|
202 | mirror://mysql/Downloads/${URI_DIR}-${PV%.*}/${URI_A}" |
| 147 | # The (old) enterprise source is on the primary site only |
203 | # The (old) enterprise source is on the primary site only |
| 148 | elif [ "${PN}" == "mysql" ]; then |
204 | elif [ "${PN}" == "mysql" ]; then |
| 149 | SERVER_URI="ftp://ftp.mysql.com/pub/mysql/src/mysql-${MY_PV}.tar.gz" |
205 | SERVER_URI="ftp://ftp.mysql.com/pub/mysql/src/mysql-${MY_PV}.tar.gz" |
| 150 | fi |
206 | fi |
| 151 | fi |
207 | fi |
| … | |
… | |
| 160 | http://g3nt8.org/patches/mysql-extras-${MY_EXTRAS_VER}.tar.bz2 |
216 | 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" |
217 | http://dev.gentoo.org/~robbat2/distfiles/mysql-extras-${MY_EXTRAS_VER}.tar.bz2" |
| 162 | |
218 | |
| 163 | DESCRIPTION="A fast, multi-threaded, multi-user SQL database server." |
219 | DESCRIPTION="A fast, multi-threaded, multi-user SQL database server." |
| 164 | HOMEPAGE="http://www.mysql.com/" |
220 | HOMEPAGE="http://www.mysql.com/" |
|
|
221 | if [[ "${PN}" == "mariadb" ]]; then |
|
|
222 | HOMEPAGE="http://askmonty.org/" |
|
|
223 | DESCRIPTION="MariaDB is a MySQL fork with 3rd-party patches and additional storage engines merged." |
|
|
224 | fi |
|
|
225 | if [[ "${PN}" == "mysql-community" ]]; then |
|
|
226 | DESCRIPTION="${DESCRIPTION} (obsolete, move to dev-db/mysql)" |
|
|
227 | fi |
| 165 | LICENSE="GPL-2" |
228 | LICENSE="GPL-2" |
| 166 | SLOT="0" |
229 | SLOT="0" |
| 167 | IUSE="big-tables debug embedded minimal ${IUSE_DEFAULT_ON}perl selinux ssl static test" |
230 | IUSE="big-tables debug embedded minimal ${IUSE_DEFAULT_ON}perl selinux ssl static test" |
| 168 | |
231 | |
| 169 | mysql_version_is_at_least "4.1" \ |
232 | mysql_version_is_at_least "4.1" \ |
| 170 | && IUSE="${IUSE} latin1" |
233 | && IUSE="${IUSE} latin1" |
| 171 | |
234 | |
| 172 | mysql_version_is_at_least "4.1.3" \ |
235 | if mysql_version_is_at_least "4.1.3" ; then |
| 173 | && IUSE="${IUSE} cluster extraengine" |
236 | IUSE="${IUSE} extraengine" |
|
|
237 | if [[ "${PN}" != "mysql-cluster" ]] ; then |
|
|
238 | IUSE="${IUSE} cluster" |
|
|
239 | fi |
|
|
240 | fi |
| 174 | |
241 | |
| 175 | mysql_version_is_at_least "5.0" \ |
242 | mysql_version_is_at_least "5.0" \ |
| 176 | || IUSE="${IUSE} raid" |
243 | || IUSE="${IUSE} raid" |
| 177 | |
244 | |
| 178 | mysql_version_is_at_least "5.0.18" \ |
245 | mysql_version_is_at_least "5.0.18" \ |
| … | |
… | |
| 182 | || IUSE="${IUSE} berkdb" |
249 | || IUSE="${IUSE} berkdb" |
| 183 | |
250 | |
| 184 | [ "${MYSQL_COMMUNITY_FEATURES}" == "1" ] \ |
251 | [ "${MYSQL_COMMUNITY_FEATURES}" == "1" ] \ |
| 185 | && IUSE="${IUSE} ${IUSE_DEFAULT_ON}community profiling" |
252 | && IUSE="${IUSE} ${IUSE_DEFAULT_ON}community profiling" |
| 186 | |
253 | |
| 187 | # PBXT engine |
254 | [[ "${PN}" == "mariadb" ]] \ |
|
|
255 | && IUSE="${IUSE} libevent" |
|
|
256 | |
|
|
257 | [[ "${PN}" == "mariadb" ]] \ |
|
|
258 | && mysql_version_is_at_least "5.2" \ |
|
|
259 | && IUSE="${IUSE} oqgraph" |
|
|
260 | #SphinxSE is included but is not available in 5.2.4 due to a missing plug.in file |
|
|
261 | #&& IUSE="${IUSE} oqgraph sphinx" |
|
|
262 | |
|
|
263 | # MariaDB has integrated PBXT |
|
|
264 | # PBXT_VERSION means that we have a PBXT patch for this PV |
|
|
265 | # PBXT was only introduced after 5.1.12 |
|
|
266 | pbxt_patch_available() { |
|
|
267 | [[ "${PN}" != "mariadb" ]] \ |
| 188 | mysql_version_is_at_least "5.1.12" \ |
268 | && mysql_version_is_at_least "5.1.12" \ |
| 189 | && [[ -n "${PBXT_VERSION}" ]] \ |
269 | && [[ -n "${PBXT_VERSION}" ]] |
|
|
270 | return $? |
|
|
271 | } |
|
|
272 | |
|
|
273 | pbxt_available() { |
|
|
274 | pbxt_patch_available || [[ "${PN}" == "mariadb" ]] |
|
|
275 | return $? |
|
|
276 | } |
|
|
277 | |
|
|
278 | # Get the percona tarball if XTRADB_VER and PERCONA_VER are both set |
|
|
279 | # MariaDB has integrated XtraDB |
|
|
280 | # XTRADB_VERS means that we have a XTRADB patch for this PV |
|
|
281 | # XTRADB was only introduced after 5.1.26 |
|
|
282 | xtradb_patch_available() { |
|
|
283 | [[ "${PN}" != "mariadb" ]] \ |
|
|
284 | && mysql_version_is_at_least "5.1.26" \ |
|
|
285 | && [[ -n "${XTRADB_VER}" && -n "${PERCONA_VER}" ]] |
|
|
286 | return $? |
|
|
287 | } |
|
|
288 | |
|
|
289 | |
|
|
290 | pbxt_patch_available \ |
| 190 | && PBXT_P="pbxt-${PBXT_VERSION}" \ |
291 | && PBXT_P="pbxt-${PBXT_VERSION}" \ |
| 191 | && PBXT_SRC_URI="mirror://sourceforge/pbxt/${PBXT_P}.tar.gz" \ |
292 | && 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} )" \ |
293 | && SRC_URI="${SRC_URI} pbxt? ( ${PBXT_SRC_URI} )" \ |
|
|
294 | |
|
|
295 | # PBXT_NEWSTYLE means pbxt is in storage/ and gets enabled as other plugins |
|
|
296 | # vs. built outside the dir |
|
|
297 | pbxt_available \ |
| 193 | && IUSE="${IUSE} pbxt" |
298 | && 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" \ |
299 | && mysql_version_is_at_least "5.1.40" \ |
| 197 | && [[ -n "${XTRADB_VER}" && -n "${PERCONA_VER}" ]] \ |
300 | && PBXT_NEWSTYLE=1 |
|
|
301 | |
|
|
302 | xtradb_patch_available \ |
| 198 | && XTRADB_P="percona-xtradb-${XTRADB_VER}" \ |
303 | && XTRADB_P="percona-xtradb-${XTRADB_VER}" \ |
| 199 | && XTRADB_SRC_URI="http://www.percona.com/${PN}/xtradb/${PERCONA_VER}/source/${XTRADB_P}.tar.gz" \ |
304 | && XTRADB_SRC_URI_COMMON="${PERCONA_VER}/source/${XTRADB_P}.tar.gz" \ |
| 200 | && SRC_URI="${SRC_URI} xtradb? ( ${XTRADB_SRC_URI} )" \ |
305 | && XTRADB_SRC_B1="http://www.percona.com/" \ |
|
|
306 | && XTRADB_SRC_B2="${XTRADB_SRC_B1}/percona-builds/" \ |
|
|
307 | && XTRADB_SRC_URI1="${XTRADB_SRC_B2}/Percona-Server/Percona-Server-${XTRADB_SRC_URI_COMMON}" \ |
|
|
308 | && XTRADB_SRC_URI2="${XTRADB_SRC_B2}/xtradb/${XTRADB_SRC_URI_COMMON}" \ |
|
|
309 | && XTRADB_SRC_URI3="${XTRADB_SRC_B1}/${PN}/xtradb/${XTRADB_SRC_URI_COMMON}" \ |
|
|
310 | && SRC_URI="${SRC_URI} xtradb? ( ${XTRADB_SRC_URI1} ${XTRADB_SRC_URI2} ${XTRADB_SRC_URI3} )" \ |
| 201 | && IUSE="${IUSE} xtradb" |
311 | && IUSE="${IUSE} xtradb" |
| 202 | |
312 | |
| 203 | # |
313 | # |
| 204 | # HELPER FUNCTIONS: |
314 | # HELPER FUNCTIONS: |
| 205 | # |
315 | # |
| … | |
… | |
| 210 | mysql_disable_test() { |
320 | mysql_disable_test() { |
| 211 | local rawtestname testname testsuite reason mysql_disable_file |
321 | local rawtestname testname testsuite reason mysql_disable_file |
| 212 | rawtestname="${1}" ; shift |
322 | rawtestname="${1}" ; shift |
| 213 | reason="${@}" |
323 | reason="${@}" |
| 214 | ewarn "test '${rawtestname}' disabled: '${reason}'" |
324 | ewarn "test '${rawtestname}' disabled: '${reason}'" |
| 215 | |
325 | |
| 216 | testsuite="${rawtestname/.*}" |
326 | testsuite="${rawtestname/.*}" |
| 217 | testname="${rawtestname/*.}" |
327 | testname="${rawtestname/*.}" |
| 218 | mysql_disable_file="${S}/mysql-test/t/disabled.def" |
328 | mysql_disable_file="${S}/mysql-test/t/disabled.def" |
| 219 | #einfo "rawtestname=${rawtestname} testname=${testname} testsuite=${testsuite}" |
329 | #einfo "rawtestname=${rawtestname} testname=${testname} testsuite=${testsuite}" |
| 220 | echo ${testname} : ${reason} >> "${mysql_disable_file}" |
330 | echo ${testname} : ${reason} >> "${mysql_disable_file}" |
| … | |
… | |
| 302 | MY_DATADIR="${new_MY_DATADIR}" |
412 | MY_DATADIR="${new_MY_DATADIR}" |
| 303 | fi |
413 | fi |
| 304 | fi |
414 | fi |
| 305 | fi |
415 | fi |
| 306 | |
416 | |
|
|
417 | if [ "${MY_SOURCEDIR:-unset}" == "unset" ]; then |
| 307 | MY_SOURCEDIR=${SERVER_URI##*/} |
418 | MY_SOURCEDIR=${SERVER_URI##*/} |
| 308 | MY_SOURCEDIR=${MY_SOURCEDIR%.tar*} |
419 | MY_SOURCEDIR=${MY_SOURCEDIR%.tar*} |
|
|
420 | fi |
| 309 | |
421 | |
| 310 | export MY_SHAREDSTATEDIR MY_SYSCONFDIR |
422 | export MY_SHAREDSTATEDIR MY_SYSCONFDIR |
| 311 | export MY_LIBDIR MY_LOCALSTATEDIR MY_LOGDIR |
423 | export MY_LIBDIR MY_LOCALSTATEDIR MY_LOGDIR |
| 312 | export MY_INCLUDEDIR MY_DATADIR MY_SOURCEDIR |
424 | export MY_INCLUDEDIR MY_DATADIR MY_SOURCEDIR |
| 313 | } |
425 | } |
| … | |
… | |
| 360 | if use debug ; then |
472 | if use debug ; then |
| 361 | myconf="${myconf} --with-debug=full" |
473 | myconf="${myconf} --with-debug=full" |
| 362 | else |
474 | else |
| 363 | myconf="${myconf} --without-debug" |
475 | myconf="${myconf} --without-debug" |
| 364 | mysql_version_is_at_least "4.1.3" \ |
476 | mysql_version_is_at_least "4.1.3" \ |
| 365 | && use cluster \ |
477 | && ( use cluster || [[ "${PN}" == "mysql-cluster" ]] ) \ |
| 366 | && myconf="${myconf} --without-ndb-debug" |
478 | && myconf="${myconf} --without-ndb-debug" |
| 367 | fi |
479 | fi |
| 368 | |
480 | |
| 369 | if [ -n "${MYSQL_DEFAULT_CHARSET}" -a -n "${MYSQL_DEFAULT_COLLATION}" ]; then |
481 | if [ -n "${MYSQL_DEFAULT_CHARSET}" -a -n "${MYSQL_DEFAULT_COLLATION}" ]; then |
| 370 | ewarn "You are using a custom charset of ${MYSQL_DEFAULT_CHARSET}" |
482 | ewarn "You are using a custom charset of ${MYSQL_DEFAULT_CHARSET}" |
| … | |
… | |
| 394 | myconf="${myconf} $(use_with perl bench)" |
506 | myconf="${myconf} $(use_with perl bench)" |
| 395 | myconf="${myconf} --enable-assembler" |
507 | myconf="${myconf} --enable-assembler" |
| 396 | myconf="${myconf} --with-extra-tools" |
508 | myconf="${myconf} --with-extra-tools" |
| 397 | myconf="${myconf} --with-innodb" |
509 | myconf="${myconf} --with-innodb" |
| 398 | myconf="${myconf} --without-readline" |
510 | myconf="${myconf} --without-readline" |
|
|
511 | myconf="${myconf} $(use_with ssl openssl)" |
| 399 | mysql_version_is_at_least "5.0" || myconf="${myconf} $(use_with raid)" |
512 | mysql_version_is_at_least "5.0" || myconf="${myconf} $(use_with raid)" |
| 400 | |
513 | |
| 401 | # --with-vio is not needed anymore, it's on by default and |
514 | # --with-vio is not needed anymore, it's on by default and |
| 402 | # has been removed from configure |
515 | # has been removed from configure |
|
|
516 | # Apply to 4.x and 5.0.[0-3] |
| 403 | if use ssl ; then |
517 | if use ssl ; then |
| 404 | mysql_version_is_at_least "5.0.4" || myconf="${myconf} --with-vio" |
518 | mysql_version_is_at_least "5.0.4" || myconf="${myconf} --with-vio" |
| 405 | fi |
|
|
| 406 | |
|
|
| 407 | if mysql_version_is_at_least "5.1.11" ; then |
|
|
| 408 | myconf="${myconf} $(use_with ssl)" |
|
|
| 409 | else |
|
|
| 410 | myconf="${myconf} $(use_with ssl openssl)" |
|
|
| 411 | fi |
519 | fi |
| 412 | |
520 | |
| 413 | if mysql_version_is_at_least "5.0.60" ; then |
521 | if mysql_version_is_at_least "5.0.60" ; then |
| 414 | if use berkdb ; then |
522 | if use berkdb ; then |
| 415 | elog "Berkeley DB support was disabled due to build failures" |
523 | elog "Berkeley DB support was disabled due to build failures" |
| … | |
… | |
| 431 | myconf="${myconf} --without-berkeley-db" |
539 | myconf="${myconf} --without-berkeley-db" |
| 432 | fi |
540 | fi |
| 433 | |
541 | |
| 434 | if mysql_version_is_at_least "4.1.3" ; then |
542 | if mysql_version_is_at_least "4.1.3" ; then |
| 435 | myconf="${myconf} --with-geometry" |
543 | myconf="${myconf} --with-geometry" |
|
|
544 | if [[ "${PN}" != "mysql-cluster" ]] ; then |
| 436 | myconf="${myconf} $(use_with cluster ndbcluster)" |
545 | myconf="${myconf} $(use_with cluster ndbcluster)" |
|
|
546 | fi |
| 437 | fi |
547 | fi |
| 438 | |
548 | |
| 439 | if mysql_version_is_at_least "4.1.3" && use extraengine ; then |
549 | if mysql_version_is_at_least "4.1.3" && use extraengine ; then |
| 440 | # http://dev.mysql.com/doc/mysql/en/archive-storage-engine.html |
550 | # http://dev.mysql.com/doc/mysql/en/archive-storage-engine.html |
| 441 | myconf="${myconf} --with-archive-storage-engine" |
551 | myconf="${myconf} --with-archive-storage-engine" |
| … | |
… | |
| 472 | |
582 | |
| 473 | configure_51() { |
583 | configure_51() { |
| 474 | # TODO: !!!! readd --without-readline |
584 | # TODO: !!!! readd --without-readline |
| 475 | # the failure depend upon config/ac-macros/readline.m4 checking into |
585 | # the failure depend upon config/ac-macros/readline.m4 checking into |
| 476 | # readline.h instead of history.h |
586 | # readline.h instead of history.h |
| 477 | myconf="${myconf} $(use_with ssl)" |
587 | myconf="${myconf} $(use_with ssl ssl /usr)" |
| 478 | myconf="${myconf} --enable-assembler" |
588 | myconf="${myconf} --enable-assembler" |
| 479 | myconf="${myconf} --with-geometry" |
589 | myconf="${myconf} --with-geometry" |
| 480 | myconf="${myconf} --with-readline" |
590 | myconf="${myconf} --with-readline" |
| 481 | myconf="${myconf} --with-zlib-dir=/usr/" |
591 | myconf="${myconf} --with-zlib-dir=/usr/" |
| 482 | myconf="${myconf} --without-pstack" |
592 | myconf="${myconf} --without-pstack" |
|
|
593 | myconf="${myconf} --with-plugindir=/usr/$(get_libdir)/mysql/plugin" |
|
|
594 | |
|
|
595 | # This is an explict die here, because if we just forcibly disable it, then the |
|
|
596 | # user's data is not accessible. |
|
|
597 | use max-idx-128 && die "Bug #336027: upstream has a corruption issue with max-idx-128 presently" |
| 483 | use max-idx-128 && myconf="${myconf} --with-max-indexes=128" |
598 | #use max-idx-128 && myconf="${myconf} --with-max-indexes=128" |
|
|
599 | if [ "${MYSQL_COMMUNITY_FEATURES}" == "1" ]; then |
|
|
600 | myconf="${myconf} $(use_enable community community-features)" |
|
|
601 | if use community; then |
|
|
602 | myconf="${myconf} $(use_enable profiling)" |
|
|
603 | else |
|
|
604 | myconf="${myconf} --disable-profiling" |
|
|
605 | fi |
|
|
606 | fi |
|
|
607 | |
|
|
608 | # Scan for all available plugins |
|
|
609 | local plugins_avail="$( |
|
|
610 | LANG=C \ |
|
|
611 | find "${S}" \ |
|
|
612 | \( \ |
|
|
613 | -name 'plug.in' \ |
|
|
614 | -o -iname 'configure.in' \ |
|
|
615 | -o -iname 'configure.ac' \ |
|
|
616 | \) \ |
|
|
617 | -print0 \ |
|
|
618 | | xargs -0 sed -r -n \ |
|
|
619 | -e '/^MYSQL_STORAGE_ENGINE/{ |
|
|
620 | s~MYSQL_STORAGE_ENGINE\([[:space:]]*\[?([-_a-z0-9]+)\]?.*,~\1 ~g ; |
|
|
621 | s~^([^ ]+).*~\1~gp; |
|
|
622 | }' \ |
|
|
623 | | tr -s '\n' ' ' |
|
|
624 | )" |
| 484 | |
625 | |
| 485 | # 5.1 introduces a new way to manage storage engines (plugins) |
626 | # 5.1 introduces a new way to manage storage engines (plugins) |
| 486 | # like configuration=none |
627 | # like configuration=none |
|
|
628 | # This base set are required, and will always be statically built. |
| 487 | local plugins="csv,myisam,myisammrg,heap" |
629 | local plugins_sta="csv myisam myisammrg heap" |
|
|
630 | local plugins_dyn="" |
|
|
631 | local plugins_dis="example ibmdb2i" |
|
|
632 | |
|
|
633 | # These aren't actually required by the base set, but are really useful: |
|
|
634 | plugins_sta="${plugins_sta} archive blackhole" |
|
|
635 | |
|
|
636 | # default in 5.5.4 |
|
|
637 | if mysql_version_is_at_least "5.5.4" ; then |
|
|
638 | plugins_sta="${plugins_sta} partition" |
|
|
639 | fi |
|
|
640 | # Now the extras |
| 488 | if use extraengine ; then |
641 | if use extraengine ; then |
| 489 | # like configuration=max-no-ndb, archive and example removed in 5.1.11 |
642 | # like configuration=max-no-ndb, archive and example removed in 5.1.11 |
| 490 | # not added yet: ibmdb2i |
643 | # not added yet: ibmdb2i |
| 491 | # Not supporting as examples: example,daemon_example,ftexample |
644 | # Not supporting as examples: example,daemon_example,ftexample |
| 492 | plugins="${plugins},archive,blackhole,federated,partition" |
645 | plugins_sta="${plugins_sta} partition" |
| 493 | |
646 | |
|
|
647 | if [[ "${PN}" != "mariadb" ]] ; then |
| 494 | elog "Before using the Federated storage engine, please be sure to read" |
648 | elog "Before using the Federated storage engine, please be sure to read" |
| 495 | elog "http://dev.mysql.com/doc/refman/5.1/en/federated-limitations.html" |
649 | elog "http://dev.mysql.com/doc/refman/5.1/en/federated-limitations.html" |
|
|
650 | plugins_dyn="${plugins_sta} federated" |
|
|
651 | else |
|
|
652 | elog "MariaDB includes the FederatedX engine. Be sure to read" |
|
|
653 | elog "http://askmonty.org/wiki/index.php/Manual:FederatedX_storage_engine" |
|
|
654 | plugins_dyn="${plugins_sta} federatedx" |
|
|
655 | fi |
|
|
656 | else |
|
|
657 | plugins_dis="${plugins_dis} partition federated" |
| 496 | fi |
658 | fi |
| 497 | |
659 | |
| 498 | # Upstream specifically requests that InnoDB always be built: |
660 | # Upstream specifically requests that InnoDB always be built: |
| 499 | # - innobase, innodb_plugin |
661 | # - innobase, innodb_plugin |
| 500 | # Build falcon if available for 6.x series. |
662 | # Build falcon if available for 6.x series. |
| 501 | for i in innobase innodb_plugin falcon ; do |
663 | for i in innobase falcon ; do |
| 502 | [ -e "${S}"/storage/${i} ] && plugins="${plugins},${i}" |
664 | [ -e "${S}"/storage/${i} ] && plugins_sta="${plugins_sta} ${i}" |
| 503 | done |
665 | done |
|
|
666 | for i in innodb_plugin ; do |
|
|
667 | [ -e "${S}"/storage/${i} ] && plugins_dyn="${plugins_dyn} ${i}" |
|
|
668 | done |
| 504 | |
669 | |
| 505 | # like configuration=max-no-ndb |
670 | # like configuration=max-no-ndb |
| 506 | if use cluster ; then |
671 | if ( use cluster || [[ "${PN}" == "mysql-cluster" ]] ) ; then |
| 507 | plugins="${plugins},ndbcluster" |
672 | plugins_sta="${plugins_sta} ndbcluster partition" |
|
|
673 | plugins_dis="${plugins_dis//partition}" |
| 508 | myconf="${myconf} --with-ndb-binlog" |
674 | myconf="${myconf} --with-ndb-binlog" |
|
|
675 | else |
|
|
676 | plugins_dis="${plugins_dis} ndbcluster" |
|
|
677 | fi |
|
|
678 | |
|
|
679 | if [[ "${PN}" == "mariadb" ]] ; then |
|
|
680 | # In MariaDB, InnoDB is packaged in the xtradb directory, so it's not |
|
|
681 | # caught above. |
|
|
682 | # This is not optional, without it several upstream testcases fail. |
|
|
683 | # Also strongly recommended by upstream. |
|
|
684 | if [[ "${PV}" < "5.2.0" ]] ; then |
|
|
685 | myconf="${myconf} --with-maria-tmp-tables" |
|
|
686 | plugins_sta="${plugins_sta} maria" |
|
|
687 | else |
|
|
688 | myconf="${myconf} --with-aria-tmp-tables" |
|
|
689 | plugins_sta="${plugins_sta} aria" |
| 509 | fi |
690 | fi |
| 510 | |
691 | |
|
|
692 | [ -e "${S}"/storage/innobase ] || [ -e "${S}"/storage/xtradb ] || |
|
|
693 | die "The ${P} package doesn't provide innobase nor xtradb" |
|
|
694 | |
|
|
695 | for i in innobase xtradb ; do |
|
|
696 | [ -e "${S}"/storage/${i} ] && plugins_sta="${plugins_sta} ${i}" |
|
|
697 | done |
|
|
698 | |
|
|
699 | myconf="${myconf} $(use_with libevent)" |
|
|
700 | |
|
|
701 | if mysql_version_is_at_least "5.2" ; then |
|
|
702 | #This should include sphinx, but the 5.2.4 archive forgot the plug.in file |
|
|
703 | #for i in oqgraph sphinx ; do |
|
|
704 | for i in oqgraph ; do |
|
|
705 | use ${i} \ |
|
|
706 | && plugins_dyn="${plugins_dyn} ${i}" \ |
|
|
707 | || plugins_dis="${plugins_dis} ${i}" |
|
|
708 | done |
|
|
709 | fi |
|
|
710 | fi |
|
|
711 | |
|
|
712 | if pbxt_available && [[ "${PBXT_NEWSTYLE}" == "1" ]]; then |
|
|
713 | use pbxt \ |
|
|
714 | && plugins_dyn="${plugins_dyn} pbxt" \ |
|
|
715 | || plugins_dis="${plugins_dis} pbxt" |
|
|
716 | fi |
|
|
717 | |
|
|
718 | use static && \ |
|
|
719 | plugins_sta="${plugins_sta} ${plugins_dyn}" && \ |
|
|
720 | plugins_dyn="" |
|
|
721 | |
|
|
722 | einfo "Available plugins: ${plugins_avail}" |
|
|
723 | einfo "Dynamic plugins: ${plugins_dyn}" |
|
|
724 | einfo "Static plugins: ${plugins_sta}" |
|
|
725 | einfo "Disabled plugins: ${plugins_dis}" |
|
|
726 | |
|
|
727 | # These are the static plugins |
| 511 | myconf="${myconf} --with-plugins=${plugins}" |
728 | myconf="${myconf} --with-plugins=${plugins_sta// /,}" |
| 512 | } |
729 | # And the disabled ones |
| 513 | |
730 | for i in ${plugins_dis} ; do |
| 514 | xtradb_applicable() { |
731 | myconf="${myconf} --without-plugin-${i}" |
| 515 | mysql_version_is_at_least "5.1.26" \ |
732 | done |
| 516 | && [[ -n "${XTRADB_VER}" && -n "${PERCONA_VER}" ]] \ |
|
|
| 517 | && use xtradb |
|
|
| 518 | return $? |
|
|
| 519 | } |
|
|
| 520 | |
|
|
| 521 | pbxt_applicable() { |
|
|
| 522 | mysql_version_is_at_least "5.1.12" \ |
|
|
| 523 | && [[ -n "${PBXT_VERSION}" ]] \ |
|
|
| 524 | && use pbxt |
|
|
| 525 | return $? |
|
|
| 526 | } |
733 | } |
| 527 | |
734 | |
| 528 | pbxt_src_configure() { |
735 | pbxt_src_configure() { |
| 529 | mysql_init_vars |
736 | mysql_init_vars |
| 530 | |
737 | |
| 531 | pushd "${WORKDIR}/pbxt-${PBXT_VERSION}" &>/dev/null |
738 | pushd "${WORKDIR}/pbxt-${PBXT_VERSION}" &>/dev/null |
| 532 | |
739 | |
| 533 | einfo "Reconfiguring dir '${PWD}'" |
740 | einfo "Reconfiguring dir '${PWD}'" |
| 534 | AT_GNUCONF_UPDATE="yes" eautoreconf |
741 | eautoreconf |
| 535 | |
742 | |
| 536 | local myconf="" |
743 | local myconf="" |
| 537 | myconf="${myconf} --with-mysql=${S} --libdir=${D}/${MY_LIBDIR}" |
744 | myconf="${myconf} --with-mysql=${S} --libdir=/usr/$(get_libdir)" |
| 538 | use debug && myconf="${myconf} --with-debug=full" |
745 | use debug && myconf="${myconf} --with-debug=full" |
| 539 | # TODO: is it safe/needed to use econf here ? |
|
|
| 540 | ./configure ${myconf} || die "Problem configuring PBXT storage engine" |
746 | econf ${myconf} || die "Problem configuring PBXT storage engine" |
| 541 | } |
747 | } |
| 542 | |
748 | |
| 543 | pbxt_src_compile() { |
749 | pbxt_src_compile() { |
|
|
750 | |
| 544 | # Be backwards compatible for now |
751 | # Be backwards compatible for now |
| 545 | if [[ $EAPI != 2 ]]; then |
752 | if [[ $EAPI != 2 ]]; then |
| 546 | pbxt_src_configure |
753 | pbxt_src_configure |
| 547 | fi |
754 | fi |
| 548 | # TODO: is it safe/needed to use emake here ? |
755 | # TODO: is it safe/needed to use emake here ? |
| … | |
… | |
| 552 | # TODO: modify test suite for PBXT |
759 | # TODO: modify test suite for PBXT |
| 553 | } |
760 | } |
| 554 | |
761 | |
| 555 | pbxt_src_install() { |
762 | pbxt_src_install() { |
| 556 | pushd "${WORKDIR}/pbxt-${PBXT_VERSION}" &>/dev/null |
763 | pushd "${WORKDIR}/pbxt-${PBXT_VERSION}" &>/dev/null |
| 557 | make install || die "Failed to install PBXT" |
764 | emake install DESTDIR="${D}" || die "Failed to install PBXT" |
| 558 | popd |
765 | popd |
| 559 | } |
766 | } |
| 560 | |
767 | |
| 561 | # |
768 | # |
| 562 | # EBUILD FUNCTIONS |
769 | # EBUILD FUNCTIONS |
| … | |
… | |
| 567 | # die if FEATURES="test", USE="-minimal" and not using FEATURES="userpriv" |
774 | # die if FEATURES="test", USE="-minimal" and not using FEATURES="userpriv" |
| 568 | # check for conflicting use flags |
775 | # check for conflicting use flags |
| 569 | # create new user and group for mysql |
776 | # create new user and group for mysql |
| 570 | # warn about deprecated features |
777 | # warn about deprecated features |
| 571 | mysql_pkg_setup() { |
778 | mysql_pkg_setup() { |
| 572 | if hasq test ${FEATURES} ; then |
779 | if has test ${FEATURES} ; then |
| 573 | if ! use minimal ; then |
780 | if ! use minimal ; then |
| 574 | if [[ $UID -eq 0 ]]; then |
781 | if [[ $UID -eq 0 ]]; then |
| 575 | eerror "Testing with FEATURES=-userpriv is no longer supported by upstream. Tests MUST be run as non-root." |
782 | eerror "Testing with FEATURES=-userpriv is no longer supported by upstream. Tests MUST be run as non-root." |
| 576 | fi |
783 | fi |
| 577 | fi |
784 | fi |
| 578 | fi |
785 | fi |
| 579 | |
786 | |
|
|
787 | # bug 350844 |
|
|
788 | case "${EAPI:-0}" in |
|
|
789 | 0 | 1) |
|
|
790 | if use static && !built_with_use sys-libs/ncurses static-libs; then |
|
|
791 | die "To build MySQL statically you need to enable static-libs for sys-libs/ncurses" |
|
|
792 | fi |
|
|
793 | ;; |
|
|
794 | esac |
|
|
795 | |
| 580 | # Check for USE flag problems in pkg_setup |
796 | # Check for USE flag problems in pkg_setup |
| 581 | if use static && use ssl ; then |
797 | if use static && use ssl ; then |
| 582 | eerror "MySQL does not support being built statically with SSL support enabled!" |
|
|
| 583 | die "MySQL does not support being built statically with SSL support enabled!" |
798 | M="MySQL does not support being built statically with SSL support enabled!" |
|
|
799 | eerror "${M}" |
|
|
800 | die "${M}" |
|
|
801 | fi |
|
|
802 | |
|
|
803 | if mysql_version_is_at_least "5.1.51" \ |
|
|
804 | && ! mysql_version_is_at_least "5.2" \ |
|
|
805 | && use debug ; then |
|
|
806 | # Also in package.use.mask |
|
|
807 | die "Bug #344885: Upstream has broken USE=debug for 5.1 series >=5.1.51" |
| 584 | fi |
808 | fi |
| 585 | |
809 | |
| 586 | if ! mysql_version_is_at_least "5.0" \ |
810 | if ! mysql_version_is_at_least "5.0" \ |
| 587 | && use raid \ |
811 | && use raid \ |
| 588 | && use static ; then |
812 | && use static ; then |
| … | |
… | |
| 590 | eerror "with RAID support enabled." |
814 | eerror "with RAID support enabled." |
| 591 | die "USE flags 'raid' and 'static' conflict!" |
815 | die "USE flags 'raid' and 'static' conflict!" |
| 592 | fi |
816 | fi |
| 593 | |
817 | |
| 594 | if mysql_version_is_at_least "4.1.3" \ |
818 | if mysql_version_is_at_least "4.1.3" \ |
| 595 | && ( use cluster || use extraengine ) \ |
819 | && ( use cluster || use extraengine || use embedded ) \ |
| 596 | && use minimal ; then |
820 | && use minimal ; then |
| 597 | eerror "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
|
|
| 598 | die "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
821 | M="USE flags 'cluster', 'extraengine', 'embedded' conflict with 'minimal' USE flag!" |
|
|
822 | eerror "${M}" |
|
|
823 | die "${M}" |
| 599 | fi |
824 | fi |
| 600 | |
825 | |
| 601 | # Bug #290570 fun. Upstream made us need a fairly new GCC4. |
|
|
| 602 | if mysql_version_is_at_least "5.0.83" ; then |
826 | if mysql_version_is_at_least "5.1" \ |
|
|
827 | && xtradb_patch_available \ |
|
|
828 | && use xtradb \ |
|
|
829 | && use embedded ; then |
|
|
830 | M="USE flags 'xtradb' and 'embedded' conflict and cause build failures" |
|
|
831 | eerror "${M}" |
|
|
832 | die "${M}" |
|
|
833 | fi |
|
|
834 | |
|
|
835 | # Bug #290570, 284946, 307251 |
|
|
836 | # Upstream changes made us need a fairly new GCC4. |
|
|
837 | # But only for 5.0.8[3-6]! |
|
|
838 | if mysql_version_is_at_least "5.0.83" && ! mysql_version_is_at_least 5.0.87 ; then |
| 603 | GCC_VER=$(gcc-version) |
839 | GCC_VER=$(gcc-version) |
| 604 | case ${GCC_VER} in |
840 | case ${GCC_VER} in |
| 605 | 2*|3*|4.0|4.1|4.2) die "Active GCC too old! Must have at least GCC4.3" ;; |
841 | 2*|3*|4.0|4.1|4.2) |
|
|
842 | eerror "Some releases of MySQL required a very new GCC, and then" |
|
|
843 | eerror "later release relaxed that requirement again. Either pick a" |
|
|
844 | eerror "MySQL >=5.0.87, or use a newer GCC." |
|
|
845 | die "Active GCC too old!" ;; |
| 606 | esac |
846 | esac |
| 607 | fi |
847 | fi |
| 608 | |
848 | |
| 609 | # This should come after all of the die statements |
849 | # This should come after all of the die statements |
| 610 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
850 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
| … | |
… | |
| 660 | mysql_mv_patches |
900 | mysql_mv_patches |
| 661 | # And apply |
901 | # And apply |
| 662 | epatch |
902 | epatch |
| 663 | |
903 | |
| 664 | # last -fPIC fixup, per bug #305873 |
904 | # last -fPIC fixup, per bug #305873 |
| 665 | i="${S}"/storage/innodb_plugin/plug.in |
905 | i="${S}"/storage/innodb_plugin/plug.in |
| 666 | [ -f "${i}" ] && sed -i -e '/CFLAGS/s,-prefer-non-pic,,g' "${i}" |
906 | [ -f "${i}" ] && sed -i -e '/CFLAGS/s,-prefer-non-pic,,g' "${i}" |
| 667 | |
907 | |
| 668 | # Additional checks, remove bundled zlib |
908 | # Additional checks, remove bundled zlib (Cluster needs this, for static |
|
|
909 | # memory management in zlib, leave available for Cluster) |
|
|
910 | if [[ "${PN}" != "mysql-cluster" ]] ; then |
| 669 | rm -f "${S}/zlib/"*.[ch] |
911 | rm -f "${S}/zlib/"*.[ch] |
| 670 | sed -i -e "s/zlib\/Makefile dnl/dnl zlib\/Makefile/" "${S}/configure.in" |
912 | sed -i -e "s/zlib\/Makefile dnl/dnl zlib\/Makefile/" "${S}/configure.in" |
|
|
913 | fi |
| 671 | rm -f "scripts/mysqlbug" |
914 | rm -f "scripts/mysqlbug" |
| 672 | |
915 | |
| 673 | # Make charsets install in the right place |
916 | # Make charsets install in the right place |
| 674 | find . -name 'Makefile.am' \ |
917 | find . -name 'Makefile.am' \ |
| 675 | -exec sed --in-place -e 's!$(pkgdatadir)!'${MY_SHAREDSTATEDIR}'!g' {} \; |
918 | -exec sed --in-place -e 's!$(pkgdatadir)!'${MY_SHAREDSTATEDIR}'!g' {} \; |
| … | |
… | |
| 685 | rm -f "scripts/mysqlbug" |
928 | rm -f "scripts/mysqlbug" |
| 686 | fi |
929 | fi |
| 687 | |
930 | |
| 688 | local rebuilddirlist d |
931 | local rebuilddirlist d |
| 689 | |
932 | |
| 690 | if xtradb_applicable ; then |
933 | if xtradb_patch_available && use xtradb ; then |
| 691 | einfo "Replacing InnoDB with Percona XtraDB" |
934 | einfo "Adding storage engine: Percona XtraDB (replacing InnoDB)" |
| 692 | pushd "${S}"/storage |
935 | pushd "${S}"/storage >/dev/null |
| 693 | i="innobase" |
936 | i="innobase" |
| 694 | o="${WORKDIR}/storage-${i}.mysql-upstream" |
937 | o="${WORKDIR}/storage-${i}.mysql-upstream" |
| 695 | # Have we been here already? |
938 | # Have we been here already? |
| 696 | [ -h "${i}" ] && rm -f "${i}" |
939 | [ -d "${o}" ] && rm -f "${i}" |
| 697 | # Or maybe we haven't |
940 | # Or maybe we haven't |
| 698 | [ -d "${i}" -a ! -d "${o}" ] && mv "${i}" "${o}" |
941 | [ -d "${i}" -a ! -d "${o}" ] && mv "${i}" "${o}" |
| 699 | ln -s "${WORKDIR}/${XTRADB_P}" "${i}" |
942 | cp -ral "${WORKDIR}/${XTRADB_P}" "${i}" |
| 700 | popd |
943 | popd >/dev/null |
|
|
944 | fi |
|
|
945 | |
|
|
946 | if pbxt_patch_available && [[ "${PBXT_NEWSTYLE}" == "1" ]] && use pbxt ; then |
|
|
947 | einfo "Adding storage engine: PBXT" |
|
|
948 | pushd "${S}"/storage >/dev/null |
|
|
949 | i='pbxt' |
|
|
950 | [ -d "${i}" ] && rm -rf "${i}" |
|
|
951 | cp -ral "${WORKDIR}/${PBXT_P}" "${i}" |
|
|
952 | popd >/dev/null |
| 701 | fi |
953 | fi |
| 702 | |
954 | |
| 703 | if mysql_version_is_at_least "5.1.12" ; then |
955 | if mysql_version_is_at_least "5.1.12" ; then |
| 704 | einfo "Updating innobase cmake" |
|
|
| 705 | rebuilddirlist="." |
956 | rebuilddirlist="." |
|
|
957 | # This does not seem to be needed presently. robbat2 2010/02/23 |
|
|
958 | #einfo "Updating innobase cmake" |
| 706 | # TODO: check this with a cmake expert |
959 | ## TODO: check this with a cmake expert |
| 707 | cmake \ |
960 | #cmake \ |
| 708 | -DCMAKE_C_COMPILER=$(type -P $(tc-getCC)) \ |
961 | # -DCMAKE_C_COMPILER=$(type -P $(tc-getCC)) \ |
| 709 | -DCMAKE_CXX_COMPILER=$(type -P $(tc-getCXX)) \ |
962 | # -DCMAKE_CXX_COMPILER=$(type -P $(tc-getCXX)) \ |
| 710 | "storage/innobase" |
963 | # "storage/innobase" |
| 711 | else |
964 | else |
| 712 | rebuilddirlist=". innobase" |
965 | rebuilddirlist=". innobase" |
| 713 | fi |
966 | fi |
| 714 | |
967 | |
| 715 | for d in ${rebuilddirlist} ; do |
968 | for d in ${rebuilddirlist} ; do |
| 716 | einfo "Reconfiguring dir '${d}'" |
969 | einfo "Reconfiguring dir '${d}'" |
| 717 | pushd "${d}" &>/dev/null |
970 | pushd "${d}" &>/dev/null |
| 718 | AT_GNUCONF_UPDATE="yes" eautoreconf |
971 | eautoreconf |
| 719 | popd &>/dev/null |
972 | popd &>/dev/null |
| 720 | done |
973 | done |
| 721 | |
974 | |
| 722 | if mysql_check_version_range "4.1 to 5.0.99.99" \ |
975 | if mysql_check_version_range "4.1 to 5.0.99.99" \ |
| 723 | && use berkdb ; then |
976 | && use berkdb ; then |
| … | |
… | |
| 779 | export CXXFLAGS |
1032 | export CXXFLAGS |
| 780 | |
1033 | |
| 781 | # bug #283926, with GCC4.4, this is required to get correct behavior. |
1034 | # bug #283926, with GCC4.4, this is required to get correct behavior. |
| 782 | append-flags -fno-strict-aliasing |
1035 | append-flags -fno-strict-aliasing |
| 783 | |
1036 | |
|
|
1037 | # bug #335185, #335995, with >= GCC4.3.3 on x86 only, omit-frame-pointer |
|
|
1038 | # causes a mis-compile. |
|
|
1039 | # Upstream bugs: |
|
|
1040 | # http://gcc.gnu.org/bugzilla/show_bug.cgi?id=38562 |
|
|
1041 | # http://bugs.mysql.com/bug.php?id=45205 |
|
|
1042 | use x86 && version_is_at_least "4.3.3" "$(gcc-fullversion)" && \ |
|
|
1043 | append-flags -fno-omit-frame-pointer && \ |
|
|
1044 | filter-flags -fomit-frame-pointer |
|
|
1045 | |
| 784 | econf \ |
1046 | econf \ |
| 785 | --libexecdir="/usr/sbin" \ |
1047 | --libexecdir="/usr/sbin" \ |
| 786 | --sysconfdir="${MY_SYSCONFDIR}" \ |
1048 | --sysconfdir="${MY_SYSCONFDIR}" \ |
| 787 | --localstatedir="${MY_LOCALSTATEDIR}" \ |
1049 | --localstatedir="${MY_LOCALSTATEDIR}" \ |
| 788 | --sharedstatedir="${MY_SHAREDSTATEDIR}" \ |
1050 | --sharedstatedir="${MY_SHAREDSTATEDIR}" \ |
| … | |
… | |
| 791 | --with-low-memory \ |
1053 | --with-low-memory \ |
| 792 | --with-client-ldflags=-lstdc++ \ |
1054 | --with-client-ldflags=-lstdc++ \ |
| 793 | --enable-thread-safe-client \ |
1055 | --enable-thread-safe-client \ |
| 794 | --with-comment="Gentoo Linux ${PF}" \ |
1056 | --with-comment="Gentoo Linux ${PF}" \ |
| 795 | --without-docs \ |
1057 | --without-docs \ |
|
|
1058 | --with-LIBDIR="$(get_libdir)" \ |
| 796 | ${myconf} || die "econf failed" |
1059 | ${myconf} || die "econf failed" |
| 797 | |
1060 | |
| 798 | # TODO: Move this before autoreconf !!! |
1061 | # TODO: Move this before autoreconf !!! |
| 799 | find . -type f -name Makefile -print0 \ |
1062 | find . -type f -name Makefile -print0 \ |
| 800 | | xargs -0 -n100 sed -i \ |
1063 | | xargs -0 -n100 sed -i \ |
| 801 | -e 's|^pkglibdir *= *$(libdir)/mysql|pkglibdir = $(libdir)|;s|^pkgincludedir *= *$(includedir)/mysql|pkgincludedir = $(includedir)|' |
1064 | -e 's|^pkglibdir *= *$(libdir)/mysql|pkglibdir = $(libdir)|;s|^pkgincludedir *= *$(includedir)/mysql|pkgincludedir = $(includedir)|' |
| 802 | |
1065 | |
| 803 | if [[ $EAPI == 2 ]]; then |
1066 | if [[ $EAPI == 2 ]] && [[ "${PBXT_NEWSTYLE}" != "1" ]]; then |
| 804 | pbxt_applicable && pbxt_src_configure |
1067 | pbxt_patch_available && use pbxt && pbxt_src_configure |
| 805 | fi |
1068 | fi |
| 806 | } |
1069 | } |
| 807 | |
1070 | |
| 808 | # @FUNCTION: mysql_src_compile |
1071 | # @FUNCTION: mysql_src_compile |
| 809 | # @DESCRIPTION: |
1072 | # @DESCRIPTION: |
| 810 | # Compile the mysql code. |
1073 | # Compile the mysql code. |
| 811 | mysql_src_compile() { |
1074 | mysql_src_compile() { |
| 812 | # Be backwards compatible for now |
1075 | # Be backwards compatible for now |
| 813 | case ${EAPI:-0} in |
1076 | case ${EAPI:-0} in |
| 814 | 2) : ;; |
1077 | 2) : ;; |
| 815 | 0 | 1) mysql_src_configure ;; |
1078 | 0 | 1) mysql_src_configure ;; |
| 816 | esac |
1079 | esac |
| 817 | |
1080 | |
| 818 | emake || die "emake failed" |
1081 | emake || die "emake failed" |
| 819 | |
1082 | |
| 820 | pbxt_applicable && pbxt_src_compile |
1083 | if [[ "${PBXT_NEWSTYLE}" != "1" ]]; then |
|
|
1084 | pbxt_patch_available && use pbxt && pbxt_src_compile |
|
|
1085 | fi |
| 821 | } |
1086 | } |
| 822 | |
1087 | |
| 823 | # @FUNCTION: mysql_src_install |
1088 | # @FUNCTION: mysql_src_install |
| 824 | # @DESCRIPTION: |
1089 | # @DESCRIPTION: |
| 825 | # Install mysql. |
1090 | # Install mysql. |
| … | |
… | |
| 831 | DESTDIR="${D}" \ |
1096 | DESTDIR="${D}" \ |
| 832 | benchdir_root="${MY_SHAREDSTATEDIR}" \ |
1097 | benchdir_root="${MY_SHAREDSTATEDIR}" \ |
| 833 | testroot="${MY_SHAREDSTATEDIR}" \ |
1098 | testroot="${MY_SHAREDSTATEDIR}" \ |
| 834 | || die "emake install failed" |
1099 | || die "emake install failed" |
| 835 | |
1100 | |
| 836 | pbxt_applicable && pbxt_src_install |
1101 | if [[ "${PBXT_NEWSTYLE}" != "1" ]]; then |
|
|
1102 | pbxt_patch_available && use pbxt && pbxt_src_install |
|
|
1103 | fi |
| 837 | |
1104 | |
| 838 | # Convenience links |
1105 | # Convenience links |
| 839 | einfo "Making Convenience links for mysqlcheck multi-call binary" |
1106 | einfo "Making Convenience links for mysqlcheck multi-call binary" |
| 840 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlanalyze" |
1107 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlanalyze" |
| 841 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlrepair" |
1108 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlrepair" |
| … | |
… | |
| 865 | if use !test ; then |
1132 | if use !test ; then |
| 866 | rm -rf "${D}"/${MY_SHAREDSTATEDIR}/mysql-test |
1133 | rm -rf "${D}"/${MY_SHAREDSTATEDIR}/mysql-test |
| 867 | fi |
1134 | fi |
| 868 | |
1135 | |
| 869 | # Configuration stuff |
1136 | # Configuration stuff |
| 870 | if mysql_version_is_at_least "4.1" ; then |
1137 | case ${MYSQL_PV_MAJOR} in |
| 871 | mysql_mycnf_version="4.1" |
|
|
| 872 | else |
|
|
| 873 | mysql_mycnf_version="4.0" |
1138 | 3*|4.0) mysql_mycnf_version="4.0" ;; |
| 874 | fi |
1139 | 4.[1-9]|5.0) mysql_mycnf_version="4.1" ;; |
| 875 | einfo "Building default my.cnf" |
1140 | 5.[1-9]|6*|7*) mysql_mycnf_version="5.1" ;; |
|
|
1141 | esac |
|
|
1142 | einfo "Building default my.cnf (${mysql_mycnf_version})" |
| 876 | insinto "${MY_SYSCONFDIR}" |
1143 | insinto "${MY_SYSCONFDIR}" |
| 877 | doins scripts/mysqlaccess.conf |
1144 | doins scripts/mysqlaccess.conf |
|
|
1145 | mycnf_src="my.cnf-${mysql_mycnf_version}" |
| 878 | sed -e "s!@DATADIR@!${MY_DATADIR}!g" \ |
1146 | sed -e "s!@DATADIR@!${MY_DATADIR}!g" \ |
| 879 | "${FILESDIR}/my.cnf-${mysql_mycnf_version}" \ |
1147 | "${FILESDIR}/${mycnf_src}" \ |
| 880 | > "${TMPDIR}/my.cnf.ok" |
1148 | > "${TMPDIR}/my.cnf.ok" |
| 881 | if mysql_version_is_at_least "4.1" && use latin1 ; then |
1149 | if use latin1 ; then |
| 882 | sed -e "s|utf8|latin1|g" -i "${TMPDIR}/my.cnf.ok" |
1150 | sed -i \ |
|
|
1151 | -e "/character-set/s|utf8|latin1|g" \ |
|
|
1152 | "${TMPDIR}/my.cnf.ok" |
| 883 | fi |
1153 | fi |
| 884 | newins "${TMPDIR}/my.cnf.ok" my.cnf |
1154 | newins "${TMPDIR}/my.cnf.ok" my.cnf |
| 885 | |
1155 | |
| 886 | # Minimal builds don't have the MySQL server |
1156 | # Minimal builds don't have the MySQL server |
| 887 | if ! use minimal ; then |
1157 | if ! use minimal ; then |
| … | |
… | |
| 902 | done |
1172 | done |
| 903 | fi |
1173 | fi |
| 904 | |
1174 | |
| 905 | # Docs |
1175 | # Docs |
| 906 | einfo "Installing docs" |
1176 | einfo "Installing docs" |
| 907 | dodoc README ChangeLog EXCEPTIONS-CLIENT INSTALL-SOURCE |
1177 | for i in README ChangeLog EXCEPTIONS-CLIENT INSTALL-SOURCE ; do |
|
|
1178 | [[ -f "$i" ]] && dodoc "$i" |
|
|
1179 | done |
| 908 | doinfo "${S}"/Docs/mysql.info |
1180 | doinfo "${S}"/Docs/mysql.info |
| 909 | |
1181 | |
| 910 | # Minimal builds don't have the MySQL server |
1182 | # Minimal builds don't have the MySQL server |
| 911 | if ! use minimal ; then |
1183 | if ! use minimal ; then |
| 912 | einfo "Including support files and sample configurations" |
1184 | einfo "Including support files and sample configurations" |
| … | |
… | |
| 914 | for script in \ |
1186 | for script in \ |
| 915 | "${S}"/support-files/my-*.cnf \ |
1187 | "${S}"/support-files/my-*.cnf \ |
| 916 | "${S}"/support-files/magic \ |
1188 | "${S}"/support-files/magic \ |
| 917 | "${S}"/support-files/ndb-config-2-node.ini |
1189 | "${S}"/support-files/ndb-config-2-node.ini |
| 918 | do |
1190 | do |
| 919 | dodoc "${script}" |
1191 | [[ -f "$script" ]] && dodoc "${script}" |
| 920 | done |
1192 | done |
| 921 | |
1193 | |
| 922 | docinto "scripts" |
1194 | docinto "scripts" |
| 923 | for script in "${S}"/scripts/mysql* ; do |
1195 | for script in "${S}"/scripts/mysql* ; do |
| 924 | [[ "${script%.sh}" == "${script}" ]] && dodoc "${script}" |
1196 | [[ -f "$script" ]] && [[ "${script%.sh}" == "${script}" ]] && dodoc "${script}" |
| 925 | done |
1197 | done |
| 926 | |
1198 | |
| 927 | fi |
1199 | fi |
| 928 | |
1200 | |
| 929 | mysql_lib_symlinks "${D}" |
1201 | mysql_lib_symlinks "${D}" |
| … | |
… | |
| 963 | for script in \ |
1235 | for script in \ |
| 964 | support-files/my-*.cnf \ |
1236 | support-files/my-*.cnf \ |
| 965 | support-files/magic \ |
1237 | support-files/magic \ |
| 966 | support-files/ndb-config-2-node.ini |
1238 | support-files/ndb-config-2-node.ini |
| 967 | do |
1239 | do |
|
|
1240 | [[ -f "${script}" ]] \ |
| 968 | dodoc "${script}" |
1241 | && dodoc "${script}" |
| 969 | done |
1242 | done |
| 970 | |
1243 | |
| 971 | docinto "scripts" |
1244 | docinto "scripts" |
| 972 | for script in scripts/mysql* ; do |
1245 | for script in scripts/mysql* ; do |
|
|
1246 | [[ -f "${script}" ]] \ |
| 973 | [[ "${script%.sh}" == "${script}" ]] && dodoc "${script}" |
1247 | && [[ "${script%.sh}" == "${script}" ]] \ |
|
|
1248 | && dodoc "${script}" |
| 974 | done |
1249 | done |
| 975 | |
1250 | |
| 976 | einfo |
1251 | einfo |
| 977 | elog "You might want to run:" |
1252 | elog "You might want to run:" |
| 978 | elog "\"emerge --config =${CATEGORY}/${PF}\"" |
1253 | elog "\"emerge --config =${CATEGORY}/${PF}\"" |
| 979 | elog "if this is a new install." |
1254 | elog "if this is a new install." |
| 980 | einfo |
1255 | einfo |
| 981 | fi |
|
|
| 982 | |
1256 | |
| 983 | if pbxt_applicable ; then |
1257 | einfo |
|
|
1258 | elog "If you are upgrading major versions, you should run the" |
|
|
1259 | elog "mysql_upgrade tool." |
|
|
1260 | einfo |
|
|
1261 | fi |
|
|
1262 | |
|
|
1263 | if pbxt_available && use pbxt ; then |
| 984 | # TODO: explain it better |
1264 | # TODO: explain it better |
| 985 | elog " mysql> INSTALL PLUGIN pbxt SONAME 'libpbxt.so';" |
1265 | elog " mysql> INSTALL PLUGIN pbxt SONAME 'libpbxt.so';" |
| 986 | elog " mysql> CREATE TABLE t1 (c1 int, c2 text) ENGINE=pbxt;" |
1266 | elog " mysql> CREATE TABLE t1 (c1 int, c2 text) ENGINE=pbxt;" |
| 987 | elog "if, after that, you cannot start the MySQL server," |
1267 | elog "if, after that, you cannot start the MySQL server," |
| 988 | elog "remove the ${MY_DATADIR}/mysql/plugin.* files, then" |
1268 | elog "remove the ${MY_DATADIR}/mysql/plugin.* files, then" |
| … | |
… | |
| 1039 | fi |
1319 | fi |
| 1040 | fi |
1320 | fi |
| 1041 | |
1321 | |
| 1042 | local pwd1="a" |
1322 | local pwd1="a" |
| 1043 | local pwd2="b" |
1323 | local pwd2="b" |
| 1044 | local maxtry=5 |
1324 | local maxtry=15 |
|
|
1325 | |
|
|
1326 | if [ -z "${MYSQL_ROOT_PASSWORD}" -a -f "${ROOT}/root/.my.cnf" ]; then |
|
|
1327 | MYSQL_ROOT_PASSWORD="$(sed -n -e '/^password=/s,^password=,,gp' "${ROOT}/root/.my.cnf")" |
|
|
1328 | fi |
| 1045 | |
1329 | |
| 1046 | if [[ -d "${ROOT}/${MY_DATADIR}/mysql" ]] ; then |
1330 | if [[ -d "${ROOT}/${MY_DATADIR}/mysql" ]] ; then |
| 1047 | ewarn "You have already a MySQL database in place." |
1331 | ewarn "You have already a MySQL database in place." |
| 1048 | ewarn "(${ROOT}/${MY_DATADIR}/*)" |
1332 | ewarn "(${ROOT}/${MY_DATADIR}/*)" |
| 1049 | ewarn "Please rename or delete it if you wish to replace it." |
1333 | ewarn "Please rename or delete it if you wish to replace it." |
| … | |
… | |
| 1052 | |
1336 | |
| 1053 | # Bug #213475 - MySQL _will_ object strenously if your machine is named |
1337 | # Bug #213475 - MySQL _will_ object strenously if your machine is named |
| 1054 | # localhost. Also causes weird failures. |
1338 | # localhost. Also causes weird failures. |
| 1055 | [[ "${HOSTNAME}" == "localhost" ]] && die "Your machine must NOT be named localhost" |
1339 | [[ "${HOSTNAME}" == "localhost" ]] && die "Your machine must NOT be named localhost" |
| 1056 | |
1340 | |
| 1057 | einfo "Creating the mysql database and setting proper" |
1341 | if [ -z "${MYSQL_ROOT_PASSWORD}" ]; then |
| 1058 | einfo "permissions on it ..." |
|
|
| 1059 | |
1342 | |
| 1060 | einfo "Insert a password for the mysql 'root' user" |
1343 | einfo "Please provide a password for the mysql 'root' user now, in the" |
|
|
1344 | einfo "MYSQL_ROOT_PASSWORD env var or through the /root/.my.cnf file." |
| 1061 | ewarn "Avoid [\"'\\_%] characters in the password" |
1345 | ewarn "Avoid [\"'\\_%] characters in the password" |
| 1062 | read -rsp " >" pwd1 ; echo |
1346 | read -rsp " >" pwd1 ; echo |
| 1063 | |
1347 | |
| 1064 | einfo "Retype the password" |
1348 | einfo "Retype the password" |
| 1065 | read -rsp " >" pwd2 ; echo |
1349 | read -rsp " >" pwd2 ; echo |
| 1066 | |
1350 | |
| 1067 | if [[ "x$pwd1" != "x$pwd2" ]] ; then |
1351 | if [[ "x$pwd1" != "x$pwd2" ]] ; then |
| 1068 | die "Passwords are not the same" |
1352 | die "Passwords are not the same" |
|
|
1353 | fi |
|
|
1354 | MYSQL_ROOT_PASSWORD="${pwd1}" |
|
|
1355 | unset pwd1 pwd2 |
| 1069 | fi |
1356 | fi |
| 1070 | |
1357 | |
| 1071 | local options="" |
1358 | local options="" |
| 1072 | local sqltmp="$(emktemp)" |
1359 | local sqltmp="$(emktemp)" |
| 1073 | |
1360 | |
| … | |
… | |
| 1087 | [[ -f "${ROOT}/${MY_DATADIR}/mysql/user.frm" ]] \ |
1374 | [[ -f "${ROOT}/${MY_DATADIR}/mysql/user.frm" ]] \ |
| 1088 | || die "MySQL databases not installed" |
1375 | || die "MySQL databases not installed" |
| 1089 | chown -R mysql:mysql "${ROOT}/${MY_DATADIR}" 2>/dev/null |
1376 | chown -R mysql:mysql "${ROOT}/${MY_DATADIR}" 2>/dev/null |
| 1090 | chmod 0750 "${ROOT}/${MY_DATADIR}" 2>/dev/null |
1377 | chmod 0750 "${ROOT}/${MY_DATADIR}" 2>/dev/null |
| 1091 | |
1378 | |
|
|
1379 | # Figure out which options we need to disable to do the setup |
|
|
1380 | helpfile="${TMPDIR}/mysqld-help" |
|
|
1381 | ${ROOT}/usr/sbin/mysqld --verbose --help >"${helpfile}" 2>/dev/null |
|
|
1382 | for opt in grant-tables host-cache name-resolve networking slave-start bdb \ |
|
|
1383 | federated innodb ssl log-bin relay-log slow-query-log external-locking \ |
|
|
1384 | ndbcluster \ |
|
|
1385 | ; do |
|
|
1386 | optexp="--(skip-)?${opt}" optfull="--skip-${opt}" |
|
|
1387 | egrep -sq -- "${optexp}" "${helpfile}" && options="${options} ${optfull}" |
|
|
1388 | done |
|
|
1389 | # But some options changed names |
|
|
1390 | egrep -sq external-locking "${helpfile}" && \ |
|
|
1391 | options="${options/skip-locking/skip-external-locking}" |
|
|
1392 | |
| 1092 | if mysql_version_is_at_least "4.1.3" ; then |
1393 | if mysql_version_is_at_least "4.1.3" ; then |
| 1093 | options="--skip-ndbcluster" |
|
|
| 1094 | |
|
|
| 1095 | # Filling timezones, see |
1394 | # Filling timezones, see |
| 1096 | # http://dev.mysql.com/doc/mysql/en/time-zone-support.html |
1395 | # http://dev.mysql.com/doc/mysql/en/time-zone-support.html |
| 1097 | "${ROOT}/usr/bin/mysql_tzinfo_to_sql" "${ROOT}/usr/share/zoneinfo" > "${sqltmp}" 2>/dev/null |
1396 | "${ROOT}/usr/bin/mysql_tzinfo_to_sql" "${ROOT}/usr/share/zoneinfo" > "${sqltmp}" 2>/dev/null |
| 1098 | |
1397 | |
| 1099 | if [[ -r "${help_tables}" ]] ; then |
1398 | if [[ -r "${help_tables}" ]] ; then |
| 1100 | cat "${help_tables}" >> "${sqltmp}" |
1399 | cat "${help_tables}" >> "${sqltmp}" |
| 1101 | fi |
1400 | fi |
| 1102 | fi |
1401 | fi |
|
|
1402 | |
|
|
1403 | einfo "Creating the mysql database and setting proper" |
|
|
1404 | einfo "permissions on it ..." |
| 1103 | |
1405 | |
| 1104 | local socket="${ROOT}/var/run/mysqld/mysqld${RANDOM}.sock" |
1406 | local socket="${ROOT}/var/run/mysqld/mysqld${RANDOM}.sock" |
| 1105 | local pidfile="${ROOT}/var/run/mysqld/mysqld${RANDOM}.pid" |
1407 | local pidfile="${ROOT}/var/run/mysqld/mysqld${RANDOM}.pid" |
| 1106 | local mysqld="${ROOT}/usr/sbin/mysqld \ |
1408 | local mysqld="${ROOT}/usr/sbin/mysqld \ |
| 1107 | ${options} \ |
1409 | ${options} \ |
| 1108 | --user=mysql \ |
1410 | --user=mysql \ |
| 1109 | --skip-grant-tables \ |
|
|
| 1110 | --basedir=${ROOT}/usr \ |
1411 | --basedir=${ROOT}/usr \ |
| 1111 | --datadir=${ROOT}/${MY_DATADIR} \ |
1412 | --datadir=${ROOT}/${MY_DATADIR} \ |
| 1112 | --skip-innodb \ |
|
|
| 1113 | --skip-bdb \ |
|
|
| 1114 | --skip-networking \ |
|
|
| 1115 | --max_allowed_packet=8M \ |
1413 | --max_allowed_packet=8M \ |
| 1116 | --net_buffer_length=16K \ |
1414 | --net_buffer_length=16K \ |
|
|
1415 | --default-storage-engine=MyISAM \ |
| 1117 | --socket=${socket} \ |
1416 | --socket=${socket} \ |
| 1118 | --pid-file=${pidfile}" |
1417 | --pid-file=${pidfile}" |
|
|
1418 | #einfo "About to start mysqld: ${mysqld}" |
|
|
1419 | ebegin "Starting mysqld" |
| 1119 | ${mysqld} & |
1420 | ${mysqld} & |
|
|
1421 | rc=$? |
| 1120 | while ! [[ -S "${socket}" || "${maxtry}" -lt 1 ]] ; do |
1422 | while ! [[ -S "${socket}" || "${maxtry}" -lt 1 ]] ; do |
| 1121 | maxtry=$((${maxtry}-1)) |
1423 | maxtry=$((${maxtry}-1)) |
| 1122 | echo -n "." |
1424 | echo -n "." |
| 1123 | sleep 1 |
1425 | sleep 1 |
| 1124 | done |
1426 | done |
|
|
1427 | eend $rc |
| 1125 | |
1428 | |
|
|
1429 | if ! [[ -S "${socket}" ]]; then |
|
|
1430 | die "Completely failed to start up mysqld with: ${mysqld}" |
|
|
1431 | fi |
|
|
1432 | |
|
|
1433 | ebegin "Setting root password" |
| 1126 | # Do this from memory, as we don't want clear text passwords in temp files |
1434 | # Do this from memory, as we don't want clear text passwords in temp files |
| 1127 | local sql="UPDATE mysql.user SET Password = PASSWORD('${pwd1}') WHERE USER='root'" |
1435 | local sql="UPDATE mysql.user SET Password = PASSWORD('${MYSQL_ROOT_PASSWORD}') WHERE USER='root'" |
| 1128 | "${ROOT}/usr/bin/mysql" \ |
1436 | "${ROOT}/usr/bin/mysql" \ |
| 1129 | --socket=${socket} \ |
1437 | --socket=${socket} \ |
| 1130 | -hlocalhost \ |
1438 | -hlocalhost \ |
| 1131 | -e "${sql}" |
1439 | -e "${sql}" |
|
|
1440 | eend $? |
| 1132 | |
1441 | |
| 1133 | einfo "Loading \"zoneinfo\", this step may require a few seconds ..." |
1442 | ebegin "Loading \"zoneinfo\", this step may require a few seconds ..." |
| 1134 | |
|
|
| 1135 | "${ROOT}/usr/bin/mysql" \ |
1443 | "${ROOT}/usr/bin/mysql" \ |
| 1136 | --socket=${socket} \ |
1444 | --socket=${socket} \ |
| 1137 | -hlocalhost \ |
1445 | -hlocalhost \ |
| 1138 | -uroot \ |
1446 | -uroot \ |
| 1139 | -p"${pwd1}" \ |
1447 | -p"${MYSQL_ROOT_PASSWORD}" \ |
| 1140 | mysql < "${sqltmp}" |
1448 | mysql < "${sqltmp}" |
|
|
1449 | rc=$? |
|
|
1450 | eend $? |
|
|
1451 | [ $rc -ne 0 ] && ewarn "Failed to load zoneinfo!" |
| 1141 | |
1452 | |
| 1142 | # Stop the server and cleanup |
1453 | # Stop the server and cleanup |
|
|
1454 | einfo "Stopping the server ..." |
| 1143 | kill $(< "${pidfile}" ) |
1455 | kill $(< "${pidfile}" ) |
| 1144 | rm -f "${sqltmp}" |
1456 | rm -f "${sqltmp}" |
| 1145 | einfo "Stopping the server ..." |
|
|
| 1146 | wait %1 |
1457 | wait %1 |
| 1147 | einfo "Done" |
1458 | einfo "Done" |
| 1148 | } |
1459 | } |
| 1149 | |
1460 | |
| 1150 | # @FUNCTION: mysql_pkg_postrm |
1461 | # @FUNCTION: mysql_pkg_postrm |