| 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.140 2010/03/24 03:09:08 robbat2 Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/mysql.eclass,v 1.159 2011/04/21 12:15:19 robbat2 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> |
| … | |
… | |
| 59 | # Upstream MySQL considers the first two parts of the version number to be the |
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 |
60 | # major version. Upgrades that change major version should always run |
| 61 | # mysql_upgrade. |
61 | # mysql_upgrade. |
| 62 | MYSQL_PV_MAJOR="$(get_version_component_range 1-2 ${PV})" |
62 | MYSQL_PV_MAJOR="$(get_version_component_range 1-2 ${PV})" |
| 63 | |
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 | |
| 64 | # @ECLASS-VARIABLE: MYSQL_VERSION_ID |
72 | # @ECLASS-VARIABLE: MYSQL_VERSION_ID |
| 65 | # @DESCRIPTION: |
73 | # @DESCRIPTION: |
| 66 | # MYSQL_VERSION_ID will be: |
74 | # MYSQL_VERSION_ID will be: |
| 67 | # 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] |
| 68 | # 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 |
| … | |
… | |
| 95 | MYSQL_COMMUNITY_FEATURES=1 |
103 | MYSQL_COMMUNITY_FEATURES=1 |
| 96 | elif [ "${PV#5.4}" != "${PV}" ] ; then |
104 | elif [ "${PV#5.4}" != "${PV}" ] ; then |
| 97 | MYSQL_COMMUNITY_FEATURES=1 |
105 | MYSQL_COMMUNITY_FEATURES=1 |
| 98 | elif [ "${PV#5.5}" != "${PV}" ] ; then |
106 | elif [ "${PV#5.5}" != "${PV}" ] ; then |
| 99 | MYSQL_COMMUNITY_FEATURES=1 |
107 | MYSQL_COMMUNITY_FEATURES=1 |
| 100 | elif [ "${PV#6.0}" != "${PV}" ] ; then |
108 | elif [ "${PV#6}" != "${PV}" ] ; then |
|
|
109 | MYSQL_COMMUNITY_FEATURES=1 |
|
|
110 | elif [ "${PV#7}" != "${PV}" ] ; then |
| 101 | MYSQL_COMMUNITY_FEATURES=1 |
111 | MYSQL_COMMUNITY_FEATURES=1 |
| 102 | else |
112 | else |
| 103 | MYSQL_COMMUNITY_FEATURES=0 |
113 | MYSQL_COMMUNITY_FEATURES=0 |
| 104 | fi |
114 | fi |
| 105 | |
115 | |
| … | |
… | |
| 124 | |
134 | |
| 125 | [[ "${PN}" == "mariadb" ]] \ |
135 | [[ "${PN}" == "mariadb" ]] \ |
| 126 | && DEPEND="${DEPEND} libevent? ( >=dev-libs/libevent-1.4 )" |
136 | && DEPEND="${DEPEND} libevent? ( >=dev-libs/libevent-1.4 )" |
| 127 | |
137 | |
| 128 | # 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 |
| 129 | for i in "mysql" "mysql-community" "mariadb" ; do |
139 | for i in "mysql" "mysql-community" "mysql-cluster" "mariadb" ; do |
| 130 | [[ "${i}" == ${PN} ]] || |
140 | [[ "${i}" == ${PN} ]] || |
| 131 | DEPEND="${DEPEND} !dev-db/${i}" |
141 | DEPEND="${DEPEND} !dev-db/${i}" |
| 132 | done |
142 | done |
| 133 | |
143 | |
| 134 | RDEPEND="${DEPEND} |
144 | RDEPEND="${DEPEND} |
| 135 | !minimal? ( dev-db/mysql-init-scripts ) |
145 | !minimal? ( dev-db/mysql-init-scripts ) |
| 136 | selinux? ( sec-policy/selinux-mysql )" |
146 | selinux? ( sec-policy/selinux-mysql )" |
| 137 | |
147 | |
|
|
148 | if [ "${EAPI:-0}" = "2" ]; then |
|
|
149 | DEPEND="${DEPEND} static? ( || ( sys-libs/ncurses[static-libs] <=sys-libs/ncurses-5.7-r3 ) )" |
|
|
150 | fi |
|
|
151 | |
| 138 | # compile-time-only |
152 | # compile-time-only |
| 139 | mysql_version_is_at_least "5.1" \ |
153 | mysql_version_is_at_least "5.1" \ |
| 140 | || DEPEND="${DEPEND} berkdb? ( sys-apps/ed )" |
154 | || DEPEND="${DEPEND} berkdb? ( sys-apps/ed )" |
| 141 | |
155 | |
| 142 | # compile-time-only |
156 | # compile-time-only |
| 143 | mysql_version_is_at_least "5.1.12" \ |
157 | mysql_version_is_at_least "5.1.12" \ |
| 144 | && DEPEND="${DEPEND} >=dev-util/cmake-2.4.3" |
158 | && DEPEND="${DEPEND} >=dev-util/cmake-2.4.3" |
|
|
159 | |
|
|
160 | [[ "${PN}" == "mariadb" ]] \ |
|
|
161 | && mysql_version_is_at_least "5.2" \ |
|
|
162 | && DEPEND="${DEPEND} oqgraph? ( >=dev-libs/boost-1.40.0 )" |
|
|
163 | #SphinxSE is included but is not available in 5.2.4 due to a missing plug.in file |
|
|
164 | # sphinx? ( app-misc/sphinx )" |
| 145 | |
165 | |
| 146 | # dev-perl/DBD-mysql is needed by some scripts installed by MySQL |
166 | # dev-perl/DBD-mysql is needed by some scripts installed by MySQL |
| 147 | PDEPEND="perl? ( >=dev-perl/DBD-mysql-2.9004 )" |
167 | PDEPEND="perl? ( >=dev-perl/DBD-mysql-2.9004 )" |
| 148 | |
168 | |
| 149 | # For other stuff to bring us in |
169 | # For other stuff to bring us in |
| … | |
… | |
| 152 | # Work out the default SERVER_URI correctly |
172 | # Work out the default SERVER_URI correctly |
| 153 | if [ -z "${SERVER_URI}" ]; then |
173 | if [ -z "${SERVER_URI}" ]; then |
| 154 | [ -z "${MY_PV}" ] && MY_PV="${PV//_/-}" |
174 | [ -z "${MY_PV}" ] && MY_PV="${PV//_/-}" |
| 155 | if [ "${PN}" == "mariadb" ]; then |
175 | if [ "${PN}" == "mariadb" ]; then |
| 156 | MARIA_FULL_PV="$(replace_version_separator 3 '-' ${PV})" |
176 | MARIA_FULL_PV="$(replace_version_separator 3 '-' ${PV})" |
|
|
177 | MARIA_FULL_P="${PN}-${MARIA_FULL_PV}" |
|
|
178 | SERVER_URI=" |
|
|
179 | http://ftp.osuosl.org/pub/mariadb/${MARIA_FULL_P}/kvm-tarbake-jaunty-x86/${MARIA_FULL_P}.tar.gz |
|
|
180 | http://ftp.rediris.es/mirror/MariaDB/${MARIA_FULL_P}/kvm-tarbake-jaunty-x86/${MARIA_FULL_P}.tar.gz |
|
|
181 | http://maria.llarian.net/download/${MARIA_FULL_P}/kvm-tarbake-jaunty-x86/${MARIA_FULL_P}.tar.gz |
| 157 | SERVER_URI="http://launchpad.net/maria/${MYSQL_PV_MAJOR}/ongoing/+download/mariadb-${MARIA_FULL_PV}.tar.gz" |
182 | http://launchpad.net/maria/${MYSQL_PV_MAJOR}/ongoing/+download/${MARIA_FULL_P}.tar.gz |
|
|
183 | http://mirrors.fe.up.pt/pub/${PN}/${MARIA_FULL_P}/kvm-tarbake-jaunty-x86/${MARIA_FULL_P}.tar.gz |
|
|
184 | http://ftp-stud.hs-esslingen.de/pub/Mirrors/${PN}/${MARIA_FULL_P}/kvm-tarbake-jaunty-x86/${MARIA_FULL_P}.tar.gz |
|
|
185 | " |
| 158 | # The community build is on the mirrors |
186 | # The community and cluster builds are on the mirrors |
| 159 | elif [ "${MYSQL_COMMUNITY_FEATURES}" == "1" ]; then |
187 | elif [[ "${MYSQL_COMMUNITY_FEATURES}" == "1" || ${PN} == "mysql-cluster" ]] ; then |
| 160 | SERVER_URI="mirror://mysql/Downloads/MySQL-${PV%.*}/mysql-${MY_PV}.tar.gz" |
188 | if [[ "${PN}" == "mysql-cluster" ]] ; then |
|
|
189 | URI_DIR="MySQL-Cluster" |
|
|
190 | URI_FILE="mysql-cluster-gpl" |
|
|
191 | else |
|
|
192 | URI_DIR="MySQL" |
|
|
193 | URI_FILE="mysql" |
|
|
194 | fi |
|
|
195 | URI_A="${URI_FILE}-${MY_PV}.tar.gz" |
|
|
196 | MIRROR_PV=$(get_version_component_range 1-2 ${PV}) |
|
|
197 | # Recently upstream switched to an archive site, and not on mirrors |
|
|
198 | SERVER_URI="http://downloads.mysql.com/archives/${URI_FILE}-${MIRROR_PV}/${URI_A} |
|
|
199 | mirror://mysql/Downloads/${URI_DIR}-${PV%.*}/${URI_A}" |
| 161 | # The (old) enterprise source is on the primary site only |
200 | # The (old) enterprise source is on the primary site only |
| 162 | elif [ "${PN}" == "mysql" ]; then |
201 | elif [ "${PN}" == "mysql" ]; then |
| 163 | SERVER_URI="ftp://ftp.mysql.com/pub/mysql/src/mysql-${MY_PV}.tar.gz" |
202 | SERVER_URI="ftp://ftp.mysql.com/pub/mysql/src/mysql-${MY_PV}.tar.gz" |
| 164 | fi |
203 | fi |
| 165 | fi |
204 | fi |
| … | |
… | |
| 178 | HOMEPAGE="http://www.mysql.com/" |
217 | HOMEPAGE="http://www.mysql.com/" |
| 179 | if [[ "${PN}" == "mariadb" ]]; then |
218 | if [[ "${PN}" == "mariadb" ]]; then |
| 180 | HOMEPAGE="http://askmonty.org/" |
219 | HOMEPAGE="http://askmonty.org/" |
| 181 | DESCRIPTION="MariaDB is a MySQL fork with 3rd-party patches and additional storage engines merged." |
220 | DESCRIPTION="MariaDB is a MySQL fork with 3rd-party patches and additional storage engines merged." |
| 182 | fi |
221 | fi |
|
|
222 | if [[ "${PN}" == "mysql-community" ]]; then |
|
|
223 | DESCRIPTION="${DESCRIPTION} (obsolete, move to dev-db/mysql)" |
|
|
224 | fi |
| 183 | LICENSE="GPL-2" |
225 | LICENSE="GPL-2" |
| 184 | SLOT="0" |
226 | SLOT="0" |
| 185 | IUSE="big-tables debug embedded minimal ${IUSE_DEFAULT_ON}perl selinux ssl static test" |
227 | IUSE="big-tables debug embedded minimal ${IUSE_DEFAULT_ON}perl selinux ssl static test" |
| 186 | |
228 | |
| 187 | mysql_version_is_at_least "4.1" \ |
229 | mysql_version_is_at_least "4.1" \ |
| 188 | && IUSE="${IUSE} latin1" |
230 | && IUSE="${IUSE} latin1" |
| 189 | |
231 | |
| 190 | mysql_version_is_at_least "4.1.3" \ |
232 | if mysql_version_is_at_least "4.1.3" ; then |
| 191 | && IUSE="${IUSE} cluster extraengine" |
233 | IUSE="${IUSE} extraengine" |
|
|
234 | if [[ "${PN}" != "mysql-cluster" ]] ; then |
|
|
235 | IUSE="${IUSE} cluster" |
|
|
236 | fi |
|
|
237 | fi |
| 192 | |
238 | |
| 193 | mysql_version_is_at_least "5.0" \ |
239 | mysql_version_is_at_least "5.0" \ |
| 194 | || IUSE="${IUSE} raid" |
240 | || IUSE="${IUSE} raid" |
| 195 | |
241 | |
| 196 | mysql_version_is_at_least "5.0.18" \ |
242 | mysql_version_is_at_least "5.0.18" \ |
| … | |
… | |
| 202 | [ "${MYSQL_COMMUNITY_FEATURES}" == "1" ] \ |
248 | [ "${MYSQL_COMMUNITY_FEATURES}" == "1" ] \ |
| 203 | && IUSE="${IUSE} ${IUSE_DEFAULT_ON}community profiling" |
249 | && IUSE="${IUSE} ${IUSE_DEFAULT_ON}community profiling" |
| 204 | |
250 | |
| 205 | [[ "${PN}" == "mariadb" ]] \ |
251 | [[ "${PN}" == "mariadb" ]] \ |
| 206 | && IUSE="${IUSE} libevent" |
252 | && IUSE="${IUSE} libevent" |
|
|
253 | |
|
|
254 | [[ "${PN}" == "mariadb" ]] \ |
|
|
255 | && mysql_version_is_at_least "5.2" \ |
|
|
256 | && IUSE="${IUSE} oqgraph" |
|
|
257 | #SphinxSE is included but is not available in 5.2.4 due to a missing plug.in file |
|
|
258 | #&& IUSE="${IUSE} oqgraph sphinx" |
| 207 | |
259 | |
| 208 | # MariaDB has integrated PBXT |
260 | # MariaDB has integrated PBXT |
| 209 | # PBXT_VERSION means that we have a PBXT patch for this PV |
261 | # PBXT_VERSION means that we have a PBXT patch for this PV |
| 210 | # PBXT was only introduced after 5.1.12 |
262 | # PBXT was only introduced after 5.1.12 |
| 211 | pbxt_patch_available() { |
263 | pbxt_patch_available() { |
| … | |
… | |
| 229 | && mysql_version_is_at_least "5.1.26" \ |
281 | && mysql_version_is_at_least "5.1.26" \ |
| 230 | && [[ -n "${XTRADB_VER}" && -n "${PERCONA_VER}" ]] |
282 | && [[ -n "${XTRADB_VER}" && -n "${PERCONA_VER}" ]] |
| 231 | return $? |
283 | return $? |
| 232 | } |
284 | } |
| 233 | |
285 | |
|
|
286 | |
| 234 | pbxt_patch_available \ |
287 | pbxt_patch_available \ |
| 235 | && PBXT_P="pbxt-${PBXT_VERSION}" \ |
288 | && PBXT_P="pbxt-${PBXT_VERSION}" \ |
| 236 | && PBXT_SRC_URI="http://www.primebase.org/download/${PBXT_P}.tar.gz mirror://sourceforge/pbxt/${PBXT_P}.tar.gz" \ |
289 | && PBXT_SRC_URI="http://www.primebase.org/download/${PBXT_P}.tar.gz mirror://sourceforge/pbxt/${PBXT_P}.tar.gz" \ |
| 237 | && SRC_URI="${SRC_URI} pbxt? ( ${PBXT_SRC_URI} )" \ |
290 | && SRC_URI="${SRC_URI} pbxt? ( ${PBXT_SRC_URI} )" \ |
| 238 | |
291 | |
|
|
292 | # PBXT_NEWSTYLE means pbxt is in storage/ and gets enabled as other plugins |
|
|
293 | # vs. built outside the dir |
| 239 | pbxt_available \ |
294 | pbxt_available \ |
| 240 | && IUSE="${IUSE} pbxt" |
295 | && IUSE="${IUSE} pbxt" \ |
|
|
296 | && mysql_version_is_at_least "5.1.40" \ |
|
|
297 | && PBXT_NEWSTYLE=1 |
| 241 | |
298 | |
| 242 | xtradb_patch_available \ |
299 | xtradb_patch_available \ |
| 243 | && XTRADB_P="percona-xtradb-${XTRADB_VER}" \ |
300 | && XTRADB_P="percona-xtradb-${XTRADB_VER}" \ |
| 244 | && XTRADB_SRC_URI_COMMON="${PERCONA_VER}/source/${XTRADB_P}.tar.gz" \ |
301 | && XTRADB_SRC_URI_COMMON="${PERCONA_VER}/source/${XTRADB_P}.tar.gz" \ |
| 245 | && XTRADB_SRC_URI1="http://www.percona.com/percona-builds/xtradb/${XTRADB_SRC_URI_COMMON}" \ |
302 | && XTRADB_SRC_B1="http://www.percona.com/" \ |
|
|
303 | && XTRADB_SRC_B2="${XTRADB_SRC_B1}/percona-builds/" \ |
|
|
304 | && XTRADB_SRC_URI1="${XTRADB_SRC_B2}/Percona-Server/Percona-Server-${XTRADB_SRC_URI_COMMON}" \ |
| 246 | && XTRADB_SRC_URI2="http://www.percona.com/${PN}/xtradb/${XTRADB_SRC_URI_COMMON}" \ |
305 | && XTRADB_SRC_URI2="${XTRADB_SRC_B2}/xtradb/${XTRADB_SRC_URI_COMMON}" \ |
|
|
306 | && XTRADB_SRC_URI3="${XTRADB_SRC_B1}/${PN}/xtradb/${XTRADB_SRC_URI_COMMON}" \ |
| 247 | && SRC_URI="${SRC_URI} xtradb? ( ${XTRADB_SRC_URI1} ${XTRADB_SRC_URI2} )" \ |
307 | && SRC_URI="${SRC_URI} xtradb? ( ${XTRADB_SRC_URI1} ${XTRADB_SRC_URI2} ${XTRADB_SRC_URI3} )" \ |
| 248 | && IUSE="${IUSE} xtradb" |
308 | && IUSE="${IUSE} xtradb" |
| 249 | |
309 | |
| 250 | # |
310 | # |
| 251 | # HELPER FUNCTIONS: |
311 | # HELPER FUNCTIONS: |
| 252 | # |
312 | # |
| … | |
… | |
| 257 | mysql_disable_test() { |
317 | mysql_disable_test() { |
| 258 | local rawtestname testname testsuite reason mysql_disable_file |
318 | local rawtestname testname testsuite reason mysql_disable_file |
| 259 | rawtestname="${1}" ; shift |
319 | rawtestname="${1}" ; shift |
| 260 | reason="${@}" |
320 | reason="${@}" |
| 261 | ewarn "test '${rawtestname}' disabled: '${reason}'" |
321 | ewarn "test '${rawtestname}' disabled: '${reason}'" |
| 262 | |
322 | |
| 263 | testsuite="${rawtestname/.*}" |
323 | testsuite="${rawtestname/.*}" |
| 264 | testname="${rawtestname/*.}" |
324 | testname="${rawtestname/*.}" |
| 265 | mysql_disable_file="${S}/mysql-test/t/disabled.def" |
325 | mysql_disable_file="${S}/mysql-test/t/disabled.def" |
| 266 | #einfo "rawtestname=${rawtestname} testname=${testname} testsuite=${testsuite}" |
326 | #einfo "rawtestname=${rawtestname} testname=${testname} testsuite=${testsuite}" |
| 267 | echo ${testname} : ${reason} >> "${mysql_disable_file}" |
327 | echo ${testname} : ${reason} >> "${mysql_disable_file}" |
| … | |
… | |
| 349 | MY_DATADIR="${new_MY_DATADIR}" |
409 | MY_DATADIR="${new_MY_DATADIR}" |
| 350 | fi |
410 | fi |
| 351 | fi |
411 | fi |
| 352 | fi |
412 | fi |
| 353 | |
413 | |
|
|
414 | if [ "${MY_SOURCEDIR:-unset}" == "unset" ]; then |
| 354 | MY_SOURCEDIR=${SERVER_URI##*/} |
415 | MY_SOURCEDIR=${SERVER_URI##*/} |
| 355 | MY_SOURCEDIR=${MY_SOURCEDIR%.tar*} |
416 | MY_SOURCEDIR=${MY_SOURCEDIR%.tar*} |
|
|
417 | fi |
| 356 | |
418 | |
| 357 | export MY_SHAREDSTATEDIR MY_SYSCONFDIR |
419 | export MY_SHAREDSTATEDIR MY_SYSCONFDIR |
| 358 | export MY_LIBDIR MY_LOCALSTATEDIR MY_LOGDIR |
420 | export MY_LIBDIR MY_LOCALSTATEDIR MY_LOGDIR |
| 359 | export MY_INCLUDEDIR MY_DATADIR MY_SOURCEDIR |
421 | export MY_INCLUDEDIR MY_DATADIR MY_SOURCEDIR |
| 360 | } |
422 | } |
| … | |
… | |
| 407 | if use debug ; then |
469 | if use debug ; then |
| 408 | myconf="${myconf} --with-debug=full" |
470 | myconf="${myconf} --with-debug=full" |
| 409 | else |
471 | else |
| 410 | myconf="${myconf} --without-debug" |
472 | myconf="${myconf} --without-debug" |
| 411 | mysql_version_is_at_least "4.1.3" \ |
473 | mysql_version_is_at_least "4.1.3" \ |
| 412 | && use cluster \ |
474 | && ( use cluster || [[ "${PN}" == "mysql-cluster" ]] ) \ |
| 413 | && myconf="${myconf} --without-ndb-debug" |
475 | && myconf="${myconf} --without-ndb-debug" |
| 414 | fi |
476 | fi |
| 415 | |
477 | |
| 416 | if [ -n "${MYSQL_DEFAULT_CHARSET}" -a -n "${MYSQL_DEFAULT_COLLATION}" ]; then |
478 | if [ -n "${MYSQL_DEFAULT_CHARSET}" -a -n "${MYSQL_DEFAULT_COLLATION}" ]; then |
| 417 | ewarn "You are using a custom charset of ${MYSQL_DEFAULT_CHARSET}" |
479 | ewarn "You are using a custom charset of ${MYSQL_DEFAULT_CHARSET}" |
| … | |
… | |
| 474 | myconf="${myconf} --without-berkeley-db" |
536 | myconf="${myconf} --without-berkeley-db" |
| 475 | fi |
537 | fi |
| 476 | |
538 | |
| 477 | if mysql_version_is_at_least "4.1.3" ; then |
539 | if mysql_version_is_at_least "4.1.3" ; then |
| 478 | myconf="${myconf} --with-geometry" |
540 | myconf="${myconf} --with-geometry" |
|
|
541 | if [[ "${PN}" != "mysql-cluster" ]] ; then |
| 479 | myconf="${myconf} $(use_with cluster ndbcluster)" |
542 | myconf="${myconf} $(use_with cluster ndbcluster)" |
|
|
543 | fi |
| 480 | fi |
544 | fi |
| 481 | |
545 | |
| 482 | if mysql_version_is_at_least "4.1.3" && use extraengine ; then |
546 | if mysql_version_is_at_least "4.1.3" && use extraengine ; then |
| 483 | # http://dev.mysql.com/doc/mysql/en/archive-storage-engine.html |
547 | # http://dev.mysql.com/doc/mysql/en/archive-storage-engine.html |
| 484 | myconf="${myconf} --with-archive-storage-engine" |
548 | myconf="${myconf} --with-archive-storage-engine" |
| … | |
… | |
| 521 | myconf="${myconf} --enable-assembler" |
585 | myconf="${myconf} --enable-assembler" |
| 522 | myconf="${myconf} --with-geometry" |
586 | myconf="${myconf} --with-geometry" |
| 523 | myconf="${myconf} --with-readline" |
587 | myconf="${myconf} --with-readline" |
| 524 | myconf="${myconf} --with-zlib-dir=/usr/" |
588 | myconf="${myconf} --with-zlib-dir=/usr/" |
| 525 | myconf="${myconf} --without-pstack" |
589 | myconf="${myconf} --without-pstack" |
|
|
590 | myconf="${myconf} --with-plugindir=/usr/$(get_libdir)/mysql/plugin" |
|
|
591 | |
|
|
592 | # This is an explict die here, because if we just forcibly disable it, then the |
|
|
593 | # user's data is not accessible. |
|
|
594 | use max-idx-128 && die "Bug #336027: upstream has a corruption issue with max-idx-128 presently" |
| 526 | use max-idx-128 && myconf="${myconf} --with-max-indexes=128" |
595 | #use max-idx-128 && myconf="${myconf} --with-max-indexes=128" |
| 527 | if [ "${MYSQL_COMMUNITY_FEATURES}" == "1" ]; then |
596 | if [ "${MYSQL_COMMUNITY_FEATURES}" == "1" ]; then |
| 528 | myconf="${myconf} $(use_enable community community-features)" |
597 | myconf="${myconf} $(use_enable community community-features)" |
| 529 | if use community; then |
598 | if use community; then |
| 530 | myconf="${myconf} $(use_enable profiling)" |
599 | myconf="${myconf} $(use_enable profiling)" |
| 531 | else |
600 | else |
| 532 | myconf="${myconf} --disable-profiling" |
601 | myconf="${myconf} --disable-profiling" |
| 533 | fi |
602 | fi |
| 534 | fi |
603 | fi |
| 535 | |
604 | |
|
|
605 | # Scan for all available plugins |
|
|
606 | local plugins_avail="$( |
|
|
607 | LANG=C \ |
|
|
608 | find "${S}" \ |
|
|
609 | \( \ |
|
|
610 | -name 'plug.in' \ |
|
|
611 | -o -iname 'configure.in' \ |
|
|
612 | -o -iname 'configure.ac' \ |
|
|
613 | \) \ |
|
|
614 | -print0 \ |
|
|
615 | | xargs -0 sed -r -n \ |
|
|
616 | -e '/^MYSQL_STORAGE_ENGINE/{ |
|
|
617 | s~MYSQL_STORAGE_ENGINE\([[:space:]]*\[?([-_a-z0-9]+)\]?.*,~\1 ~g ; |
|
|
618 | s~^([^ ]+).*~\1~gp; |
|
|
619 | }' \ |
|
|
620 | | tr -s '\n' ' ' |
|
|
621 | )" |
|
|
622 | |
| 536 | # 5.1 introduces a new way to manage storage engines (plugins) |
623 | # 5.1 introduces a new way to manage storage engines (plugins) |
| 537 | # like configuration=none |
624 | # like configuration=none |
| 538 | # This base set are required, and will always be statically built. |
625 | # This base set are required, and will always be statically built. |
| 539 | local plugins="csv,myisam,myisammrg,heap" |
626 | local plugins_sta="csv myisam myisammrg heap" |
|
|
627 | local plugins_dyn="" |
|
|
628 | local plugins_dis="example ibmdb2i" |
|
|
629 | |
|
|
630 | # These aren't actually required by the base set, but are really useful: |
|
|
631 | plugins_sta="${plugins_sta} archive blackhole" |
|
|
632 | |
|
|
633 | # default in 5.5.4 |
|
|
634 | if mysql_version_is_at_least "5.5.4" ; then |
|
|
635 | plugins_sta="${plugins_sta} partition" |
|
|
636 | fi |
|
|
637 | # Now the extras |
| 540 | if use extraengine ; then |
638 | if use extraengine ; then |
| 541 | # like configuration=max-no-ndb, archive and example removed in 5.1.11 |
639 | # like configuration=max-no-ndb, archive and example removed in 5.1.11 |
| 542 | # not added yet: ibmdb2i |
640 | # not added yet: ibmdb2i |
| 543 | # Not supporting as examples: example,daemon_example,ftexample |
641 | # Not supporting as examples: example,daemon_example,ftexample |
| 544 | plugins="${plugins},archive,blackhole,federated,partition" |
642 | plugins_sta="${plugins_sta} partition" |
| 545 | |
643 | |
| 546 | if [[ "${PN}" != "mariadb" ]] ; then |
644 | if [[ "${PN}" != "mariadb" ]] ; then |
| 547 | elog "Before using the Federated storage engine, please be sure to read" |
645 | elog "Before using the Federated storage engine, please be sure to read" |
| 548 | elog "http://dev.mysql.com/doc/refman/5.1/en/federated-limitations.html" |
646 | elog "http://dev.mysql.com/doc/refman/5.1/en/federated-limitations.html" |
|
|
647 | plugins_dyn="${plugins_sta} federated" |
| 549 | else |
648 | else |
| 550 | elog "MariaDB includes the FederatedX engine. Be sure to read" |
649 | elog "MariaDB includes the FederatedX engine. Be sure to read" |
| 551 | elog "http://askmonty.org/wiki/index.php/Manual:FederatedX_storage_engine" |
650 | elog "http://askmonty.org/wiki/index.php/Manual:FederatedX_storage_engine" |
|
|
651 | plugins_dyn="${plugins_sta} federatedx" |
| 552 | fi |
652 | fi |
|
|
653 | else |
|
|
654 | plugins_dis="${plugins_dis} partition federated" |
| 553 | fi |
655 | fi |
| 554 | |
656 | |
| 555 | # Upstream specifically requests that InnoDB always be built: |
657 | # Upstream specifically requests that InnoDB always be built: |
| 556 | # - innobase, innodb_plugin |
658 | # - innobase, innodb_plugin |
| 557 | # Build falcon if available for 6.x series. |
659 | # Build falcon if available for 6.x series. |
| 558 | for i in innobase innodb_plugin falcon ; do |
660 | for i in innobase falcon ; do |
| 559 | [ -e "${S}"/storage/${i} ] && plugins="${plugins},${i}" |
661 | [ -e "${S}"/storage/${i} ] && plugins_sta="${plugins_sta} ${i}" |
| 560 | done |
662 | done |
|
|
663 | for i in innodb_plugin ; do |
|
|
664 | [ -e "${S}"/storage/${i} ] && plugins_dyn="${plugins_dyn} ${i}" |
|
|
665 | done |
| 561 | |
666 | |
| 562 | # like configuration=max-no-ndb |
667 | # like configuration=max-no-ndb |
| 563 | if use cluster ; then |
668 | if ( use cluster || [[ "${PN}" == "mysql-cluster" ]] ) ; then |
| 564 | plugins="${plugins},ndbcluster" |
669 | plugins_sta="${plugins_sta} ndbcluster partition" |
|
|
670 | plugins_dis="${plugins_dis//partition}" |
| 565 | myconf="${myconf} --with-ndb-binlog" |
671 | myconf="${myconf} --with-ndb-binlog" |
|
|
672 | else |
|
|
673 | plugins_dis="${plugins_dis} ndbcluster" |
| 566 | fi |
674 | fi |
| 567 | |
675 | |
| 568 | if [[ "${PN}" == "mariadb" ]] ; then |
676 | if [[ "${PN}" == "mariadb" ]] ; then |
| 569 | # In MariaDB, InnoDB is packaged in the xtradb directory, so it's not |
677 | # In MariaDB, InnoDB is packaged in the xtradb directory, so it's not |
| 570 | # caught above. |
678 | # caught above. |
| 571 | plugins="${plugins},maria,innobase" |
|
|
| 572 | if use pbxt ; then |
|
|
| 573 | plugins="${plugins},pbxt" |
|
|
| 574 | else |
|
|
| 575 | myconf="${myconf} --without-plugin-pbxt" |
|
|
| 576 | fi |
|
|
| 577 | myconf="${myconf} $(use_with libevent)" |
|
|
| 578 | # This is not optional, without it several upstream testcases fail. |
679 | # This is not optional, without it several upstream testcases fail. |
| 579 | # Also strongly recommended by upstream. |
680 | # Also strongly recommended by upstream. |
|
|
681 | if [[ "${PV}" < "5.2.0" ]] ; then |
| 580 | myconf="${myconf} --with-maria-tmp-tables" |
682 | myconf="${myconf} --with-maria-tmp-tables" |
|
|
683 | plugins_sta="${plugins_sta} maria" |
|
|
684 | else |
|
|
685 | myconf="${myconf} --with-aria-tmp-tables" |
|
|
686 | plugins_sta="${plugins_sta} aria" |
| 581 | fi |
687 | fi |
| 582 | |
688 | |
|
|
689 | [ -e "${S}"/storage/innobase ] || [ -e "${S}"/storage/xtradb ] || |
|
|
690 | die "The ${P} package doesn't provide innobase nor xtradb" |
|
|
691 | |
|
|
692 | for i in innobase xtradb ; do |
|
|
693 | [ -e "${S}"/storage/${i} ] && plugins_sta="${plugins_sta} ${i}" |
|
|
694 | done |
|
|
695 | |
|
|
696 | myconf="${myconf} $(use_with libevent)" |
|
|
697 | |
|
|
698 | if mysql_version_is_at_least "5.2" ; then |
|
|
699 | #This should include sphinx, but the 5.2.4 archive forgot the plug.in file |
|
|
700 | #for i in oqgraph sphinx ; do |
|
|
701 | for i in oqgraph ; do |
|
|
702 | use ${i} \ |
|
|
703 | && plugins_dyn="${plugins_dyn} ${i}" \ |
|
|
704 | || plugins_dis="${plugins_dis} ${i}" |
|
|
705 | done |
|
|
706 | fi |
|
|
707 | fi |
|
|
708 | |
|
|
709 | if pbxt_available && [[ "${PBXT_NEWSTYLE}" == "1" ]]; then |
|
|
710 | use pbxt \ |
|
|
711 | && plugins_dyn="${plugins_dyn} pbxt" \ |
|
|
712 | || plugins_dis="${plugins_dis} pbxt" |
|
|
713 | fi |
|
|
714 | |
|
|
715 | use static && \ |
|
|
716 | plugins_sta="${plugins_sta} ${plugins_dyn}" && \ |
|
|
717 | plugins_dyn="" |
|
|
718 | |
|
|
719 | einfo "Available plugins: ${plugins_avail}" |
|
|
720 | einfo "Dynamic plugins: ${plugins_dyn}" |
|
|
721 | einfo "Static plugins: ${plugins_sta}" |
|
|
722 | einfo "Disabled plugins: ${plugins_dis}" |
|
|
723 | |
|
|
724 | # These are the static plugins |
| 583 | myconf="${myconf} --with-plugins=${plugins}" |
725 | myconf="${myconf} --with-plugins=${plugins_sta// /,}" |
|
|
726 | # And the disabled ones |
|
|
727 | for i in ${plugins_dis} ; do |
|
|
728 | myconf="${myconf} --without-plugin-${i}" |
|
|
729 | done |
| 584 | } |
730 | } |
| 585 | |
731 | |
| 586 | pbxt_src_configure() { |
732 | pbxt_src_configure() { |
| 587 | mysql_init_vars |
733 | mysql_init_vars |
| 588 | |
734 | |
| 589 | pushd "${WORKDIR}/pbxt-${PBXT_VERSION}" &>/dev/null |
735 | pushd "${WORKDIR}/pbxt-${PBXT_VERSION}" &>/dev/null |
| 590 | |
736 | |
| 591 | einfo "Reconfiguring dir '${PWD}'" |
737 | einfo "Reconfiguring dir '${PWD}'" |
| 592 | AT_GNUCONF_UPDATE="yes" eautoreconf |
738 | eautoreconf |
| 593 | |
739 | |
| 594 | local myconf="" |
740 | local myconf="" |
| 595 | myconf="${myconf} --with-mysql=${S} --libdir=/usr/$(get_libdir)" |
741 | myconf="${myconf} --with-mysql=${S} --libdir=/usr/$(get_libdir)" |
| 596 | use debug && myconf="${myconf} --with-debug=full" |
742 | use debug && myconf="${myconf} --with-debug=full" |
| 597 | econf ${myconf} || die "Problem configuring PBXT storage engine" |
743 | econf ${myconf} || die "Problem configuring PBXT storage engine" |
| 598 | } |
744 | } |
| 599 | |
745 | |
| 600 | pbxt_src_compile() { |
746 | pbxt_src_compile() { |
|
|
747 | |
| 601 | # Be backwards compatible for now |
748 | # Be backwards compatible for now |
| 602 | if [[ $EAPI != 2 ]]; then |
749 | if [[ $EAPI != 2 ]]; then |
| 603 | pbxt_src_configure |
750 | pbxt_src_configure |
| 604 | fi |
751 | fi |
| 605 | # TODO: is it safe/needed to use emake here ? |
752 | # TODO: is it safe/needed to use emake here ? |
| … | |
… | |
| 632 | eerror "Testing with FEATURES=-userpriv is no longer supported by upstream. Tests MUST be run as non-root." |
779 | eerror "Testing with FEATURES=-userpriv is no longer supported by upstream. Tests MUST be run as non-root." |
| 633 | fi |
780 | fi |
| 634 | fi |
781 | fi |
| 635 | fi |
782 | fi |
| 636 | |
783 | |
|
|
784 | # bug 350844 |
|
|
785 | case "${EAPI:-0}" in |
|
|
786 | 0 | 1) |
|
|
787 | if use static && !built_with_use sys-libs/ncurses static-libs; then |
|
|
788 | die "To build MySQL statically you need to enable static-libs for sys-libs/ncurses" |
|
|
789 | fi |
|
|
790 | ;; |
|
|
791 | esac |
|
|
792 | |
| 637 | # Check for USE flag problems in pkg_setup |
793 | # Check for USE flag problems in pkg_setup |
| 638 | if use static && use ssl ; then |
794 | if use static && use ssl ; then |
| 639 | eerror "MySQL does not support being built statically with SSL support enabled!" |
|
|
| 640 | die "MySQL does not support being built statically with SSL support enabled!" |
795 | M="MySQL does not support being built statically with SSL support enabled!" |
|
|
796 | eerror "${M}" |
|
|
797 | die "${M}" |
|
|
798 | fi |
|
|
799 | |
|
|
800 | if mysql_version_is_at_least "5.1.51" \ |
|
|
801 | && ! mysql_version_is_at_least "5.2" \ |
|
|
802 | && use debug ; then |
|
|
803 | # Also in package.use.mask |
|
|
804 | die "Bug #344885: Upstream has broken USE=debug for 5.1 series >=5.1.51" |
| 641 | fi |
805 | fi |
| 642 | |
806 | |
| 643 | if ! mysql_version_is_at_least "5.0" \ |
807 | if ! mysql_version_is_at_least "5.0" \ |
| 644 | && use raid \ |
808 | && use raid \ |
| 645 | && use static ; then |
809 | && use static ; then |
| … | |
… | |
| 647 | eerror "with RAID support enabled." |
811 | eerror "with RAID support enabled." |
| 648 | die "USE flags 'raid' and 'static' conflict!" |
812 | die "USE flags 'raid' and 'static' conflict!" |
| 649 | fi |
813 | fi |
| 650 | |
814 | |
| 651 | if mysql_version_is_at_least "4.1.3" \ |
815 | if mysql_version_is_at_least "4.1.3" \ |
| 652 | && ( use cluster || use extraengine ) \ |
816 | && ( use cluster || use extraengine || use embedded ) \ |
| 653 | && use minimal ; then |
817 | && use minimal ; then |
| 654 | eerror "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
|
|
| 655 | die "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
818 | M="USE flags 'cluster', 'extraengine', 'embedded' conflict with 'minimal' USE flag!" |
|
|
819 | eerror "${M}" |
|
|
820 | die "${M}" |
| 656 | fi |
821 | fi |
| 657 | |
822 | |
| 658 | # Bug #290570 fun. Upstream made us need a fairly new GCC4. |
|
|
| 659 | if mysql_version_is_at_least "5.0.83" ; then |
823 | if mysql_version_is_at_least "5.1" \ |
|
|
824 | && xtradb_patch_available \ |
|
|
825 | && use xtradb \ |
|
|
826 | && use embedded ; then |
|
|
827 | M="USE flags 'xtradb' and 'embedded' conflict and cause build failures" |
|
|
828 | eerror "${M}" |
|
|
829 | die "${M}" |
|
|
830 | fi |
|
|
831 | |
|
|
832 | # Bug #290570, 284946, 307251 |
|
|
833 | # Upstream changes made us need a fairly new GCC4. |
|
|
834 | # But only for 5.0.8[3-6]! |
|
|
835 | if mysql_version_is_at_least "5.0.83" && ! mysql_version_is_at_least 5.0.87 ; then |
| 660 | GCC_VER=$(gcc-version) |
836 | GCC_VER=$(gcc-version) |
| 661 | case ${GCC_VER} in |
837 | case ${GCC_VER} in |
| 662 | 2*|3*|4.0|4.1|4.2) die "Active GCC too old! Must have at least GCC4.3" ;; |
838 | 2*|3*|4.0|4.1|4.2) |
|
|
839 | eerror "Some releases of MySQL required a very new GCC, and then" |
|
|
840 | eerror "later release relaxed that requirement again. Either pick a" |
|
|
841 | eerror "MySQL >=5.0.87, or use a newer GCC." |
|
|
842 | die "Active GCC too old!" ;; |
| 663 | esac |
843 | esac |
| 664 | fi |
844 | fi |
| 665 | |
845 | |
| 666 | # This should come after all of the die statements |
846 | # This should come after all of the die statements |
| 667 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
847 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
| … | |
… | |
| 717 | mysql_mv_patches |
897 | mysql_mv_patches |
| 718 | # And apply |
898 | # And apply |
| 719 | epatch |
899 | epatch |
| 720 | |
900 | |
| 721 | # last -fPIC fixup, per bug #305873 |
901 | # last -fPIC fixup, per bug #305873 |
| 722 | i="${S}"/storage/innodb_plugin/plug.in |
902 | i="${S}"/storage/innodb_plugin/plug.in |
| 723 | [ -f "${i}" ] && sed -i -e '/CFLAGS/s,-prefer-non-pic,,g' "${i}" |
903 | [ -f "${i}" ] && sed -i -e '/CFLAGS/s,-prefer-non-pic,,g' "${i}" |
| 724 | |
904 | |
| 725 | # Additional checks, remove bundled zlib |
905 | # Additional checks, remove bundled zlib (Cluster needs this, for static |
|
|
906 | # memory management in zlib, leave available for Cluster) |
|
|
907 | if [[ "${PN}" != "mysql-cluster" ]] ; then |
| 726 | rm -f "${S}/zlib/"*.[ch] |
908 | rm -f "${S}/zlib/"*.[ch] |
| 727 | sed -i -e "s/zlib\/Makefile dnl/dnl zlib\/Makefile/" "${S}/configure.in" |
909 | sed -i -e "s/zlib\/Makefile dnl/dnl zlib\/Makefile/" "${S}/configure.in" |
|
|
910 | fi |
| 728 | rm -f "scripts/mysqlbug" |
911 | rm -f "scripts/mysqlbug" |
| 729 | |
912 | |
| 730 | # Make charsets install in the right place |
913 | # Make charsets install in the right place |
| 731 | find . -name 'Makefile.am' \ |
914 | find . -name 'Makefile.am' \ |
| 732 | -exec sed --in-place -e 's!$(pkgdatadir)!'${MY_SHAREDSTATEDIR}'!g' {} \; |
915 | -exec sed --in-place -e 's!$(pkgdatadir)!'${MY_SHAREDSTATEDIR}'!g' {} \; |
| … | |
… | |
| 743 | fi |
926 | fi |
| 744 | |
927 | |
| 745 | local rebuilddirlist d |
928 | local rebuilddirlist d |
| 746 | |
929 | |
| 747 | if xtradb_patch_available && use xtradb ; then |
930 | if xtradb_patch_available && use xtradb ; then |
| 748 | einfo "Replacing InnoDB with Percona XtraDB" |
931 | einfo "Adding storage engine: Percona XtraDB (replacing InnoDB)" |
| 749 | pushd "${S}"/storage |
932 | pushd "${S}"/storage >/dev/null |
| 750 | i="innobase" |
933 | i="innobase" |
| 751 | o="${WORKDIR}/storage-${i}.mysql-upstream" |
934 | o="${WORKDIR}/storage-${i}.mysql-upstream" |
| 752 | # Have we been here already? |
935 | # Have we been here already? |
| 753 | [ -d "${o}" ] && rm -f "${i}" |
936 | [ -d "${o}" ] && rm -f "${i}" |
| 754 | # Or maybe we haven't |
937 | # Or maybe we haven't |
| 755 | [ -d "${i}" -a ! -d "${o}" ] && mv "${i}" "${o}" |
938 | [ -d "${i}" -a ! -d "${o}" ] && mv "${i}" "${o}" |
| 756 | cp -ra "${WORKDIR}/${XTRADB_P}" "${i}" |
939 | cp -ral "${WORKDIR}/${XTRADB_P}" "${i}" |
| 757 | popd |
940 | popd >/dev/null |
|
|
941 | fi |
|
|
942 | |
|
|
943 | if pbxt_patch_available && [[ "${PBXT_NEWSTYLE}" == "1" ]] && use pbxt ; then |
|
|
944 | einfo "Adding storage engine: PBXT" |
|
|
945 | pushd "${S}"/storage >/dev/null |
|
|
946 | i='pbxt' |
|
|
947 | [ -d "${i}" ] && rm -rf "${i}" |
|
|
948 | cp -ral "${WORKDIR}/${PBXT_P}" "${i}" |
|
|
949 | popd >/dev/null |
| 758 | fi |
950 | fi |
| 759 | |
951 | |
| 760 | if mysql_version_is_at_least "5.1.12" ; then |
952 | if mysql_version_is_at_least "5.1.12" ; then |
| 761 | rebuilddirlist="." |
953 | rebuilddirlist="." |
| 762 | # This does not seem to be needed presently. robbat2 2010/02/23 |
954 | # This does not seem to be needed presently. robbat2 2010/02/23 |
| … | |
… | |
| 771 | fi |
963 | fi |
| 772 | |
964 | |
| 773 | for d in ${rebuilddirlist} ; do |
965 | for d in ${rebuilddirlist} ; do |
| 774 | einfo "Reconfiguring dir '${d}'" |
966 | einfo "Reconfiguring dir '${d}'" |
| 775 | pushd "${d}" &>/dev/null |
967 | pushd "${d}" &>/dev/null |
| 776 | AT_GNUCONF_UPDATE="yes" eautoreconf |
968 | eautoreconf |
| 777 | popd &>/dev/null |
969 | popd &>/dev/null |
| 778 | done |
970 | done |
| 779 | |
971 | |
| 780 | if mysql_check_version_range "4.1 to 5.0.99.99" \ |
972 | if mysql_check_version_range "4.1 to 5.0.99.99" \ |
| 781 | && use berkdb ; then |
973 | && use berkdb ; then |
| … | |
… | |
| 837 | export CXXFLAGS |
1029 | export CXXFLAGS |
| 838 | |
1030 | |
| 839 | # bug #283926, with GCC4.4, this is required to get correct behavior. |
1031 | # bug #283926, with GCC4.4, this is required to get correct behavior. |
| 840 | append-flags -fno-strict-aliasing |
1032 | append-flags -fno-strict-aliasing |
| 841 | |
1033 | |
|
|
1034 | # bug #335185, #335995, with >= GCC4.3.3 on x86 only, omit-frame-pointer |
|
|
1035 | # causes a mis-compile. |
|
|
1036 | # Upstream bugs: |
|
|
1037 | # http://gcc.gnu.org/bugzilla/show_bug.cgi?id=38562 |
|
|
1038 | # http://bugs.mysql.com/bug.php?id=45205 |
|
|
1039 | use x86 && version_is_at_least "4.3.3" "$(gcc-fullversion)" && \ |
|
|
1040 | append-flags -fno-omit-frame-pointer && \ |
|
|
1041 | filter-flags -fomit-frame-pointer |
|
|
1042 | |
| 842 | econf \ |
1043 | econf \ |
| 843 | --libexecdir="/usr/sbin" \ |
1044 | --libexecdir="/usr/sbin" \ |
| 844 | --sysconfdir="${MY_SYSCONFDIR}" \ |
1045 | --sysconfdir="${MY_SYSCONFDIR}" \ |
| 845 | --localstatedir="${MY_LOCALSTATEDIR}" \ |
1046 | --localstatedir="${MY_LOCALSTATEDIR}" \ |
| 846 | --sharedstatedir="${MY_SHAREDSTATEDIR}" \ |
1047 | --sharedstatedir="${MY_SHAREDSTATEDIR}" \ |
| … | |
… | |
| 849 | --with-low-memory \ |
1050 | --with-low-memory \ |
| 850 | --with-client-ldflags=-lstdc++ \ |
1051 | --with-client-ldflags=-lstdc++ \ |
| 851 | --enable-thread-safe-client \ |
1052 | --enable-thread-safe-client \ |
| 852 | --with-comment="Gentoo Linux ${PF}" \ |
1053 | --with-comment="Gentoo Linux ${PF}" \ |
| 853 | --without-docs \ |
1054 | --without-docs \ |
|
|
1055 | --with-LIBDIR="$(get_libdir)" \ |
| 854 | ${myconf} || die "econf failed" |
1056 | ${myconf} || die "econf failed" |
| 855 | |
1057 | |
| 856 | # TODO: Move this before autoreconf !!! |
1058 | # TODO: Move this before autoreconf !!! |
| 857 | find . -type f -name Makefile -print0 \ |
1059 | find . -type f -name Makefile -print0 \ |
| 858 | | xargs -0 -n100 sed -i \ |
1060 | | xargs -0 -n100 sed -i \ |
| 859 | -e 's|^pkglibdir *= *$(libdir)/mysql|pkglibdir = $(libdir)|;s|^pkgincludedir *= *$(includedir)/mysql|pkgincludedir = $(includedir)|' |
1061 | -e 's|^pkglibdir *= *$(libdir)/mysql|pkglibdir = $(libdir)|;s|^pkgincludedir *= *$(includedir)/mysql|pkgincludedir = $(includedir)|' |
| 860 | |
1062 | |
| 861 | if [[ $EAPI == 2 ]]; then |
1063 | if [[ $EAPI == 2 ]] && [[ "${PBXT_NEWSTYLE}" != "1" ]]; then |
| 862 | pbxt_patch_available && use pbxt && pbxt_src_configure |
1064 | pbxt_patch_available && use pbxt && pbxt_src_configure |
| 863 | fi |
1065 | fi |
| 864 | } |
1066 | } |
| 865 | |
1067 | |
| 866 | # @FUNCTION: mysql_src_compile |
1068 | # @FUNCTION: mysql_src_compile |
| … | |
… | |
| 873 | 0 | 1) mysql_src_configure ;; |
1075 | 0 | 1) mysql_src_configure ;; |
| 874 | esac |
1076 | esac |
| 875 | |
1077 | |
| 876 | emake || die "emake failed" |
1078 | emake || die "emake failed" |
| 877 | |
1079 | |
|
|
1080 | if [[ "${PBXT_NEWSTYLE}" != "1" ]]; then |
| 878 | pbxt_patch_available && use pbxt && pbxt_src_compile |
1081 | pbxt_patch_available && use pbxt && pbxt_src_compile |
|
|
1082 | fi |
| 879 | } |
1083 | } |
| 880 | |
1084 | |
| 881 | # @FUNCTION: mysql_src_install |
1085 | # @FUNCTION: mysql_src_install |
| 882 | # @DESCRIPTION: |
1086 | # @DESCRIPTION: |
| 883 | # Install mysql. |
1087 | # Install mysql. |
| … | |
… | |
| 889 | DESTDIR="${D}" \ |
1093 | DESTDIR="${D}" \ |
| 890 | benchdir_root="${MY_SHAREDSTATEDIR}" \ |
1094 | benchdir_root="${MY_SHAREDSTATEDIR}" \ |
| 891 | testroot="${MY_SHAREDSTATEDIR}" \ |
1095 | testroot="${MY_SHAREDSTATEDIR}" \ |
| 892 | || die "emake install failed" |
1096 | || die "emake install failed" |
| 893 | |
1097 | |
|
|
1098 | if [[ "${PBXT_NEWSTYLE}" != "1" ]]; then |
| 894 | pbxt_patch_available && use pbxt && pbxt_src_install |
1099 | pbxt_patch_available && use pbxt && pbxt_src_install |
|
|
1100 | fi |
| 895 | |
1101 | |
| 896 | # Convenience links |
1102 | # Convenience links |
| 897 | einfo "Making Convenience links for mysqlcheck multi-call binary" |
1103 | einfo "Making Convenience links for mysqlcheck multi-call binary" |
| 898 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlanalyze" |
1104 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlanalyze" |
| 899 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlrepair" |
1105 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlrepair" |
| … | |
… | |
| 923 | if use !test ; then |
1129 | if use !test ; then |
| 924 | rm -rf "${D}"/${MY_SHAREDSTATEDIR}/mysql-test |
1130 | rm -rf "${D}"/${MY_SHAREDSTATEDIR}/mysql-test |
| 925 | fi |
1131 | fi |
| 926 | |
1132 | |
| 927 | # Configuration stuff |
1133 | # Configuration stuff |
| 928 | if mysql_version_is_at_least "5.1" ; then |
1134 | case ${MYSQL_PV_MAJOR} in |
| 929 | mysql_mycnf_version="5.1" |
|
|
| 930 | elif mysql_version_is_at_least "4.1" ; then |
|
|
| 931 | mysql_mycnf_version="4.1" |
|
|
| 932 | else |
|
|
| 933 | mysql_mycnf_version="4.0" |
1135 | 3*|4.0) mysql_mycnf_version="4.0" ;; |
| 934 | fi |
1136 | 4.[1-9]|5.0) mysql_mycnf_version="4.1" ;; |
| 935 | einfo "Building default my.cnf" |
1137 | 5.[1-9]|6*|7*) mysql_mycnf_version="5.1" ;; |
|
|
1138 | esac |
|
|
1139 | einfo "Building default my.cnf (${mysql_mycnf_version})" |
| 936 | insinto "${MY_SYSCONFDIR}" |
1140 | insinto "${MY_SYSCONFDIR}" |
| 937 | doins scripts/mysqlaccess.conf |
1141 | doins scripts/mysqlaccess.conf |
|
|
1142 | mycnf_src="my.cnf-${mysql_mycnf_version}" |
| 938 | sed -e "s!@DATADIR@!${MY_DATADIR}!g" \ |
1143 | sed -e "s!@DATADIR@!${MY_DATADIR}!g" \ |
| 939 | "${FILESDIR}/my.cnf-${mysql_mycnf_version}" \ |
1144 | "${FILESDIR}/${mycnf_src}" \ |
| 940 | > "${TMPDIR}/my.cnf.ok" |
1145 | > "${TMPDIR}/my.cnf.ok" |
| 941 | if mysql_version_is_at_least "4.1" && use latin1 ; then |
1146 | if use latin1 ; then |
| 942 | sed -i \ |
1147 | sed -i \ |
| 943 | -e "/character-set/s|utf8|latin1|g" \ |
1148 | -e "/character-set/s|utf8|latin1|g" \ |
| 944 | "${TMPDIR}/my.cnf.ok" |
1149 | "${TMPDIR}/my.cnf.ok" |
| 945 | fi |
1150 | fi |
| 946 | newins "${TMPDIR}/my.cnf.ok" my.cnf |
1151 | newins "${TMPDIR}/my.cnf.ok" my.cnf |
| … | |
… | |
| 1040 | |
1245 | |
| 1041 | einfo |
1246 | einfo |
| 1042 | elog "You might want to run:" |
1247 | elog "You might want to run:" |
| 1043 | elog "\"emerge --config =${CATEGORY}/${PF}\"" |
1248 | elog "\"emerge --config =${CATEGORY}/${PF}\"" |
| 1044 | elog "if this is a new install." |
1249 | elog "if this is a new install." |
|
|
1250 | einfo |
|
|
1251 | |
|
|
1252 | einfo |
|
|
1253 | elog "If you are upgrading major versions, you should run the" |
|
|
1254 | elog "mysql_upgrade tool." |
| 1045 | einfo |
1255 | einfo |
| 1046 | fi |
1256 | fi |
| 1047 | |
1257 | |
| 1048 | if pbxt_available && use pbxt ; then |
1258 | if pbxt_available && use pbxt ; then |
| 1049 | # TODO: explain it better |
1259 | # TODO: explain it better |
| … | |
… | |
| 1104 | fi |
1314 | fi |
| 1105 | fi |
1315 | fi |
| 1106 | |
1316 | |
| 1107 | local pwd1="a" |
1317 | local pwd1="a" |
| 1108 | local pwd2="b" |
1318 | local pwd2="b" |
| 1109 | local MYSQL_ROOT_PASSWORD='' |
|
|
| 1110 | local maxtry=15 |
1319 | local maxtry=15 |
|
|
1320 | |
|
|
1321 | if [ -z "${MYSQL_ROOT_PASSWORD}" -a -f "${ROOT}/root/.my.cnf" ]; then |
|
|
1322 | MYSQL_ROOT_PASSWORD="$(sed -n -e '/^password=/s,^password=,,gp' "${ROOT}/root/.my.cnf")" |
|
|
1323 | fi |
| 1111 | |
1324 | |
| 1112 | if [[ -d "${ROOT}/${MY_DATADIR}/mysql" ]] ; then |
1325 | if [[ -d "${ROOT}/${MY_DATADIR}/mysql" ]] ; then |
| 1113 | ewarn "You have already a MySQL database in place." |
1326 | ewarn "You have already a MySQL database in place." |
| 1114 | ewarn "(${ROOT}/${MY_DATADIR}/*)" |
1327 | ewarn "(${ROOT}/${MY_DATADIR}/*)" |
| 1115 | ewarn "Please rename or delete it if you wish to replace it." |
1328 | ewarn "Please rename or delete it if you wish to replace it." |
| … | |
… | |
| 1120 | # localhost. Also causes weird failures. |
1333 | # localhost. Also causes weird failures. |
| 1121 | [[ "${HOSTNAME}" == "localhost" ]] && die "Your machine must NOT be named localhost" |
1334 | [[ "${HOSTNAME}" == "localhost" ]] && die "Your machine must NOT be named localhost" |
| 1122 | |
1335 | |
| 1123 | if [ -z "${MYSQL_ROOT_PASSWORD}" ]; then |
1336 | if [ -z "${MYSQL_ROOT_PASSWORD}" ]; then |
| 1124 | |
1337 | |
| 1125 | einfo "Please provide a password for the mysql 'root' user now," |
1338 | einfo "Please provide a password for the mysql 'root' user now, in the" |
| 1126 | einfo "or in the MYSQL_ROOT_PASSWORD env var." |
1339 | einfo "MYSQL_ROOT_PASSWORD env var or through the /root/.my.cnf file." |
| 1127 | ewarn "Avoid [\"'\\_%] characters in the password" |
1340 | ewarn "Avoid [\"'\\_%] characters in the password" |
| 1128 | read -rsp " >" pwd1 ; echo |
1341 | read -rsp " >" pwd1 ; echo |
| 1129 | |
1342 | |
| 1130 | einfo "Retype the password" |
1343 | einfo "Retype the password" |
| 1131 | read -rsp " >" pwd2 ; echo |
1344 | read -rsp " >" pwd2 ; echo |
| … | |
… | |
| 1161 | # Figure out which options we need to disable to do the setup |
1374 | # Figure out which options we need to disable to do the setup |
| 1162 | helpfile="${TMPDIR}/mysqld-help" |
1375 | helpfile="${TMPDIR}/mysqld-help" |
| 1163 | ${ROOT}/usr/sbin/mysqld --verbose --help >"${helpfile}" 2>/dev/null |
1376 | ${ROOT}/usr/sbin/mysqld --verbose --help >"${helpfile}" 2>/dev/null |
| 1164 | for opt in grant-tables host-cache name-resolve networking slave-start bdb \ |
1377 | for opt in grant-tables host-cache name-resolve networking slave-start bdb \ |
| 1165 | federated innodb ssl log-bin relay-log slow-query-log external-locking \ |
1378 | federated innodb ssl log-bin relay-log slow-query-log external-locking \ |
|
|
1379 | ndbcluster \ |
| 1166 | ; do |
1380 | ; do |
| 1167 | optexp="--(skip-)?${opt}" optfull="--skip-${opt}" |
1381 | optexp="--(skip-)?${opt}" optfull="--skip-${opt}" |
| 1168 | egrep -sq -- "${optexp}" "${helpfile}" && options="${options} ${optfull}" |
1382 | egrep -sq -- "${optexp}" "${helpfile}" && options="${options} ${optfull}" |
| 1169 | done |
1383 | done |
| 1170 | # But some options changed names |
1384 | # But some options changed names |
| … | |
… | |
| 1178 | |
1392 | |
| 1179 | if [[ -r "${help_tables}" ]] ; then |
1393 | if [[ -r "${help_tables}" ]] ; then |
| 1180 | cat "${help_tables}" >> "${sqltmp}" |
1394 | cat "${help_tables}" >> "${sqltmp}" |
| 1181 | fi |
1395 | fi |
| 1182 | fi |
1396 | fi |
| 1183 | |
1397 | |
| 1184 | einfo "Creating the mysql database and setting proper" |
1398 | einfo "Creating the mysql database and setting proper" |
| 1185 | einfo "permissions on it ..." |
1399 | einfo "permissions on it ..." |
| 1186 | |
1400 | |
| 1187 | local socket="${ROOT}/var/run/mysqld/mysqld${RANDOM}.sock" |
1401 | local socket="${ROOT}/var/run/mysqld/mysqld${RANDOM}.sock" |
| 1188 | local pidfile="${ROOT}/var/run/mysqld/mysqld${RANDOM}.pid" |
1402 | local pidfile="${ROOT}/var/run/mysqld/mysqld${RANDOM}.pid" |
| … | |
… | |
| 1191 | --user=mysql \ |
1405 | --user=mysql \ |
| 1192 | --basedir=${ROOT}/usr \ |
1406 | --basedir=${ROOT}/usr \ |
| 1193 | --datadir=${ROOT}/${MY_DATADIR} \ |
1407 | --datadir=${ROOT}/${MY_DATADIR} \ |
| 1194 | --max_allowed_packet=8M \ |
1408 | --max_allowed_packet=8M \ |
| 1195 | --net_buffer_length=16K \ |
1409 | --net_buffer_length=16K \ |
|
|
1410 | --default-storage-engine=MyISAM \ |
| 1196 | --socket=${socket} \ |
1411 | --socket=${socket} \ |
| 1197 | --pid-file=${pidfile}" |
1412 | --pid-file=${pidfile}" |
| 1198 | #einfo "About to start mysqld: ${mysqld}" |
1413 | #einfo "About to start mysqld: ${mysqld}" |
| 1199 | ebegin "Starting mysqld" |
1414 | ebegin "Starting mysqld" |
| 1200 | ${mysqld} & |
1415 | ${mysqld} & |