| 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.120 2009/12/09 18:46:53 robbat2 Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/mysql.eclass,v 1.139 2010/03/15 19:27:04 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> |
| … | |
… | |
| 16 | # phase hooks. |
16 | # phase hooks. |
| 17 | |
17 | |
| 18 | WANT_AUTOCONF="latest" |
18 | WANT_AUTOCONF="latest" |
| 19 | WANT_AUTOMAKE="latest" |
19 | WANT_AUTOMAKE="latest" |
| 20 | |
20 | |
| 21 | inherit eutils flag-o-matic gnuconfig autotools mysql_fx versionator |
21 | inherit eutils flag-o-matic gnuconfig autotools mysql_fx versionator toolchain-funcs |
|
|
22 | |
|
|
23 | # Shorten the path because the socket path length must be shorter than 107 chars |
|
|
24 | # and we will run a mysql server during test phase |
|
|
25 | S="${WORKDIR}/mysql" |
|
|
26 | |
|
|
27 | [[ "${MY_EXTRAS_VER}" == "latest" ]] && MY_EXTRAS_VER="20090228-0714Z" |
|
|
28 | if [[ "${MY_EXTRAS_VER}" == "live" ]]; then |
|
|
29 | EGIT_PROJECT=mysql-extras |
|
|
30 | EGIT_REPO_URI="git://git.overlays.gentoo.org/proj/mysql-extras.git" |
|
|
31 | inherit git |
|
|
32 | fi |
| 22 | |
33 | |
| 23 | case "${EAPI:-0}" in |
34 | case "${EAPI:-0}" in |
| 24 | 2) |
35 | 2) |
| 25 | EXPORT_FUNCTIONS pkg_setup \ |
36 | EXPORT_FUNCTIONS pkg_setup \ |
| 26 | src_unpack src_prepare \ |
37 | src_unpack src_prepare \ |
| … | |
… | |
| 40 | ;; |
51 | ;; |
| 41 | *) |
52 | *) |
| 42 | die "Unsupported EAPI: ${EAPI}" ;; |
53 | die "Unsupported EAPI: ${EAPI}" ;; |
| 43 | esac |
54 | esac |
| 44 | |
55 | |
| 45 | # Shorten the path because the socket path length must be shorter than 107 chars |
|
|
| 46 | # and we will run a mysql server during test phase |
|
|
| 47 | S="${WORKDIR}/mysql" |
|
|
| 48 | |
56 | |
| 49 | [[ "${MY_EXTRAS_VER}" == "latest" ]] && MY_EXTRAS_VER="20090228-0714Z" |
57 | # @ECLASS-VARIABLE: MYSQL_PV_MAJOR |
| 50 | if [[ "${MY_EXTRAS_VER}" == "live" ]]; then |
58 | # @DESCRIPTION: |
| 51 | EGIT_PROJECT=mysql-extras |
59 | # Upstream MySQL considers the first two parts of the version number to be the |
| 52 | EGIT_REPO_URI="git://git.overlays.gentoo.org/proj/mysql-extras.git" |
60 | # major version. Upgrades that change major version should always run |
| 53 | inherit git |
61 | # mysql_upgrade. |
| 54 | fi |
62 | MYSQL_PV_MAJOR="$(get_version_component_range 1-2 ${PV})" |
| 55 | |
63 | |
| 56 | # @ECLASS-VARIABLE: MYSQL_VERSION_ID |
64 | # @ECLASS-VARIABLE: MYSQL_VERSION_ID |
| 57 | # @DESCRIPTION: |
65 | # @DESCRIPTION: |
| 58 | # MYSQL_VERSION_ID will be: |
66 | # MYSQL_VERSION_ID will be: |
| 59 | # major * 10e6 + minor * 10e4 + micro * 10e2 + gentoo revision number, all [0..99] |
67 | # major * 10e6 + minor * 10e4 + micro * 10e2 + gentoo revision number, all [0..99] |
| … | |
… | |
| 77 | # @DESCRIPTION: |
85 | # @DESCRIPTION: |
| 78 | # Specifiy if community features are available. Possible values are 1 (yes) |
86 | # Specifiy if community features are available. Possible values are 1 (yes) |
| 79 | # and 0 (no). |
87 | # and 0 (no). |
| 80 | # Community features are available in mysql-community |
88 | # Community features are available in mysql-community |
| 81 | # AND in the re-merged mysql-5.0.82 and newer |
89 | # AND in the re-merged mysql-5.0.82 and newer |
| 82 | if [ "${PN}" == "mysql-community" ]; then |
90 | if [ "${PN}" == "mysql-community" -o "${PN}" == "mariadb" ]; then |
| 83 | MYSQL_COMMUNITY_FEATURES=1 |
91 | MYSQL_COMMUNITY_FEATURES=1 |
| 84 | elif [ "${PV#5.0}" != "${PV}" ] && mysql_version_is_at_least "5.0.82"; then |
92 | elif [ "${PV#5.0}" != "${PV}" ] && mysql_version_is_at_least "5.0.82"; then |
| 85 | MYSQL_COMMUNITY_FEATURES=1 |
93 | MYSQL_COMMUNITY_FEATURES=1 |
| 86 | elif [ "${PV#5.1}" != "${PV}" ] && mysql_version_is_at_least "5.1.28"; then |
94 | elif [ "${PV#5.1}" != "${PV}" ] && mysql_version_is_at_least "5.1.28"; then |
| 87 | MYSQL_COMMUNITY_FEATURES=1 |
95 | MYSQL_COMMUNITY_FEATURES=1 |
| 88 | elif [ "${PV#5.4}" != "${PV}" ]; then |
96 | elif [ "${PV#5.4}" != "${PV}" ] ; then |
|
|
97 | MYSQL_COMMUNITY_FEATURES=1 |
|
|
98 | elif [ "${PV#5.5}" != "${PV}" ] ; then |
|
|
99 | MYSQL_COMMUNITY_FEATURES=1 |
|
|
100 | elif [ "${PV#6.0}" != "${PV}" ] ; then |
| 89 | MYSQL_COMMUNITY_FEATURES=1 |
101 | MYSQL_COMMUNITY_FEATURES=1 |
| 90 | else |
102 | else |
| 91 | MYSQL_COMMUNITY_FEATURES=0 |
103 | MYSQL_COMMUNITY_FEATURES=0 |
| 92 | fi |
104 | fi |
| 93 | |
105 | |
| … | |
… | |
| 108 | >=sys-apps/sed-4 |
120 | >=sys-apps/sed-4 |
| 109 | >=sys-apps/texinfo-4.7-r1 |
121 | >=sys-apps/texinfo-4.7-r1 |
| 110 | >=sys-libs/readline-4.1 |
122 | >=sys-libs/readline-4.1 |
| 111 | >=sys-libs/zlib-1.2.3" |
123 | >=sys-libs/zlib-1.2.3" |
| 112 | |
124 | |
|
|
125 | [[ "${PN}" == "mariadb" ]] \ |
|
|
126 | && DEPEND="${DEPEND} libevent? ( >=dev-libs/libevent-1.4 )" |
|
|
127 | |
| 113 | # Having different flavours at the same time is not a good idea |
128 | # Having different flavours at the same time is not a good idea |
| 114 | for i in "" "-community" ; do |
129 | for i in "mysql" "mysql-community" "mariadb" ; do |
| 115 | [[ "${i}" == ${PN#mysql} ]] || |
130 | [[ "${i}" == ${PN} ]] || |
| 116 | DEPEND="${DEPEND} !dev-db/mysql${i}" |
131 | DEPEND="${DEPEND} !dev-db/${i}" |
| 117 | done |
132 | done |
| 118 | |
133 | |
| 119 | RDEPEND="${DEPEND} |
134 | RDEPEND="${DEPEND} |
| 120 | !minimal? ( dev-db/mysql-init-scripts ) |
135 | !minimal? ( dev-db/mysql-init-scripts ) |
| 121 | selinux? ( sec-policy/selinux-mysql )" |
136 | selinux? ( sec-policy/selinux-mysql )" |
| … | |
… | |
| 130 | |
145 | |
| 131 | # dev-perl/DBD-mysql is needed by some scripts installed by MySQL |
146 | # dev-perl/DBD-mysql is needed by some scripts installed by MySQL |
| 132 | PDEPEND="perl? ( >=dev-perl/DBD-mysql-2.9004 )" |
147 | PDEPEND="perl? ( >=dev-perl/DBD-mysql-2.9004 )" |
| 133 | |
148 | |
| 134 | # For other stuff to bring us in |
149 | # For other stuff to bring us in |
| 135 | PDEPEND="${PDEPEND} =virtual/mysql-$(get_version_component_range 1-2 ${PV})" |
150 | PDEPEND="${PDEPEND} =virtual/mysql-${MYSQL_PV_MAJOR}" |
| 136 | |
151 | |
| 137 | # Work out the default SERVER_URI correctly |
152 | # Work out the default SERVER_URI correctly |
| 138 | if [ -z "${SERVER_URI}" ]; then |
153 | if [ -z "${SERVER_URI}" ]; then |
|
|
154 | [ -z "${MY_PV}" ] && MY_PV="${PV//_/-}" |
|
|
155 | if [ "${PN}" == "mariadb" ]; then |
|
|
156 | MARIA_FULL_PV="$(replace_version_separator 3 '-' ${PV})" |
|
|
157 | SERVER_URI="http://launchpad.net/maria/${MYSQL_PV_MAJOR}/ongoing/+download/mariadb-${MARIA_FULL_PV}.tar.gz" |
| 139 | # The community build is on the mirrors |
158 | # The community build is on the mirrors |
| 140 | if [ "${MYSQL_COMMUNITY_FEATURES}" == "1" ]; then |
159 | elif [ "${MYSQL_COMMUNITY_FEATURES}" == "1" ]; then |
| 141 | SERVER_URI="mirror://mysql/Downloads/MySQL-${PV%.*}/mysql-${PV//_/-}.tar.gz" |
160 | SERVER_URI="mirror://mysql/Downloads/MySQL-${PV%.*}/mysql-${MY_PV}.tar.gz" |
| 142 | # The (old) enterprise source is on the primary site only |
161 | # The (old) enterprise source is on the primary site only |
| 143 | elif [ "${PN}" == "mysql" ]; then |
162 | elif [ "${PN}" == "mysql" ]; then |
| 144 | SERVER_URI="ftp://ftp.mysql.com/pub/mysql/src/mysql-${PV//_/-}.tar.gz" |
163 | SERVER_URI="ftp://ftp.mysql.com/pub/mysql/src/mysql-${MY_PV}.tar.gz" |
| 145 | fi |
164 | fi |
| 146 | fi |
165 | fi |
| 147 | |
166 | |
| 148 | # Define correct SRC_URIs |
167 | # Define correct SRC_URIs |
| 149 | SRC_URI="${SERVER_URI}" |
168 | SRC_URI="${SERVER_URI}" |
| 150 | |
169 | |
| 151 | [[ ${MY_EXTRAS_VER} != live ]] && SRC_URI="${SRC_URI} |
170 | # Gentoo patches to MySQL |
|
|
171 | [[ ${MY_EXTRAS_VER} != live ]] \ |
|
|
172 | && SRC_URI="${SRC_URI} |
| 152 | mirror://gentoo/mysql-extras-${MY_EXTRAS_VER}.tar.bz2 |
173 | mirror://gentoo/mysql-extras-${MY_EXTRAS_VER}.tar.bz2 |
| 153 | http://g3nt8.org/patches/mysql-extras-${MY_EXTRAS_VER}.tar.bz2" |
174 | http://g3nt8.org/patches/mysql-extras-${MY_EXTRAS_VER}.tar.bz2 |
| 154 | PBXT_SRC_URI="mirror://sourceforge/pbxt/pbxt-${PBXT_VERSION}.tar.gz" |
175 | http://dev.gentoo.org/~robbat2/distfiles/mysql-extras-${MY_EXTRAS_VER}.tar.bz2" |
| 155 | mysql_version_is_at_least "5.1.12" \ |
|
|
| 156 | && [[ -n "${PBXT_VERSION}" ]] \ |
|
|
| 157 | && SRC_URI="${SRC_URI} pbxt? ( ${PBXT_SRC_URIPBXT_SRC_URI} )" |
|
|
| 158 | |
|
|
| 159 | # Get the percona tarball if XTRADB_VER and PERCONA_VER are both set |
|
|
| 160 | XTRADB_SRC_URI="http://www.percona.com/${PN}/xtradb/${PERCONA_VER}/source/percona-xtradb-${XTRADB_VER}.tar.gz" |
|
|
| 161 | mysql_version_is_at_least "5.1.26" \ |
|
|
| 162 | && [[ -n ${XTRADB_VER} && -n ${PERCONA_VER} ]] \ |
|
|
| 163 | && SRC_URI="${SRC_URI} xtradb? ( ${XTRADB_SRC_URI} )" |
|
|
| 164 | |
176 | |
| 165 | DESCRIPTION="A fast, multi-threaded, multi-user SQL database server." |
177 | DESCRIPTION="A fast, multi-threaded, multi-user SQL database server." |
| 166 | HOMEPAGE="http://www.mysql.com/" |
178 | HOMEPAGE="http://www.mysql.com/" |
|
|
179 | if [[ "${PN}" == "mariadb" ]]; then |
|
|
180 | HOMEPAGE="http://askmonty.org/" |
|
|
181 | DESCRIPTION="MariaDB is a MySQL fork with 3rd-party patches and additional storage engines merged." |
|
|
182 | fi |
| 167 | LICENSE="GPL-2" |
183 | LICENSE="GPL-2" |
| 168 | SLOT="0" |
184 | SLOT="0" |
| 169 | IUSE="big-tables debug embedded minimal ${IUSE_DEFAULT_ON}perl selinux ssl static" |
185 | IUSE="big-tables debug embedded minimal ${IUSE_DEFAULT_ON}perl selinux ssl static test" |
| 170 | |
186 | |
| 171 | mysql_version_is_at_least "4.1" \ |
187 | mysql_version_is_at_least "4.1" \ |
| 172 | && IUSE="${IUSE} latin1" |
188 | && IUSE="${IUSE} latin1" |
| 173 | |
189 | |
| 174 | mysql_version_is_at_least "4.1.3" \ |
190 | mysql_version_is_at_least "4.1.3" \ |
| … | |
… | |
| 181 | && IUSE="${IUSE} max-idx-128" |
197 | && IUSE="${IUSE} max-idx-128" |
| 182 | |
198 | |
| 183 | mysql_version_is_at_least "5.1" \ |
199 | mysql_version_is_at_least "5.1" \ |
| 184 | || IUSE="${IUSE} berkdb" |
200 | || IUSE="${IUSE} berkdb" |
| 185 | |
201 | |
| 186 | mysql_version_is_at_least "5.1.12" \ |
|
|
| 187 | && IUSE="${IUSE} pbxt" |
|
|
| 188 | |
|
|
| 189 | mysql_version_is_at_least "5.1.26" \ |
|
|
| 190 | && IUSE="${IUSE} xtradb" |
|
|
| 191 | |
|
|
| 192 | [ "${MYSQL_COMMUNITY_FEATURES}" == "1" ] \ |
202 | [ "${MYSQL_COMMUNITY_FEATURES}" == "1" ] \ |
| 193 | && IUSE="${IUSE} ${IUSE_DEFAULT_ON}community profiling" |
203 | && IUSE="${IUSE} ${IUSE_DEFAULT_ON}community profiling" |
|
|
204 | |
|
|
205 | [[ "${PN}" == "mariadb" ]] \ |
|
|
206 | && IUSE="${IUSE} libevent" |
|
|
207 | |
|
|
208 | # MariaDB has integrated PBXT |
|
|
209 | # PBXT_VERSION means that we have a PBXT patch for this PV |
|
|
210 | # PBXT was only introduced after 5.1.12 |
|
|
211 | pbxt_patch_available() { |
|
|
212 | [[ "${PN}" != "mariadb" ]] \ |
|
|
213 | && mysql_version_is_at_least "5.1.12" \ |
|
|
214 | && [[ -n "${PBXT_VERSION}" ]] |
|
|
215 | return $? |
|
|
216 | } |
|
|
217 | |
|
|
218 | pbxt_available() { |
|
|
219 | pbxt_patch_available || [[ "${PN}" == "mariadb" ]] |
|
|
220 | return $? |
|
|
221 | } |
|
|
222 | |
|
|
223 | # Get the percona tarball if XTRADB_VER and PERCONA_VER are both set |
|
|
224 | # MariaDB has integrated XtraDB |
|
|
225 | # XTRADB_VERS means that we have a XTRADB patch for this PV |
|
|
226 | # XTRADB was only introduced after 5.1.26 |
|
|
227 | xtradb_patch_available() { |
|
|
228 | [[ "${PN}" != "mariadb" ]] \ |
|
|
229 | && mysql_version_is_at_least "5.1.26" \ |
|
|
230 | && [[ -n "${XTRADB_VER}" && -n "${PERCONA_VER}" ]] |
|
|
231 | return $? |
|
|
232 | } |
|
|
233 | |
|
|
234 | pbxt_patch_available \ |
|
|
235 | && PBXT_P="pbxt-${PBXT_VERSION}" \ |
|
|
236 | && PBXT_SRC_URI="http://www.primebase.org/download/${PBXT_P}.tar.gz mirror://sourceforge/pbxt/${PBXT_P}.tar.gz" \ |
|
|
237 | && SRC_URI="${SRC_URI} pbxt? ( ${PBXT_SRC_URI} )" \ |
|
|
238 | |
|
|
239 | pbxt_available \ |
|
|
240 | && IUSE="${IUSE} pbxt" |
|
|
241 | |
|
|
242 | xtradb_patch_available \ |
|
|
243 | && XTRADB_P="percona-xtradb-${XTRADB_VER}" \ |
|
|
244 | && XTRADB_SRC_URI_COMMON="${PERCONA_VER}/source/${XTRADB_P}.tar.gz" \ |
|
|
245 | && XTRADB_SRC_URI1="http://www.percona.com/percona-builds/xtradb/${XTRADB_SRC_URI_COMMON}" \ |
|
|
246 | && XTRADB_SRC_URI2="http://www.percona.com/${PN}/xtradb/${XTRADB_SRC_URI_COMMON}" \ |
|
|
247 | && SRC_URI="${SRC_URI} xtradb? ( ${XTRADB_SRC_URI1} ${XTRADB_SRC_URI2} )" \ |
|
|
248 | && IUSE="${IUSE} xtradb" |
| 194 | |
249 | |
| 195 | # |
250 | # |
| 196 | # HELPER FUNCTIONS: |
251 | # HELPER FUNCTIONS: |
| 197 | # |
252 | # |
| 198 | |
253 | |
| 199 | # @FUNCTION: mysql_disable_test |
254 | # @FUNCTION: mysql_disable_test |
| 200 | # @DESCRIPTION: |
255 | # @DESCRIPTION: |
| 201 | # Helper function to disable specific tests. |
256 | # Helper function to disable specific tests. |
| 202 | mysql_disable_test() { |
257 | mysql_disable_test() { |
|
|
258 | local rawtestname testname testsuite reason mysql_disable_file |
| 203 | local testname="${1}" ; shift |
259 | rawtestname="${1}" ; shift |
| 204 | local reason="${@}" |
260 | reason="${@}" |
|
|
261 | ewarn "test '${rawtestname}' disabled: '${reason}'" |
|
|
262 | |
|
|
263 | testsuite="${rawtestname/.*}" |
|
|
264 | testname="${rawtestname/*.}" |
| 205 | local mysql_disable_file="${S}/mysql-test/t/disabled.def" |
265 | mysql_disable_file="${S}/mysql-test/t/disabled.def" |
|
|
266 | #einfo "rawtestname=${rawtestname} testname=${testname} testsuite=${testsuite}" |
| 206 | echo ${testname} : ${reason} >> "${mysql_disable_file}" |
267 | echo ${testname} : ${reason} >> "${mysql_disable_file}" |
| 207 | ewarn "test '${testname}' disabled: '${reason}'" |
268 | |
|
|
269 | # ${S}/mysql-tests/t/disabled.def |
|
|
270 | # |
|
|
271 | # ${S}/mysql-tests/suite/federated/disabled.def |
|
|
272 | # |
|
|
273 | # ${S}/mysql-tests/suite/jp/t/disabled.def |
|
|
274 | # ${S}/mysql-tests/suite/ndb/t/disabled.def |
|
|
275 | # ${S}/mysql-tests/suite/rpl/t/disabled.def |
|
|
276 | # ${S}/mysql-tests/suite/parts/t/disabled.def |
|
|
277 | # ${S}/mysql-tests/suite/rpl_ndb/t/disabled.def |
|
|
278 | # ${S}/mysql-tests/suite/ndb_team/t/disabled.def |
|
|
279 | # ${S}/mysql-tests/suite/binlog/t/disabled.def |
|
|
280 | # ${S}/mysql-tests/suite/innodb/t/disabled.def |
|
|
281 | if [ -n "${testsuite}" ]; then |
|
|
282 | for mysql_disable_file in \ |
|
|
283 | ${S}/mysql-test/suite/${testsuite}/disabled.def \ |
|
|
284 | ${S}/mysql-test/suite/${testsuite}/t/disabled.def \ |
|
|
285 | FAILED ; do |
|
|
286 | [ -f "${mysql_disable_file}" ] && break |
|
|
287 | done |
|
|
288 | if [ "${mysql_disabled_file}" != "FAILED" ]; then |
|
|
289 | echo "${testname} : ${reason}" >> "${mysql_disable_file}" |
|
|
290 | else |
|
|
291 | ewarn "Could not find testsuite disabled.def location for ${rawtestname}" |
|
|
292 | fi |
|
|
293 | fi |
| 208 | } |
294 | } |
| 209 | |
295 | |
| 210 | # @FUNCTION: mysql_init_vars |
296 | # @FUNCTION: mysql_init_vars |
| 211 | # @DESCRIPTION: |
297 | # @DESCRIPTION: |
| 212 | # void mysql_init_vars() |
298 | # void mysql_init_vars() |
| … | |
… | |
| 355 | myconf="${myconf} $(use_with perl bench)" |
441 | myconf="${myconf} $(use_with perl bench)" |
| 356 | myconf="${myconf} --enable-assembler" |
442 | myconf="${myconf} --enable-assembler" |
| 357 | myconf="${myconf} --with-extra-tools" |
443 | myconf="${myconf} --with-extra-tools" |
| 358 | myconf="${myconf} --with-innodb" |
444 | myconf="${myconf} --with-innodb" |
| 359 | myconf="${myconf} --without-readline" |
445 | myconf="${myconf} --without-readline" |
|
|
446 | myconf="${myconf} $(use_with ssl openssl)" |
| 360 | mysql_version_is_at_least "5.0" || myconf="${myconf} $(use_with raid)" |
447 | mysql_version_is_at_least "5.0" || myconf="${myconf} $(use_with raid)" |
| 361 | |
448 | |
| 362 | # --with-vio is not needed anymore, it's on by default and |
449 | # --with-vio is not needed anymore, it's on by default and |
| 363 | # has been removed from configure |
450 | # has been removed from configure |
|
|
451 | # Apply to 4.x and 5.0.[0-3] |
| 364 | if use ssl ; then |
452 | if use ssl ; then |
| 365 | mysql_version_is_at_least "5.0.4" || myconf="${myconf} --with-vio" |
453 | mysql_version_is_at_least "5.0.4" || myconf="${myconf} --with-vio" |
| 366 | fi |
|
|
| 367 | |
|
|
| 368 | if mysql_version_is_at_least "5.1.11" ; then |
|
|
| 369 | myconf="${myconf} $(use_with ssl)" |
|
|
| 370 | else |
|
|
| 371 | myconf="${myconf} $(use_with ssl openssl)" |
|
|
| 372 | fi |
454 | fi |
| 373 | |
455 | |
| 374 | if mysql_version_is_at_least "5.0.60" ; then |
456 | if mysql_version_is_at_least "5.0.60" ; then |
| 375 | if use berkdb ; then |
457 | if use berkdb ; then |
| 376 | elog "Berkeley DB support was disabled due to build failures" |
458 | elog "Berkeley DB support was disabled due to build failures" |
| … | |
… | |
| 433 | |
515 | |
| 434 | configure_51() { |
516 | configure_51() { |
| 435 | # TODO: !!!! readd --without-readline |
517 | # TODO: !!!! readd --without-readline |
| 436 | # the failure depend upon config/ac-macros/readline.m4 checking into |
518 | # the failure depend upon config/ac-macros/readline.m4 checking into |
| 437 | # readline.h instead of history.h |
519 | # readline.h instead of history.h |
| 438 | myconf="${myconf} $(use_with ssl)" |
520 | myconf="${myconf} $(use_with ssl ssl /usr)" |
| 439 | myconf="${myconf} --enable-assembler" |
521 | myconf="${myconf} --enable-assembler" |
| 440 | myconf="${myconf} --with-geometry" |
522 | myconf="${myconf} --with-geometry" |
| 441 | myconf="${myconf} --with-readline" |
523 | myconf="${myconf} --with-readline" |
| 442 | myconf="${myconf} --with-row-based-replication" |
|
|
| 443 | myconf="${myconf} --with-zlib=/usr/$(get_libdir)" |
524 | myconf="${myconf} --with-zlib-dir=/usr/" |
| 444 | myconf="${myconf} --without-pstack" |
525 | myconf="${myconf} --without-pstack" |
| 445 | use max-idx-128 && myconf="${myconf} --with-max-indexes=128" |
526 | use max-idx-128 && myconf="${myconf} --with-max-indexes=128" |
|
|
527 | if [ "${MYSQL_COMMUNITY_FEATURES}" == "1" ]; then |
|
|
528 | myconf="${myconf} $(use_enable community community-features)" |
|
|
529 | if use community; then |
|
|
530 | myconf="${myconf} $(use_enable profiling)" |
|
|
531 | else |
|
|
532 | myconf="${myconf} --disable-profiling" |
|
|
533 | fi |
|
|
534 | fi |
| 446 | |
535 | |
| 447 | # 5.1 introduces a new way to manage storage engines (plugins) |
536 | # 5.1 introduces a new way to manage storage engines (plugins) |
| 448 | # like configuration=none |
537 | # like configuration=none |
|
|
538 | # This base set are required, and will always be statically built. |
| 449 | local plugins="csv,myisam,myisammrg,heap" |
539 | local plugins="csv,myisam,myisammrg,heap" |
| 450 | if use extraengine ; then |
540 | if use extraengine ; then |
| 451 | # like configuration=max-no-ndb, archive and example removed in 5.1.11 |
541 | # like configuration=max-no-ndb, archive and example removed in 5.1.11 |
|
|
542 | # not added yet: ibmdb2i |
|
|
543 | # Not supporting as examples: example,daemon_example,ftexample |
| 452 | plugins="${plugins},archive,blackhole,example,federated,partition" |
544 | plugins="${plugins},archive,blackhole,federated,partition" |
| 453 | |
545 | |
|
|
546 | if [[ "${PN}" != "mariadb" ]] ; then |
| 454 | elog "Before using the Federated storage engine, please be sure to read" |
547 | elog "Before using the Federated storage engine, please be sure to read" |
| 455 | elog "http://dev.mysql.com/doc/refman/5.1/en/federated-limitations.html" |
548 | elog "http://dev.mysql.com/doc/refman/5.1/en/federated-limitations.html" |
|
|
549 | else |
|
|
550 | elog "MariaDB includes the FederatedX engine. Be sure to read" |
|
|
551 | elog "http://askmonty.org/wiki/index.php/Manual:FederatedX_storage_engine" |
| 456 | fi |
552 | fi |
|
|
553 | fi |
| 457 | |
554 | |
| 458 | # Upstream specifically requests that InnoDB always be built. |
555 | # Upstream specifically requests that InnoDB always be built: |
| 459 | plugins="${plugins},innobase" |
556 | # - innobase, innodb_plugin |
|
|
557 | # Build falcon if available for 6.x series. |
|
|
558 | for i in innobase innodb_plugin falcon ; do |
|
|
559 | [ -e "${S}"/storage/${i} ] && plugins="${plugins},${i}" |
|
|
560 | done |
| 460 | |
561 | |
| 461 | # like configuration=max-no-ndb |
562 | # like configuration=max-no-ndb |
| 462 | if use cluster ; then |
563 | if use cluster ; then |
| 463 | plugins="${plugins},ndbcluster" |
564 | plugins="${plugins},ndbcluster" |
| 464 | myconf="${myconf} --with-ndb-binlog" |
565 | myconf="${myconf} --with-ndb-binlog" |
| 465 | fi |
566 | fi |
| 466 | |
567 | |
| 467 | if mysql_version_is_at_least "5.2" ; then |
568 | if [[ "${PN}" == "mariadb" ]] ; then |
|
|
569 | # In MariaDB, InnoDB is packaged in the xtradb directory, so it's not |
|
|
570 | # caught above. |
|
|
571 | plugins="${plugins},maria,innobase" |
|
|
572 | if use pbxt ; then |
| 468 | plugins="${plugins},falcon" |
573 | plugins="${plugins},pbxt" |
|
|
574 | else |
|
|
575 | myconf="${myconf} --without-plugin-pbxt" |
|
|
576 | fi |
|
|
577 | myconf="${myconf} $(use_with libevent)" |
|
|
578 | # This is not optional, without it several upstream testcases fail. |
|
|
579 | # Also strongly recommended by upstream. |
|
|
580 | myconf="${myconf} --with-maria-tmp-tables" |
| 469 | fi |
581 | fi |
| 470 | |
582 | |
| 471 | myconf="${myconf} --with-plugins=${plugins}" |
583 | myconf="${myconf} --with-plugins=${plugins}" |
| 472 | } |
584 | } |
| 473 | |
585 | |
| … | |
… | |
| 478 | |
590 | |
| 479 | einfo "Reconfiguring dir '${PWD}'" |
591 | einfo "Reconfiguring dir '${PWD}'" |
| 480 | AT_GNUCONF_UPDATE="yes" eautoreconf |
592 | AT_GNUCONF_UPDATE="yes" eautoreconf |
| 481 | |
593 | |
| 482 | local myconf="" |
594 | local myconf="" |
| 483 | myconf="${myconf} --with-mysql=${S} --libdir=${D}/${MY_LIBDIR}" |
595 | myconf="${myconf} --with-mysql=${S} --libdir=/usr/$(get_libdir)" |
| 484 | use debug && myconf="${myconf} --with-debug=full" |
596 | use debug && myconf="${myconf} --with-debug=full" |
| 485 | # TODO: is it safe/needed to use econf here ? |
|
|
| 486 | ./configure ${myconf} || die "Problem configuring PBXT storage engine" |
597 | econf ${myconf} || die "Problem configuring PBXT storage engine" |
| 487 | } |
598 | } |
| 488 | |
599 | |
| 489 | pbxt_src_compile() { |
600 | pbxt_src_compile() { |
| 490 | # Be backwards compatible for now |
601 | # Be backwards compatible for now |
| 491 | if [[ $EAPI != 2 ]]; then |
602 | if [[ $EAPI != 2 ]]; then |
| … | |
… | |
| 498 | # TODO: modify test suite for PBXT |
609 | # TODO: modify test suite for PBXT |
| 499 | } |
610 | } |
| 500 | |
611 | |
| 501 | pbxt_src_install() { |
612 | pbxt_src_install() { |
| 502 | pushd "${WORKDIR}/pbxt-${PBXT_VERSION}" &>/dev/null |
613 | pushd "${WORKDIR}/pbxt-${PBXT_VERSION}" &>/dev/null |
| 503 | make install || die "Failed to install PBXT" |
614 | emake install DESTDIR="${D}" || die "Failed to install PBXT" |
| 504 | popd |
615 | popd |
| 505 | } |
616 | } |
| 506 | |
617 | |
| 507 | # |
618 | # |
| 508 | # EBUILD FUNCTIONS |
619 | # EBUILD FUNCTIONS |
| … | |
… | |
| 542 | && use minimal ; then |
653 | && use minimal ; then |
| 543 | eerror "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
654 | eerror "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
| 544 | die "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
655 | die "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
| 545 | fi |
656 | fi |
| 546 | |
657 | |
|
|
658 | # Bug #290570 fun. Upstream made us need a fairly new GCC4. |
|
|
659 | if mysql_version_is_at_least "5.0.83" ; then |
|
|
660 | GCC_VER=$(gcc-version) |
|
|
661 | case ${GCC_VER} in |
|
|
662 | 2*|3*|4.0|4.1|4.2) die "Active GCC too old! Must have at least GCC4.3" ;; |
|
|
663 | esac |
|
|
664 | fi |
|
|
665 | |
| 547 | # This should come after all of the die statements |
666 | # This should come after all of the die statements |
| 548 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
667 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
| 549 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
668 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
| 550 | |
669 | |
| 551 | mysql_check_version_range "4.0 to 5.0.99.99" \ |
670 | mysql_check_version_range "4.0 to 5.0.99.99" \ |
| 552 | && use berkdb \ |
671 | && use berkdb \ |
| 553 | && elog "Berkeley DB support is deprecated and will be removed in future versions!" |
672 | && elog "Berkeley DB support is deprecated and will be removed in future versions!" |
|
|
673 | |
|
|
674 | if [ "${PN}" != "mysql-cluster" ] && use cluster; then |
|
|
675 | ewarn "Upstream has noted that the NDB cluster support in the 5.0 and" |
|
|
676 | ewarn "5.1 series should NOT be put into production. In the near" |
|
|
677 | ewarn "future, it will be disabled from building." |
|
|
678 | ewarn "" |
|
|
679 | ewarn "If you need NDB support, you should instead move to the new" |
|
|
680 | ewarn "mysql-cluster package that represents that upstream NDB" |
|
|
681 | ewarn "development." |
|
|
682 | fi |
| 554 | } |
683 | } |
| 555 | |
684 | |
| 556 | # @FUNCTION: mysql_src_unpack |
685 | # @FUNCTION: mysql_src_unpack |
| 557 | # @DESCRIPTION: |
686 | # @DESCRIPTION: |
| 558 | # Unpack the source code and call mysql_src_prepare for EAPI < 2. |
687 | # Unpack the source code and call mysql_src_prepare for EAPI < 2. |
| … | |
… | |
| 587 | # Now link in right patches |
716 | # Now link in right patches |
| 588 | mysql_mv_patches |
717 | mysql_mv_patches |
| 589 | # And apply |
718 | # And apply |
| 590 | epatch |
719 | epatch |
| 591 | |
720 | |
|
|
721 | # last -fPIC fixup, per bug #305873 |
|
|
722 | i="${S}"/storage/innodb_plugin/plug.in |
|
|
723 | [ -f "${i}" ] && sed -i -e '/CFLAGS/s,-prefer-non-pic,,g' "${i}" |
|
|
724 | |
| 592 | # Additional checks, remove bundled zlib |
725 | # Additional checks, remove bundled zlib |
| 593 | rm -f "${S}/zlib/"*.[ch] |
726 | rm -f "${S}/zlib/"*.[ch] |
| 594 | sed -i -e "s/zlib\/Makefile dnl/dnl zlib\/Makefile/" "${S}/configure.in" |
727 | sed -i -e "s/zlib\/Makefile dnl/dnl zlib\/Makefile/" "${S}/configure.in" |
| 595 | rm -f "scripts/mysqlbug" |
728 | rm -f "scripts/mysqlbug" |
| 596 | |
729 | |
| … | |
… | |
| 598 | find . -name 'Makefile.am' \ |
731 | find . -name 'Makefile.am' \ |
| 599 | -exec sed --in-place -e 's!$(pkgdatadir)!'${MY_SHAREDSTATEDIR}'!g' {} \; |
732 | -exec sed --in-place -e 's!$(pkgdatadir)!'${MY_SHAREDSTATEDIR}'!g' {} \; |
| 600 | |
733 | |
| 601 | if mysql_version_is_at_least "4.1" ; then |
734 | if mysql_version_is_at_least "4.1" ; then |
| 602 | # Remove what needs to be recreated, so we're sure it's actually done |
735 | # Remove what needs to be recreated, so we're sure it's actually done |
|
|
736 | einfo "Cleaning up old buildscript files" |
| 603 | find . -name Makefile \ |
737 | find . -name Makefile \ |
| 604 | -o -name Makefile.in \ |
738 | -o -name Makefile.in \ |
| 605 | -o -name configure \ |
739 | -o -name configure \ |
| 606 | -exec rm -f {} \; |
740 | -exec rm -f {} \; |
| 607 | rm -f "ltmain.sh" |
741 | rm -f "ltmain.sh" |
| 608 | rm -f "scripts/mysqlbug" |
742 | rm -f "scripts/mysqlbug" |
| 609 | fi |
743 | fi |
| 610 | |
744 | |
| 611 | local rebuilddirlist d |
745 | local rebuilddirlist d |
| 612 | |
746 | |
|
|
747 | if xtradb_patch_available && use xtradb ; then |
|
|
748 | einfo "Replacing InnoDB with Percona XtraDB" |
|
|
749 | pushd "${S}"/storage |
|
|
750 | i="innobase" |
|
|
751 | o="${WORKDIR}/storage-${i}.mysql-upstream" |
|
|
752 | # Have we been here already? |
|
|
753 | [ -d "${o}" ] && rm -f "${i}" |
|
|
754 | # Or maybe we haven't |
|
|
755 | [ -d "${i}" -a ! -d "${o}" ] && mv "${i}" "${o}" |
|
|
756 | cp -ra "${WORKDIR}/${XTRADB_P}" "${i}" |
|
|
757 | popd |
|
|
758 | fi |
|
|
759 | |
| 613 | if mysql_version_is_at_least "5.1.12" ; then |
760 | if mysql_version_is_at_least "5.1.12" ; then |
| 614 | rebuilddirlist="." |
761 | rebuilddirlist="." |
|
|
762 | # This does not seem to be needed presently. robbat2 2010/02/23 |
|
|
763 | #einfo "Updating innobase cmake" |
| 615 | # TODO: check this with a cmake expert |
764 | ## TODO: check this with a cmake expert |
| 616 | cmake \ |
765 | #cmake \ |
| 617 | -DCMAKE_C_COMPILER=$(type -P $(tc-getCC)) \ |
766 | # -DCMAKE_C_COMPILER=$(type -P $(tc-getCC)) \ |
| 618 | -DCMAKE_CXX_COMPILER=$(type -P $(tc-getCXX)) \ |
767 | # -DCMAKE_CXX_COMPILER=$(type -P $(tc-getCXX)) \ |
| 619 | "storage/innobase" |
768 | # "storage/innobase" |
| 620 | else |
769 | else |
| 621 | rebuilddirlist=". innobase" |
770 | rebuilddirlist=". innobase" |
| 622 | fi |
771 | fi |
| 623 | |
772 | |
| 624 | for d in ${rebuilddirlist} ; do |
773 | for d in ${rebuilddirlist} ; do |
| … | |
… | |
| 628 | popd &>/dev/null |
777 | popd &>/dev/null |
| 629 | done |
778 | done |
| 630 | |
779 | |
| 631 | if mysql_check_version_range "4.1 to 5.0.99.99" \ |
780 | if mysql_check_version_range "4.1 to 5.0.99.99" \ |
| 632 | && use berkdb ; then |
781 | && use berkdb ; then |
|
|
782 | einfo "Fixing up berkdb buildsystem" |
| 633 | [[ -w "bdb/dist/ltmain.sh" ]] && cp -f "ltmain.sh" "bdb/dist/ltmain.sh" |
783 | [[ -w "bdb/dist/ltmain.sh" ]] && cp -f "ltmain.sh" "bdb/dist/ltmain.sh" |
| 634 | cp -f "/usr/share/aclocal/libtool.m4" "bdb/dist/aclocal/libtool.ac" \ |
784 | cp -f "/usr/share/aclocal/libtool.m4" "bdb/dist/aclocal/libtool.ac" \ |
| 635 | || die "Could not copy libtool.m4 to bdb/dist/" |
785 | || die "Could not copy libtool.m4 to bdb/dist/" |
| 636 | #These files exist only with libtool-2*, and need to be included. |
786 | #These files exist only with libtool-2*, and need to be included. |
| 637 | if [ -f '/usr/share/aclocal/ltsugar.m4' ]; then |
787 | if [ -f '/usr/share/aclocal/ltsugar.m4' ]; then |
| … | |
… | |
| 707 | find . -type f -name Makefile -print0 \ |
857 | find . -type f -name Makefile -print0 \ |
| 708 | | xargs -0 -n100 sed -i \ |
858 | | xargs -0 -n100 sed -i \ |
| 709 | -e 's|^pkglibdir *= *$(libdir)/mysql|pkglibdir = $(libdir)|;s|^pkgincludedir *= *$(includedir)/mysql|pkgincludedir = $(includedir)|' |
859 | -e 's|^pkglibdir *= *$(libdir)/mysql|pkglibdir = $(libdir)|;s|^pkgincludedir *= *$(includedir)/mysql|pkgincludedir = $(includedir)|' |
| 710 | |
860 | |
| 711 | if [[ $EAPI == 2 ]]; then |
861 | if [[ $EAPI == 2 ]]; then |
| 712 | mysql_version_is_at_least "5.1.12" && use pbxt && pbxt_src_configure |
862 | pbxt_patch_available && use pbxt && pbxt_src_configure |
| 713 | fi |
863 | fi |
| 714 | } |
864 | } |
| 715 | |
865 | |
| 716 | # @FUNCTION: mysql_src_compile |
866 | # @FUNCTION: mysql_src_compile |
| 717 | # @DESCRIPTION: |
867 | # @DESCRIPTION: |
| 718 | # Compile the mysql code. |
868 | # Compile the mysql code. |
| 719 | mysql_src_compile() { |
869 | mysql_src_compile() { |
| 720 | # Be backwards compatible for now |
870 | # Be backwards compatible for now |
| 721 | case ${EAPI:-0} in |
871 | case ${EAPI:-0} in |
| 722 | 2) : ;; |
872 | 2) : ;; |
| 723 | 0 | 1) mysql_src_configure ;; |
873 | 0 | 1) mysql_src_configure ;; |
| 724 | esac |
874 | esac |
| 725 | |
875 | |
| 726 | emake || die "emake failed" |
876 | emake || die "emake failed" |
| 727 | |
877 | |
| 728 | mysql_version_is_at_least "5.1.12" && use pbxt && pbxt_src_compile |
878 | pbxt_patch_available && use pbxt && pbxt_src_compile |
| 729 | } |
879 | } |
| 730 | |
880 | |
| 731 | # @FUNCTION: mysql_src_install |
881 | # @FUNCTION: mysql_src_install |
| 732 | # @DESCRIPTION: |
882 | # @DESCRIPTION: |
| 733 | # Install mysql. |
883 | # Install mysql. |
| 734 | mysql_src_install() { |
884 | mysql_src_install() { |
| 735 | # Make sure the vars are correctly initialized |
885 | # Make sure the vars are correctly initialized |
| 736 | mysql_init_vars |
886 | mysql_init_vars |
| 737 | |
887 | |
| 738 | emake install DESTDIR="${D}" benchdir_root="${MY_SHAREDSTATEDIR}" || die "emake install failed" |
888 | emake install \ |
|
|
889 | DESTDIR="${D}" \ |
|
|
890 | benchdir_root="${MY_SHAREDSTATEDIR}" \ |
|
|
891 | testroot="${MY_SHAREDSTATEDIR}" \ |
|
|
892 | || die "emake install failed" |
| 739 | |
893 | |
| 740 | mysql_version_is_at_least "5.1.12" && use pbxt && pbxt_src_install |
894 | pbxt_patch_available && use pbxt && pbxt_src_install |
| 741 | |
895 | |
| 742 | # Convenience links |
896 | # Convenience links |
| 743 | einfo "Making Convenience links for mysqlcheck multi-call binary" |
897 | einfo "Making Convenience links for mysqlcheck multi-call binary" |
| 744 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlanalyze" |
898 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlanalyze" |
| 745 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlrepair" |
899 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlrepair" |
| … | |
… | |
| 749 | einfo "Removing duplicate /usr/share/mysql files" |
903 | einfo "Removing duplicate /usr/share/mysql files" |
| 750 | rm -Rf "${D}/usr/share/info" |
904 | rm -Rf "${D}/usr/share/info" |
| 751 | for removeme in "mysql-log-rotate" mysql.server* \ |
905 | for removeme in "mysql-log-rotate" mysql.server* \ |
| 752 | binary-configure* my-*.cnf mi_test_all* |
906 | binary-configure* my-*.cnf mi_test_all* |
| 753 | do |
907 | do |
| 754 | rm -f "${D}"/usr/share/mysql/${removeme} |
908 | rm -f "${D}"/${MY_SHAREDSTATEDIR}/${removeme} |
| 755 | done |
909 | done |
| 756 | |
910 | |
| 757 | # Clean up stuff for a minimal build |
911 | # Clean up stuff for a minimal build |
| 758 | if use minimal ; then |
912 | if use minimal ; then |
| 759 | einfo "Remove all extra content for minimal build" |
913 | einfo "Remove all extra content for minimal build" |
| 760 | rm -Rf "${D}${MY_SHAREDSTATEDIR}"/{mysql-test,sql-bench} |
914 | rm -Rf "${D}${MY_SHAREDSTATEDIR}"/{mysql-test,sql-bench} |
| 761 | rm -f "${D}"/usr/bin/{mysql{_install_db,manager*,_secure_installation,_fix_privilege_tables,hotcopy,_convert_table_format,d_multi,_fix_extensions,_zap,_explain_log,_tableinfo,d_safe,_install,_waitpid,binlog,test},myisam*,isam*,pack_isam} |
915 | rm -f "${D}"/usr/bin/{mysql{_install_db,manager*,_secure_installation,_fix_privilege_tables,hotcopy,_convert_table_format,d_multi,_fix_extensions,_zap,_explain_log,_tableinfo,d_safe,_install,_waitpid,binlog,test},myisam*,isam*,pack_isam} |
| 762 | rm -f "${D}/usr/sbin/mysqld" |
916 | rm -f "${D}/usr/sbin/mysqld" |
| 763 | rm -f "${D}${MY_LIBDIR}"/lib{heap,merge,nisam,my{sys,strings,sqld,isammrg,isam},vio,dbug}.a |
917 | rm -f "${D}${MY_LIBDIR}"/lib{heap,merge,nisam,my{sys,strings,sqld,isammrg,isam},vio,dbug}.a |
|
|
918 | fi |
|
|
919 | |
|
|
920 | # Unless they explicitly specific USE=test, then do not install the |
|
|
921 | # testsuite. It DOES have a use to be installed, esp. when you want to do a |
|
|
922 | # validation of your database configuration after tuning it. |
|
|
923 | if use !test ; then |
|
|
924 | rm -rf "${D}"/${MY_SHAREDSTATEDIR}/mysql-test |
| 764 | fi |
925 | fi |
| 765 | |
926 | |
| 766 | # Configuration stuff |
927 | # Configuration stuff |
| 767 | if mysql_version_is_at_least "4.1" ; then |
928 | if mysql_version_is_at_least "4.1" ; then |
| 768 | mysql_mycnf_version="4.1" |
929 | mysql_mycnf_version="4.1" |
| … | |
… | |
| 799 | done |
960 | done |
| 800 | fi |
961 | fi |
| 801 | |
962 | |
| 802 | # Docs |
963 | # Docs |
| 803 | einfo "Installing docs" |
964 | einfo "Installing docs" |
| 804 | dodoc README COPYING ChangeLog EXCEPTIONS-CLIENT INSTALL-SOURCE |
965 | dodoc README ChangeLog EXCEPTIONS-CLIENT INSTALL-SOURCE |
| 805 | doinfo "${S}"/Docs/mysql.info |
966 | doinfo "${S}"/Docs/mysql.info |
| 806 | |
967 | |
| 807 | # Minimal builds don't have the MySQL server |
968 | # Minimal builds don't have the MySQL server |
| 808 | if ! use minimal ; then |
969 | if ! use minimal ; then |
| 809 | einfo "Including support files and sample configurations" |
970 | einfo "Including support files and sample configurations" |
| … | |
… | |
| 811 | for script in \ |
972 | for script in \ |
| 812 | "${S}"/support-files/my-*.cnf \ |
973 | "${S}"/support-files/my-*.cnf \ |
| 813 | "${S}"/support-files/magic \ |
974 | "${S}"/support-files/magic \ |
| 814 | "${S}"/support-files/ndb-config-2-node.ini |
975 | "${S}"/support-files/ndb-config-2-node.ini |
| 815 | do |
976 | do |
| 816 | dodoc "${script}" |
977 | [[ -f "$script" ]] && dodoc "${script}" |
| 817 | done |
978 | done |
| 818 | |
979 | |
| 819 | docinto "scripts" |
980 | docinto "scripts" |
| 820 | for script in "${S}"/scripts/mysql* ; do |
981 | for script in "${S}"/scripts/mysql* ; do |
| 821 | [[ "${script%.sh}" == "${script}" ]] && dodoc "${script}" |
982 | [[ -f "$script" ]] && [[ "${script%.sh}" == "${script}" ]] && dodoc "${script}" |
| 822 | done |
983 | done |
| 823 | |
984 | |
| 824 | fi |
985 | fi |
| 825 | |
986 | |
| 826 | mysql_lib_symlinks "${D}" |
987 | mysql_lib_symlinks "${D}" |
| … | |
… | |
| 860 | for script in \ |
1021 | for script in \ |
| 861 | support-files/my-*.cnf \ |
1022 | support-files/my-*.cnf \ |
| 862 | support-files/magic \ |
1023 | support-files/magic \ |
| 863 | support-files/ndb-config-2-node.ini |
1024 | support-files/ndb-config-2-node.ini |
| 864 | do |
1025 | do |
|
|
1026 | [[ -f "${script}" ]] \ |
| 865 | dodoc "${script}" |
1027 | && dodoc "${script}" |
| 866 | done |
1028 | done |
| 867 | |
1029 | |
| 868 | docinto "scripts" |
1030 | docinto "scripts" |
| 869 | for script in scripts/mysql* ; do |
1031 | for script in scripts/mysql* ; do |
|
|
1032 | [[ -f "${script}" ]] \ |
| 870 | [[ "${script%.sh}" == "${script}" ]] && dodoc "${script}" |
1033 | && [[ "${script%.sh}" == "${script}" ]] \ |
|
|
1034 | && dodoc "${script}" |
| 871 | done |
1035 | done |
| 872 | |
1036 | |
| 873 | einfo |
1037 | einfo |
| 874 | elog "You might want to run:" |
1038 | elog "You might want to run:" |
| 875 | elog "\"emerge --config =${CATEGORY}/${PF}\"" |
1039 | elog "\"emerge --config =${CATEGORY}/${PF}\"" |
| 876 | elog "if this is a new install." |
1040 | elog "if this is a new install." |
| 877 | einfo |
1041 | einfo |
| 878 | fi |
1042 | fi |
| 879 | |
1043 | |
| 880 | if mysql_version_is_at_least "5.1.12" && use pbxt ; then |
1044 | if pbxt_available && use pbxt ; then |
| 881 | # TODO: explain it better |
1045 | # TODO: explain it better |
| 882 | elog " mysql> INSTALL PLUGIN pbxt SONAME 'libpbxt.so';" |
1046 | elog " mysql> INSTALL PLUGIN pbxt SONAME 'libpbxt.so';" |
| 883 | elog " mysql> CREATE TABLE t1 (c1 int, c2 text) ENGINE=pbxt;" |
1047 | elog " mysql> CREATE TABLE t1 (c1 int, c2 text) ENGINE=pbxt;" |
| 884 | elog "if, after that, you cannot start the MySQL server," |
1048 | elog "if, after that, you cannot start the MySQL server," |
| 885 | elog "remove the ${MY_DATADIR}/mysql/plugin.* files, then" |
1049 | elog "remove the ${MY_DATADIR}/mysql/plugin.* files, then" |