| 1 | # Copyright 1999-2006 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.63 2007/01/05 22:57:24 vivo Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/mysql.eclass,v 1.135 2010/03/03 23:57:13 robbat2 Exp $ |
| 4 | # kate: encoding utf-8; eol unix; |
|
|
| 5 | # kate: indent-width 4; mixedindent off; remove-trailing-space on; space-indent off; |
|
|
| 6 | # kate: word-wrap-column 80; word-wrap off; |
|
|
| 7 | |
4 | |
|
|
5 | # @ECLASS: mysql.eclass |
|
|
6 | # @MAINTAINER: |
| 8 | # Author: Francesco Riosa (Retired) <vivo@gentoo.org> |
7 | # Author: Francesco Riosa (Retired) <vivo@gentoo.org> |
|
|
8 | # Maintainers: MySQL Team <mysql-bugs@gentoo.org> |
| 9 | # Maintainer: Luca Longinotti <chtekk@gentoo.org> |
9 | # - Luca Longinotti <chtekk@gentoo.org> |
|
|
10 | # - Robin H. Johnson <robbat2@gentoo.org> |
|
|
11 | # @BLURB: This eclass provides most of the functions for mysql ebuilds |
|
|
12 | # @DESCRIPTION: |
|
|
13 | # The mysql.eclass provides almost all the code to build the mysql ebuilds |
|
|
14 | # including the src_unpack, src_prepare, src_configure, src_compile, |
|
|
15 | # scr_install, pkg_preinst, pkg_postinst, pkg_config and pkg_postrm |
|
|
16 | # phase hooks. |
| 10 | |
17 | |
| 11 | # Note that MYSQL_VERSION_ID must be empty !!! |
|
|
| 12 | |
|
|
| 13 | ECLASS="mysql" |
|
|
| 14 | INHERITED="$INHERITED $ECLASS" |
|
|
| 15 | WANT_AUTOCONF="latest" |
18 | WANT_AUTOCONF="latest" |
| 16 | WANT_AUTOMAKE="latest" |
19 | WANT_AUTOMAKE="latest" |
|
|
20 | |
| 17 | inherit eutils flag-o-matic gnuconfig autotools mysql_fx |
21 | inherit eutils flag-o-matic gnuconfig autotools mysql_fx versionator toolchain-funcs |
| 18 | |
22 | |
| 19 | # Shorten the path because the socket path length must be shorter than 107 chars |
23 | # Shorten the path because the socket path length must be shorter than 107 chars |
| 20 | # and we will run a mysql server during test phase |
24 | # and we will run a mysql server during test phase |
| 21 | S="${WORKDIR}/mysql" |
25 | S="${WORKDIR}/mysql" |
| 22 | |
26 | |
| 23 | [[ "${MY_EXTRAS_VER}" == "latest" ]] && MY_EXTRAS_VER="20070105" |
27 | [[ "${MY_EXTRAS_VER}" == "latest" ]] && MY_EXTRAS_VER="20090228-0714Z" |
| 24 | |
28 | if [[ "${MY_EXTRAS_VER}" == "live" ]]; then |
| 25 | if [[ ${PR#r} -lt 60 ]] ; then |
29 | EGIT_PROJECT=mysql-extras |
| 26 | IS_BITKEEPER=0 |
30 | EGIT_REPO_URI="git://git.overlays.gentoo.org/proj/mysql-extras.git" |
| 27 | elif [[ ${PR#r} -lt 90 ]] ; then |
31 | inherit git |
| 28 | IS_BITKEEPER=60 |
|
|
| 29 | else |
|
|
| 30 | IS_BITKEEPER=90 |
|
|
| 31 | fi |
32 | fi |
| 32 | |
33 | |
|
|
34 | case "${EAPI:-0}" in |
|
|
35 | 2) |
|
|
36 | EXPORT_FUNCTIONS pkg_setup \ |
|
|
37 | src_unpack src_prepare \ |
|
|
38 | src_configure src_compile \ |
|
|
39 | src_install \ |
|
|
40 | pkg_preinst pkg_postinst \ |
|
|
41 | pkg_config pkg_postrm |
|
|
42 | IUSE_DEFAULT_ON='+' |
|
|
43 | ;; |
|
|
44 | 0 | 1) |
|
|
45 | EXPORT_FUNCTIONS pkg_setup \ |
|
|
46 | src_unpack \ |
|
|
47 | src_compile \ |
|
|
48 | src_install \ |
|
|
49 | pkg_preinst pkg_postinst \ |
|
|
50 | pkg_config pkg_postrm |
|
|
51 | ;; |
|
|
52 | *) |
|
|
53 | die "Unsupported EAPI: ${EAPI}" ;; |
|
|
54 | esac |
|
|
55 | |
|
|
56 | # @ECLASS-VARIABLE: MYSQL_VERSION_ID |
|
|
57 | # @DESCRIPTION: |
| 33 | # MYSQL_VERSION_ID will be: |
58 | # MYSQL_VERSION_ID will be: |
| 34 | # major * 10e6 + minor * 10e4 + micro * 10e2 + gentoo revision number, all [0..99] |
59 | # major * 10e6 + minor * 10e4 + micro * 10e2 + gentoo revision number, all [0..99] |
| 35 | # This is an important part, because many of the choices the MySQL ebuild will do |
60 | # This is an important part, because many of the choices the MySQL ebuild will do |
| 36 | # depend on this variable. |
61 | # depend on this variable. |
| 37 | # In particular, the code below transforms a $PVR like "5.0.18-r3" in "5001803" |
62 | # In particular, the code below transforms a $PVR like "5.0.18-r3" in "5001803" |
|
|
63 | # We also strip off upstream's trailing letter that they use to respin tarballs |
|
|
64 | |
| 38 | MYSQL_VERSION_ID="" |
65 | MYSQL_VERSION_ID="" |
|
|
66 | tpv="${PV%[a-z]}" |
| 39 | tpv=( ${PV//[-._]/ } ) ; tpv[3]="${PVR:${#PV}}" ; tpv[3]="${tpv[3]##*-r}" |
67 | tpv=( ${tpv//[-._]/ } ) ; tpv[3]="${PVR:${#PV}}" ; tpv[3]="${tpv[3]##*-r}" |
| 40 | for vatom in 0 1 2 3 ; do |
68 | for vatom in 0 1 2 3 ; do |
| 41 | # pad to length 2 |
69 | # pad to length 2 |
| 42 | tpv[${vatom}]="00${tpv[${vatom}]}" |
70 | tpv[${vatom}]="00${tpv[${vatom}]}" |
| 43 | MYSQL_VERSION_ID="${MYSQL_VERSION_ID}${tpv[${vatom}]:0-2}" |
71 | MYSQL_VERSION_ID="${MYSQL_VERSION_ID}${tpv[${vatom}]:0-2}" |
| 44 | done |
72 | done |
| 45 | # strip leading "0" (otherwise it's considered an octal number by BASH) |
73 | # strip leading "0" (otherwise it's considered an octal number by BASH) |
| 46 | MYSQL_VERSION_ID=${MYSQL_VERSION_ID##"0"} |
74 | MYSQL_VERSION_ID=${MYSQL_VERSION_ID##"0"} |
| 47 | |
75 | |
|
|
76 | # @ECLASS-VARIABLE: MYSQL_COMMUNITY_FEATURES |
|
|
77 | # @DESCRIPTION: |
|
|
78 | # Specifiy if community features are available. Possible values are 1 (yes) |
|
|
79 | # and 0 (no). |
|
|
80 | # Community features are available in mysql-community |
|
|
81 | # AND in the re-merged mysql-5.0.82 and newer |
|
|
82 | if [ "${PN}" == "mysql-community" ]; then |
|
|
83 | MYSQL_COMMUNITY_FEATURES=1 |
|
|
84 | elif [ "${PV#5.0}" != "${PV}" ] && mysql_version_is_at_least "5.0.82"; then |
|
|
85 | MYSQL_COMMUNITY_FEATURES=1 |
|
|
86 | elif [ "${PV#5.1}" != "${PV}" ] && mysql_version_is_at_least "5.1.28"; then |
|
|
87 | MYSQL_COMMUNITY_FEATURES=1 |
|
|
88 | elif [ "${PV#5.4}" != "${PV}" ] ; then |
|
|
89 | MYSQL_COMMUNITY_FEATURES=1 |
|
|
90 | elif [ "${PV#5.5}" != "${PV}" ] ; then |
|
|
91 | MYSQL_COMMUNITY_FEATURES=1 |
|
|
92 | elif [ "${PV#6.0}" != "${PV}" ] ; then |
|
|
93 | MYSQL_COMMUNITY_FEATURES=1 |
|
|
94 | else |
|
|
95 | MYSQL_COMMUNITY_FEATURES=0 |
|
|
96 | fi |
|
|
97 | |
|
|
98 | # @ECLASS-VARIABLE: XTRADB_VER |
|
|
99 | # @DESCRIPTION: |
|
|
100 | # Version of the XTRADB storage engine |
|
|
101 | XTRADB_VER="${XTRADB_VER}" |
|
|
102 | |
|
|
103 | # @ECLASS-VARIABLE: PERCONA_VER |
|
|
104 | # @DESCRIPTION: |
|
|
105 | # Designation by PERCONA for a MySQL version to apply an XTRADB release |
|
|
106 | PERCONA_VER="${PERCONA_VER}" |
|
|
107 | |
| 48 | # Be warned, *DEPEND are version-dependant |
108 | # Be warned, *DEPEND are version-dependant |
|
|
109 | # These are used for both runtime and compiletime |
| 49 | DEPEND="ssl? ( >=dev-libs/openssl-0.9.6d ) |
110 | DEPEND="ssl? ( >=dev-libs/openssl-0.9.6d ) |
| 50 | userland_GNU? ( sys-process/procps ) |
111 | userland_GNU? ( sys-process/procps ) |
| 51 | >=sys-apps/sed-4 |
112 | >=sys-apps/sed-4 |
| 52 | >=sys-apps/texinfo-4.7-r1 |
113 | >=sys-apps/texinfo-4.7-r1 |
| 53 | >=sys-libs/readline-4.1 |
114 | >=sys-libs/readline-4.1 |
| 54 | >=sys-libs/zlib-1.2.3 |
115 | >=sys-libs/zlib-1.2.3" |
| 55 | " |
|
|
| 56 | |
116 | |
| 57 | # having different flavours at the same time is not a good idea |
117 | # Having different flavours at the same time is not a good idea |
| 58 | for i in "" "-community" "-slotted" ; do |
118 | for i in "" "-community" ; do |
| 59 | [[ "${i}" == ${PN#mysql} ]] || |
119 | [[ "${i}" == ${PN#mysql} ]] || |
| 60 | DEPEND="${DEPEND} !dev-db/mysql${i}" |
120 | DEPEND="${DEPEND} !dev-db/mysql${i}" |
| 61 | done |
121 | done |
| 62 | |
122 | |
|
|
123 | RDEPEND="${DEPEND} |
|
|
124 | !minimal? ( dev-db/mysql-init-scripts ) |
|
|
125 | selinux? ( sec-policy/selinux-mysql )" |
|
|
126 | |
|
|
127 | # compile-time-only |
| 63 | mysql_version_is_at_least "5.1" \ |
128 | mysql_version_is_at_least "5.1" \ |
| 64 | || DEPEND="${DEPEND} berkdb? ( sys-apps/ed )" |
129 | || DEPEND="${DEPEND} berkdb? ( sys-apps/ed )" |
| 65 | |
130 | |
|
|
131 | # compile-time-only |
|
|
132 | mysql_version_is_at_least "5.1.12" \ |
|
|
133 | && DEPEND="${DEPEND} >=dev-util/cmake-2.4.3" |
|
|
134 | |
| 66 | # dev-perl/DBD-mysql is needed by some scripts installed by MySQL |
135 | # dev-perl/DBD-mysql is needed by some scripts installed by MySQL |
| 67 | PDEPEND="perl? ( >=dev-perl/DBD-mysql-2.9004 )" |
136 | PDEPEND="perl? ( >=dev-perl/DBD-mysql-2.9004 )" |
| 68 | |
137 | |
| 69 | if mysql_version_is_at_least "5.1.12" ; then |
138 | # For other stuff to bring us in |
| 70 | DEPEND="${DEPEND} innodb? ( >=dev-util/cmake-2.4.3 )" |
139 | PDEPEND="${PDEPEND} =virtual/mysql-$(get_version_component_range 1-2 ${PV})" |
|
|
140 | |
|
|
141 | # Work out the default SERVER_URI correctly |
|
|
142 | if [ -z "${SERVER_URI}" ]; then |
|
|
143 | [ -z "${MY_PV}" ] && MY_PV="${PV//_/-}" |
|
|
144 | # The community build is on the mirrors |
|
|
145 | if [ "${MYSQL_COMMUNITY_FEATURES}" == "1" ]; then |
|
|
146 | SERVER_URI="mirror://mysql/Downloads/MySQL-${PV%.*}/mysql-${MY_PV}.tar.gz" |
|
|
147 | # The (old) enterprise source is on the primary site only |
|
|
148 | elif [ "${PN}" == "mysql" ]; then |
|
|
149 | SERVER_URI="ftp://ftp.mysql.com/pub/mysql/src/mysql-${MY_PV}.tar.gz" |
|
|
150 | fi |
| 71 | fi |
151 | fi |
| 72 | |
152 | |
| 73 | # BitKeeper dependency, compile-time only |
|
|
| 74 | [[ ${IS_BITKEEPER} -eq 90 ]] && DEPEND="${DEPEND} dev-util/bk_client" |
|
|
| 75 | |
|
|
| 76 | if [[ ${PN} == "mysql-slotted" ]] ; then |
|
|
| 77 | DEPEND="${DEPEND} app-admin/eselect-mysql" |
|
|
| 78 | fi |
|
|
| 79 | |
|
|
| 80 | if [[ ${PN} == "mysql-slotted" ]] ; then |
|
|
| 81 | SLOT="" |
|
|
| 82 | tpv=( ${PV//[-._]/ } ) |
|
|
| 83 | for vatom in 0 1 2 ; do |
|
|
| 84 | SLOT="${SLOT}${tpv[${vatom}]}_" |
|
|
| 85 | done |
|
|
| 86 | #finally SLOT=5_0_24 |
|
|
| 87 | SLOT=${SLOT:0:${#SLOT}-1} |
|
|
| 88 | else |
|
|
| 89 | SLOT="0" |
|
|
| 90 | fi |
|
|
| 91 | |
|
|
| 92 | # Define correct SRC_URIs |
153 | # Define correct SRC_URIs |
| 93 | SRC_URI=" |
154 | SRC_URI="${SERVER_URI}" |
| 94 | ${SERVER_URI} |
155 | |
|
|
156 | # Gentoo patches to MySQL |
|
|
157 | [[ ${MY_EXTRAS_VER} != live ]] \ |
|
|
158 | && SRC_URI="${SRC_URI} |
|
|
159 | mirror://gentoo/mysql-extras-${MY_EXTRAS_VER}.tar.bz2 |
| 95 | http://g3nt8.org/patches/mysql-extras-${MY_EXTRAS_VER}.tar.bz2 |
160 | http://g3nt8.org/patches/mysql-extras-${MY_EXTRAS_VER}.tar.bz2 |
| 96 | " |
161 | http://dev.gentoo.org/~robbat2/distfiles/mysql-extras-${MY_EXTRAS_VER}.tar.bz2" |
| 97 | mysql_version_is_at_least "5.1.12" \ |
|
|
| 98 | && [[ -n "${PBXT_VERSION}" ]] \ |
|
|
| 99 | && SRC_URI="${SRC_URI} pbxt? ( mirror://sourceforge/pbxt/pbxt-${PBXT_VERSION}.tar.gz )" |
|
|
| 100 | |
162 | |
| 101 | DESCRIPTION="A fast, multi-threaded, multi-user SQL database server." |
163 | DESCRIPTION="A fast, multi-threaded, multi-user SQL database server." |
| 102 | HOMEPAGE="http://www.mysql.com/" |
164 | HOMEPAGE="http://www.mysql.com/" |
| 103 | LICENSE="GPL-2" |
165 | LICENSE="GPL-2" |
|
|
166 | SLOT="0" |
| 104 | IUSE="big-tables debug embedded minimal perl selinux ssl static" |
167 | IUSE="big-tables debug embedded minimal ${IUSE_DEFAULT_ON}perl selinux ssl static test" |
| 105 | RESTRICT="confcache" |
|
|
| 106 | |
168 | |
| 107 | mysql_version_is_at_least "4.1" \ |
169 | mysql_version_is_at_least "4.1" \ |
| 108 | && IUSE="${IUSE} latin1" |
170 | && IUSE="${IUSE} latin1" |
| 109 | |
171 | |
| 110 | mysql_version_is_at_least "4.1.3" \ |
172 | mysql_version_is_at_least "4.1.3" \ |
| … | |
… | |
| 115 | |
177 | |
| 116 | mysql_version_is_at_least "5.0.18" \ |
178 | mysql_version_is_at_least "5.0.18" \ |
| 117 | && IUSE="${IUSE} max-idx-128" |
179 | && IUSE="${IUSE} max-idx-128" |
| 118 | |
180 | |
| 119 | mysql_version_is_at_least "5.1" \ |
181 | mysql_version_is_at_least "5.1" \ |
| 120 | && IUSE="${IUSE} innodb" |
|
|
| 121 | |
|
|
| 122 | mysql_version_is_at_least "5.1" \ |
|
|
| 123 | || IUSE="${IUSE} berkdb" |
182 | || IUSE="${IUSE} berkdb" |
| 124 | |
183 | |
|
|
184 | [ "${MYSQL_COMMUNITY_FEATURES}" == "1" ] \ |
|
|
185 | && IUSE="${IUSE} ${IUSE_DEFAULT_ON}community profiling" |
|
|
186 | |
|
|
187 | # PBXT engine |
| 125 | mysql_version_is_at_least "5.1.12" \ |
188 | mysql_version_is_at_least "5.1.12" \ |
|
|
189 | && [[ -n "${PBXT_VERSION}" ]] \ |
|
|
190 | && PBXT_P="pbxt-${PBXT_VERSION}" \ |
|
|
191 | && PBXT_SRC_URI="http://www.primebase.org/download/${PBXT_P}.tar.gz mirror://sourceforge/pbxt/${PBXT_P}.tar.gz" \ |
|
|
192 | && SRC_URI="${SRC_URI} pbxt? ( ${PBXT_SRC_URI} )" \ |
| 126 | && IUSE="${IUSE} pbxt" |
193 | && IUSE="${IUSE} pbxt" |
| 127 | |
194 | |
| 128 | RDEPEND="${DEPEND} |
195 | # Get the percona tarball if XTRADB_VER and PERCONA_VER are both set |
| 129 | sys-apps/mysql |
196 | mysql_version_is_at_least "5.1.26" \ |
| 130 | selinux? ( sec-policy/selinux-mysql ) |
197 | && [[ -n "${XTRADB_VER}" && -n "${PERCONA_VER}" ]] \ |
| 131 | " |
198 | && XTRADB_P="percona-xtradb-${XTRADB_VER}" \ |
| 132 | |
199 | && XTRADB_SRC_URI_COMMON="${PERCONA_VER}/source/${XTRADB_P}.tar.gz" \ |
| 133 | EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_preinst \ |
200 | && XTRADB_SRC_URI1="http://www.percona.com/percona-builds/xtradb/${XTRADB_SRC_URI_COMMON}" \ |
| 134 | pkg_postinst pkg_config pkg_postrm |
201 | && XTRADB_SRC_URI2="http://www.percona.com/${PN}/xtradb/${XTRADB_SRC_URI_COMMON}" \ |
|
|
202 | && SRC_URI="${SRC_URI} xtradb? ( ${XTRADB_SRC_URI1} ${XTRADB_SRC_URI2} )" \ |
|
|
203 | && IUSE="${IUSE} xtradb" |
| 135 | |
204 | |
| 136 | # |
205 | # |
| 137 | # HELPER FUNCTIONS: |
206 | # HELPER FUNCTIONS: |
| 138 | # |
207 | # |
| 139 | |
208 | |
| 140 | bitkeeper_fetch() { |
209 | # @FUNCTION: mysql_disable_test |
| 141 | |
210 | # @DESCRIPTION: |
| 142 | local reposuf |
211 | # Helper function to disable specific tests. |
| 143 | if [[ -z "${1}" ]] ; then |
|
|
| 144 | local tpv |
|
|
| 145 | tpv=( ${PV//[-._]/ } ) |
|
|
| 146 | reposuf="mysql-${tpv[0]}.${tpv[1]}" |
|
|
| 147 | else |
|
|
| 148 | reposuf="${1}" |
|
|
| 149 | fi |
|
|
| 150 | einfo "using \"${reposuf}\" repository." |
|
|
| 151 | local repo_uri="bk://mysql.bkbits.net/${reposuf}" |
|
|
| 152 | ## -- ebk_store_dir: bitkeeper sources store directory |
|
|
| 153 | local ebk_store_dir="${PORTAGE_ACTUAL_DISTDIR-${DISTDIR}}/bk-src" |
|
|
| 154 | ## -- ebk_fetch_cmd: bitkeeper fetch command |
|
|
| 155 | # always fetch the latest revision, use -r<revision> if a specified revision is wanted |
|
|
| 156 | # hint: does not work |
|
|
| 157 | local ebk_fetch_cmd="sfioball" |
|
|
| 158 | ## -- ebk_update_cmd: bitkeeper update command |
|
|
| 159 | local ebk_update_cmd="update" |
|
|
| 160 | |
|
|
| 161 | #addread "/etc/bitkeeper" |
|
|
| 162 | addwrite "${ebk_store_dir}" |
|
|
| 163 | |
|
|
| 164 | if [[ ! -d "${ebk_store_dir}" ]]; then |
|
|
| 165 | debug-print "${FUNCNAME}: initial checkout. creating bitkeeper directory" |
|
|
| 166 | mkdir -p "${ebk_store_dir}" || die "${EBK}: can't mkdir ${ebk_store_dir}." |
|
|
| 167 | fi |
|
|
| 168 | |
|
|
| 169 | pushd "${ebk_store_dir}" || die "${EBK}: can't chdir to ${ebk_store_dir}" |
|
|
| 170 | |
|
|
| 171 | local wc_path=${reposuf} |
|
|
| 172 | |
|
|
| 173 | if [[ ! -d "${wc_path}" ]]; then |
|
|
| 174 | local options="-r+" |
|
|
| 175 | # first check out |
|
|
| 176 | einfo "bitkeeper check out start -->" |
|
|
| 177 | elog " repository: ${repo_uri}" |
|
|
| 178 | ${ebk_fetch_cmd} ${options} "${repo_uri}" ${wc_path} \ |
|
|
| 179 | || die "${EBK}: can't fetch from ${repo_uri}." |
|
|
| 180 | else |
|
|
| 181 | if [[ ! -d "${wc_path}/BK" ]]; then |
|
|
| 182 | popd |
|
|
| 183 | die "Look like ${wc_path} is not a bitkeeper path." |
|
|
| 184 | fi |
|
|
| 185 | |
|
|
| 186 | # update working copy |
|
|
| 187 | einfo "bitkeeper update start -->" |
|
|
| 188 | elog " repository: ${repo_uri}" |
|
|
| 189 | |
|
|
| 190 | ${ebk_update_cmd} "${repo_uri}" "${wc_path}" \ |
|
|
| 191 | || die "BK: can't update from ${repo_uri} to ${wc_path}." |
|
|
| 192 | fi |
|
|
| 193 | |
|
|
| 194 | einfo " working copy: ${wc_path}" |
|
|
| 195 | cd "${wc_path}" |
|
|
| 196 | rsync -rlpgo --exclude="BK/" . "${S}" || die "BK: can't export to ${S}." |
|
|
| 197 | |
|
|
| 198 | echo |
|
|
| 199 | popd |
|
|
| 200 | |
|
|
| 201 | } |
|
|
| 202 | |
|
|
| 203 | mysql_disable_test() { |
212 | mysql_disable_test() { |
|
|
213 | local rawtestname testname testsuite reason mysql_disable_file |
| 204 | local testname="${1}" ; shift |
214 | rawtestname="${1}" ; shift |
| 205 | local reason="${@}" |
215 | reason="${@}" |
|
|
216 | ewarn "test '${rawtestname}' disabled: '${reason}'" |
|
|
217 | |
|
|
218 | testsuite="${rawtestname/.*}" |
|
|
219 | testname="${rawtestname/*.}" |
| 206 | local mysql_disable_file="${S}/mysql-test/t/disabled.def" |
220 | mysql_disable_file="${S}/mysql-test/t/disabled.def" |
|
|
221 | #einfo "rawtestname=${rawtestname} testname=${testname} testsuite=${testsuite}" |
| 207 | echo ${testname} : ${reason} >> "${mysql_disable_file}" |
222 | echo ${testname} : ${reason} >> "${mysql_disable_file}" |
| 208 | ewarn "test \"${testname}\" disabled because: \"${reason}\"" |
|
|
| 209 | } |
|
|
| 210 | |
223 | |
|
|
224 | # ${S}/mysql-tests/t/disabled.def |
|
|
225 | # |
|
|
226 | # ${S}/mysql-tests/suite/federated/disabled.def |
|
|
227 | # |
|
|
228 | # ${S}/mysql-tests/suite/jp/t/disabled.def |
|
|
229 | # ${S}/mysql-tests/suite/ndb/t/disabled.def |
|
|
230 | # ${S}/mysql-tests/suite/rpl/t/disabled.def |
|
|
231 | # ${S}/mysql-tests/suite/parts/t/disabled.def |
|
|
232 | # ${S}/mysql-tests/suite/rpl_ndb/t/disabled.def |
|
|
233 | # ${S}/mysql-tests/suite/ndb_team/t/disabled.def |
|
|
234 | # ${S}/mysql-tests/suite/binlog/t/disabled.def |
|
|
235 | # ${S}/mysql-tests/suite/innodb/t/disabled.def |
|
|
236 | if [ -n "${testsuite}" ]; then |
|
|
237 | for mysql_disable_file in \ |
|
|
238 | ${S}/mysql-test/suite/${testsuite}/disabled.def \ |
|
|
239 | ${S}/mysql-test/suite/${testsuite}/t/disabled.def \ |
|
|
240 | FAILED ; do |
|
|
241 | [ -f "${mysql_disable_file}" ] && break |
|
|
242 | done |
|
|
243 | if [ "${mysql_disabled_file}" != "FAILED" ]; then |
|
|
244 | echo "${testname} : ${reason}" >> "${mysql_disable_file}" |
|
|
245 | else |
|
|
246 | ewarn "Could not find testsuite disabled.def location for ${rawtestname}" |
|
|
247 | fi |
|
|
248 | fi |
|
|
249 | } |
|
|
250 | |
|
|
251 | # @FUNCTION: mysql_init_vars |
|
|
252 | # @DESCRIPTION: |
| 211 | # void mysql_init_vars() |
253 | # void mysql_init_vars() |
| 212 | # |
|
|
| 213 | # Initialize global variables |
254 | # Initialize global variables |
| 214 | # 2005-11-19 <vivo@gentoo.org> |
255 | # 2005-11-19 <vivo@gentoo.org> |
| 215 | |
|
|
| 216 | mysql_init_vars() { |
256 | mysql_init_vars() { |
| 217 | if [[ ${SLOT} == "0" ]] ; then |
|
|
| 218 | MY_SUFFIX="" |
|
|
| 219 | else |
|
|
| 220 | MY_SUFFIX=${MY_SUFFIX:-"-${SLOT}"} |
|
|
| 221 | fi |
|
|
| 222 | MY_SHAREDSTATEDIR=${MY_SHAREDSTATEDIR:-"/usr/share/mysql${MY_SUFFIX}"} |
257 | MY_SHAREDSTATEDIR=${MY_SHAREDSTATEDIR="/usr/share/mysql"} |
| 223 | MY_SYSCONFDIR=${MY_SYSCONFDIR="/etc/mysql${MY_SUFFIX}"} |
258 | MY_SYSCONFDIR=${MY_SYSCONFDIR="/etc/mysql"} |
| 224 | MY_LIBDIR=${MY_LIBDIR="/usr/$(get_libdir)/mysql${MY_SUFFIX}"} |
259 | MY_LIBDIR=${MY_LIBDIR="/usr/$(get_libdir)/mysql"} |
| 225 | MY_LOCALSTATEDIR=${MY_LOCALSTATEDIR="/var/lib/mysql${MY_SUFFIX}"} |
260 | MY_LOCALSTATEDIR=${MY_LOCALSTATEDIR="/var/lib/mysql"} |
| 226 | MY_LOGDIR=${MY_LOGDIR="/var/log/mysql${MY_SUFFIX}"} |
261 | MY_LOGDIR=${MY_LOGDIR="/var/log/mysql"} |
| 227 | MY_INCLUDEDIR=${MY_INCLUDEDIR="/usr/include/mysql${MY_SUFFIX}"} |
262 | MY_INCLUDEDIR=${MY_INCLUDEDIR="/usr/include/mysql"} |
| 228 | |
263 | |
| 229 | if [[ -z "${DATADIR}" ]] ; then |
264 | if [[ -z "${MY_DATADIR}" ]] ; then |
| 230 | DATADIR="" |
265 | MY_DATADIR="" |
| 231 | if [[ -f "${MY_SYSCONFDIR}/my.cnf" ]] ; then |
266 | if [[ -f "${MY_SYSCONFDIR}/my.cnf" ]] ; then |
| 232 | DATADIR=`"my_print_defaults${MY_SUFFIX}" mysqld 2>/dev/null \ |
267 | MY_DATADIR=`"my_print_defaults" mysqld 2>/dev/null \ |
| 233 | | sed -ne '/datadir/s|^--datadir=||p' \ |
268 | | sed -ne '/datadir/s|^--datadir=||p' \ |
| 234 | | tail -n1` |
269 | | tail -n1` |
| 235 | if [[ -z "${DATADIR}" ]] ; then |
270 | if [[ -z "${MY_DATADIR}" ]] ; then |
| 236 | DATADIR=`grep ^datadir "${MY_SYSCONFDIR}/my.cnf" \ |
271 | MY_DATADIR=`grep ^datadir "${MY_SYSCONFDIR}/my.cnf" \ |
| 237 | | sed -e 's/.*=\s*//'` |
272 | | sed -e 's/.*=\s*//' \ |
|
|
273 | | tail -n1` |
| 238 | fi |
274 | fi |
| 239 | fi |
275 | fi |
| 240 | if [[ -z "${DATADIR}" ]] ; then |
276 | if [[ -z "${MY_DATADIR}" ]] ; then |
| 241 | DATADIR="${MY_LOCALSTATEDIR}" |
277 | MY_DATADIR="${MY_LOCALSTATEDIR}" |
| 242 | einfo "Using default DATADIR" |
278 | einfo "Using default MY_DATADIR" |
| 243 | fi |
279 | fi |
| 244 | elog "MySQL DATADIR is ${DATADIR}" |
280 | elog "MySQL MY_DATADIR is ${MY_DATADIR}" |
| 245 | |
281 | |
| 246 | if [[ -z "${PREVIOUS_DATADIR}" ]] ; then |
282 | if [[ -z "${PREVIOUS_DATADIR}" ]] ; then |
| 247 | if [[ -e "${DATADIR}" ]] ; then |
283 | if [[ -e "${MY_DATADIR}" ]] ; then |
| 248 | elog "Previous datadir found, it's YOUR job to change" |
284 | # If you get this and you're wondering about it, see bug #207636 |
| 249 | elog "ownership and take care of it" |
285 | elog "MySQL datadir found in ${MY_DATADIR}" |
|
|
286 | elog "A new one will not be created." |
| 250 | PREVIOUS_DATADIR="yes" |
287 | PREVIOUS_DATADIR="yes" |
| 251 | else |
288 | else |
| 252 | PREVIOUS_DATADIR="no" |
289 | PREVIOUS_DATADIR="no" |
| 253 | fi |
290 | fi |
| 254 | export PREVIOUS_DATADIR |
291 | export PREVIOUS_DATADIR |
| 255 | fi |
292 | fi |
|
|
293 | else |
|
|
294 | if [[ ${EBUILD_PHASE} == "config" ]]; then |
|
|
295 | local new_MY_DATADIR |
|
|
296 | new_MY_DATADIR=`"my_print_defaults" mysqld 2>/dev/null \ |
|
|
297 | | sed -ne '/datadir/s|^--datadir=||p' \ |
|
|
298 | | tail -n1` |
|
|
299 | |
|
|
300 | if [[ ( -n "${new_MY_DATADIR}" ) && ( "${new_MY_DATADIR}" != "${MY_DATADIR}" ) ]]; then |
|
|
301 | ewarn "MySQL MY_DATADIR has changed" |
|
|
302 | ewarn "from ${MY_DATADIR}" |
|
|
303 | ewarn "to ${new_MY_DATADIR}" |
|
|
304 | MY_DATADIR="${new_MY_DATADIR}" |
|
|
305 | fi |
|
|
306 | fi |
| 256 | fi |
307 | fi |
| 257 | |
308 | |
| 258 | MY_SOURCEDIR=${SERVER_URI##*/} |
309 | MY_SOURCEDIR=${SERVER_URI##*/} |
| 259 | MY_SOURCEDIR=${MY_SOURCEDIR%.tar*} |
310 | MY_SOURCEDIR=${MY_SOURCEDIR%.tar*} |
| 260 | |
311 | |
| 261 | export MY_SUFFIX MY_SHAREDSTATEDIR MY_SYSCONFDIR |
312 | export MY_SHAREDSTATEDIR MY_SYSCONFDIR |
| 262 | export MY_LIBDIR MY_LOCALSTATEDIR MY_LOGDIR |
313 | export MY_LIBDIR MY_LOCALSTATEDIR MY_LOGDIR |
| 263 | export MY_INCLUDEDIR DATADIR MY_SOURCEDIR |
314 | export MY_INCLUDEDIR MY_DATADIR MY_SOURCEDIR |
| 264 | } |
315 | } |
| 265 | |
316 | |
| 266 | configure_minimal() { |
317 | configure_minimal() { |
| 267 | # These are things we exclude from a minimal build, please |
318 | # These are things we exclude from a minimal build, please |
| 268 | # note that the server actually does get built and installed, |
319 | # note that the server actually does get built and installed, |
| 269 | # but we then delete it before packaging. |
320 | # but we then delete it before packaging. |
| 270 | local minimal_exclude_list="server embedded-server extra-tools innodb bench berkeley-db row-based-replication" |
321 | local minimal_exclude_list="server embedded-server extra-tools innodb bench berkeley-db row-based-replication readline" |
| 271 | |
322 | |
| 272 | for i in ${minimal_exclude_list} ; do |
323 | for i in ${minimal_exclude_list} ; do |
| 273 | myconf="${myconf} --without-${i}" |
324 | myconf="${myconf} --without-${i}" |
| 274 | done |
325 | done |
| 275 | myconf="${myconf} --with-extra-charsets=none" |
326 | myconf="${myconf} --with-extra-charsets=none" |
| 276 | myconf="${myconf} --enable-local-infile" |
327 | myconf="${myconf} --enable-local-infile" |
| 277 | |
328 | |
| 278 | if useq "static" ; then |
329 | if use static ; then |
| 279 | myconf="${myconf} --with-client-ldflags=-all-static" |
330 | myconf="${myconf} --with-client-ldflags=-all-static" |
| 280 | myconf="${myconf} --disable-shared" |
331 | myconf="${myconf} --disable-shared --with-pic" |
| 281 | else |
332 | else |
| 282 | myconf="${myconf} --enable-shared --enable-static" |
333 | myconf="${myconf} --enable-shared --enable-static" |
| 283 | fi |
334 | fi |
| 284 | |
335 | |
| 285 | if mysql_version_is_at_least "4.01.00.00" && ! useq "latin1" ; then |
336 | if mysql_version_is_at_least "4.1" && ! use latin1 ; then |
| 286 | myconf="${myconf} --with-charset=utf8" |
337 | myconf="${myconf} --with-charset=utf8" |
| 287 | myconf="${myconf} --with-collation=utf8_general_ci" |
338 | myconf="${myconf} --with-collation=utf8_general_ci" |
| 288 | else |
339 | else |
| 289 | myconf="${myconf} --with-charset=latin1" |
340 | myconf="${myconf} --with-charset=latin1" |
| 290 | myconf="${myconf} --with-collation=latin1_swedish_ci" |
341 | myconf="${myconf} --with-collation=latin1_swedish_ci" |
| … | |
… | |
| 298 | myconf="${myconf} --with-mysqld-user=mysql" |
349 | myconf="${myconf} --with-mysqld-user=mysql" |
| 299 | myconf="${myconf} --with-server" |
350 | myconf="${myconf} --with-server" |
| 300 | myconf="${myconf} --with-unix-socket-path=/var/run/mysqld/mysqld.sock" |
351 | myconf="${myconf} --with-unix-socket-path=/var/run/mysqld/mysqld.sock" |
| 301 | myconf="${myconf} --without-libwrap" |
352 | myconf="${myconf} --without-libwrap" |
| 302 | |
353 | |
| 303 | if useq "static" ; then |
354 | if use static ; then |
| 304 | myconf="${myconf} --with-mysqld-ldflags=-all-static" |
355 | myconf="${myconf} --with-mysqld-ldflags=-all-static" |
| 305 | myconf="${myconf} --with-client-ldflags=-all-static" |
356 | myconf="${myconf} --with-client-ldflags=-all-static" |
| 306 | myconf="${myconf} --disable-shared" |
357 | myconf="${myconf} --disable-shared --with-pic" |
| 307 | else |
358 | else |
| 308 | myconf="${myconf} --enable-shared --enable-static" |
359 | myconf="${myconf} --enable-shared --enable-static" |
| 309 | fi |
360 | fi |
| 310 | |
361 | |
| 311 | if useq "debug" ; then |
362 | if use debug ; then |
| 312 | myconf="${myconf} --with-debug=full" |
363 | myconf="${myconf} --with-debug=full" |
| 313 | else |
364 | else |
| 314 | myconf="${myconf} --without-debug" |
365 | myconf="${myconf} --without-debug" |
| 315 | mysql_version_is_at_least "4.1.3" \ |
366 | mysql_version_is_at_least "4.1.3" \ |
| 316 | && useq "cluster" \ |
367 | && use cluster \ |
| 317 | && myconf="${myconf} --without-ndb-debug" |
368 | && myconf="${myconf} --without-ndb-debug" |
| 318 | fi |
369 | fi |
| 319 | |
370 | |
|
|
371 | if [ -n "${MYSQL_DEFAULT_CHARSET}" -a -n "${MYSQL_DEFAULT_COLLATION}" ]; then |
|
|
372 | ewarn "You are using a custom charset of ${MYSQL_DEFAULT_CHARSET}" |
|
|
373 | ewarn "and a collation of ${MYSQL_DEFAULT_COLLATION}." |
|
|
374 | ewarn "You MUST file bugs without these variables set." |
|
|
375 | myconf="${myconf} --with-charset=${MYSQL_DEFAULT_CHARSET}" |
|
|
376 | myconf="${myconf} --with-collation=${MYSQL_DEFAULT_COLLATION}" |
| 320 | if mysql_version_is_at_least "4.1" && ! useq "latin1" ; then |
377 | elif mysql_version_is_at_least "4.1" && ! use latin1 ; then |
| 321 | myconf="${myconf} --with-charset=utf8" |
378 | myconf="${myconf} --with-charset=utf8" |
| 322 | myconf="${myconf} --with-collation=utf8_general_ci" |
379 | myconf="${myconf} --with-collation=utf8_general_ci" |
| 323 | else |
380 | else |
| 324 | myconf="${myconf} --with-charset=latin1" |
381 | myconf="${myconf} --with-charset=latin1" |
| 325 | myconf="${myconf} --with-collation=latin1_swedish_ci" |
382 | myconf="${myconf} --with-collation=latin1_swedish_ci" |
| 326 | fi |
383 | fi |
| 327 | |
384 | |
| 328 | if useq "embedded" ; then |
385 | if use embedded ; then |
| 329 | myconf="${myconf} --with-embedded-privilege-control" |
386 | myconf="${myconf} --with-embedded-privilege-control" |
| 330 | myconf="${myconf} --with-embedded-server" |
387 | myconf="${myconf} --with-embedded-server" |
| 331 | else |
388 | else |
| 332 | myconf="${myconf} --without-embedded-privilege-control" |
389 | myconf="${myconf} --without-embedded-privilege-control" |
| 333 | myconf="${myconf} --without-embedded-server" |
390 | myconf="${myconf} --without-embedded-server" |
| … | |
… | |
| 341 | myconf="${myconf} --with-extra-tools" |
398 | myconf="${myconf} --with-extra-tools" |
| 342 | myconf="${myconf} --with-innodb" |
399 | myconf="${myconf} --with-innodb" |
| 343 | myconf="${myconf} --without-readline" |
400 | myconf="${myconf} --without-readline" |
| 344 | mysql_version_is_at_least "5.0" || myconf="${myconf} $(use_with raid)" |
401 | mysql_version_is_at_least "5.0" || myconf="${myconf} $(use_with raid)" |
| 345 | |
402 | |
| 346 | if useq "ssl" ; then |
|
|
| 347 | # --with-vio is not needed anymore, it's on by default and |
403 | # --with-vio is not needed anymore, it's on by default and |
| 348 | # has been removed from configure |
404 | # has been removed from configure |
|
|
405 | if use ssl ; then |
| 349 | mysql_version_is_at_least "5.0.4" || myconf="${myconf} --with-vio" |
406 | mysql_version_is_at_least "5.0.4" || myconf="${myconf} --with-vio" |
| 350 | fi |
407 | fi |
| 351 | |
408 | |
| 352 | if mysql_version_is_at_least "5.1.11" ; then |
409 | if mysql_version_is_at_least "5.1.11" ; then |
| 353 | myconf="${myconf} $(use_with ssl)" |
410 | myconf="${myconf} $(use_with ssl /usr)" |
| 354 | else |
411 | else |
| 355 | myconf="${myconf} $(use_with ssl openssl)" |
412 | myconf="${myconf} $(use_with ssl openssl)" |
| 356 | fi |
413 | fi |
| 357 | |
414 | |
|
|
415 | if mysql_version_is_at_least "5.0.60" ; then |
|
|
416 | if use berkdb ; then |
|
|
417 | elog "Berkeley DB support was disabled due to build failures" |
|
|
418 | elog "on multiple arches, go to a version earlier than 5.0.60" |
|
|
419 | elog "if you want it again. Gentoo bug #224067." |
|
|
420 | fi |
|
|
421 | myconf="${myconf} --without-berkeley-db" |
|
|
422 | elif use berkdb ; then |
| 358 | # The following fix is due to a bug with bdb on SPARC's. See: |
423 | # The following fix is due to a bug with bdb on SPARC's. See: |
| 359 | # http://www.geocrawler.com/mail/msg.php3?msg_id=4754814&list=8 |
424 | # http://www.geocrawler.com/mail/msg.php3?msg_id=4754814&list=8 |
| 360 | # It comes down to non-64-bit safety problems. |
425 | # It comes down to non-64-bit safety problems. |
| 361 | if useq "sparc" || useq "alpha" || useq "hppa" || useq "mips" || useq "amd64" ; then |
426 | if use alpha || use amd64 || use hppa || use mips || use sparc ; then |
| 362 | elog "Berkeley DB support was disabled due to incompatible arch" |
427 | elog "Berkeley DB support was disabled due to compatibility issues on this arch" |
|
|
428 | myconf="${myconf} --without-berkeley-db" |
|
|
429 | else |
|
|
430 | myconf="${myconf} --with-berkeley-db=./bdb" |
|
|
431 | fi |
|
|
432 | else |
| 363 | myconf="${myconf} --without-berkeley-db" |
433 | myconf="${myconf} --without-berkeley-db" |
| 364 | else |
|
|
| 365 | if useq "berkdb" ; then |
|
|
| 366 | myconf="${myconf} --with-berkeley-db=./bdb" |
|
|
| 367 | else |
|
|
| 368 | myconf="${myconf} --without-berkeley-db" |
|
|
| 369 | fi |
|
|
| 370 | fi |
434 | fi |
| 371 | |
435 | |
| 372 | if mysql_version_is_at_least "4.1.3" ; then |
436 | if mysql_version_is_at_least "4.1.3" ; then |
| 373 | myconf="${myconf} --with-geometry" |
437 | myconf="${myconf} --with-geometry" |
| 374 | myconf="${myconf} $(use_with cluster ndbcluster)" |
438 | myconf="${myconf} $(use_with cluster ndbcluster)" |
| 375 | fi |
439 | fi |
| 376 | |
440 | |
| 377 | if mysql_version_is_at_least "4.1.3" && useq "extraengine" ; then |
441 | if mysql_version_is_at_least "4.1.3" && use extraengine ; then |
| 378 | # http://dev.mysql.com/doc/mysql/en/archive-storage-engine.html |
442 | # http://dev.mysql.com/doc/mysql/en/archive-storage-engine.html |
| 379 | myconf="${myconf} --with-archive-storage-engine" |
443 | myconf="${myconf} --with-archive-storage-engine" |
| 380 | |
444 | |
| 381 | # http://dev.mysql.com/doc/mysql/en/csv-storage-engine.html |
445 | # http://dev.mysql.com/doc/mysql/en/csv-storage-engine.html |
| 382 | myconf="${myconf} --with-csv-storage-engine" |
446 | myconf="${myconf} --with-csv-storage-engine" |
| … | |
… | |
| 392 | elog "http://dev.mysql.com/doc/mysql/en/federated-limitations.html" |
456 | elog "http://dev.mysql.com/doc/mysql/en/federated-limitations.html" |
| 393 | myconf="${myconf} --with-federated-storage-engine" |
457 | myconf="${myconf} --with-federated-storage-engine" |
| 394 | fi |
458 | fi |
| 395 | fi |
459 | fi |
| 396 | |
460 | |
|
|
461 | if [ "${MYSQL_COMMUNITY_FEATURES}" == "1" ]; then |
|
|
462 | myconf="${myconf} `use_enable community community-features`" |
|
|
463 | if use community; then |
|
|
464 | myconf="${myconf} `use_enable profiling`" |
|
|
465 | else |
|
|
466 | myconf="${myconf} --disable-profiling" |
|
|
467 | fi |
|
|
468 | fi |
|
|
469 | |
| 397 | mysql_version_is_at_least "5.0.18" \ |
470 | mysql_version_is_at_least "5.0.18" \ |
| 398 | && useq "max-idx-128" \ |
471 | && use max-idx-128 \ |
| 399 | && myconf="${myconf} --with-max-indexes=128" |
472 | && myconf="${myconf} --with-max-indexes=128" |
| 400 | } |
473 | } |
| 401 | |
474 | |
| 402 | configure_51() { |
475 | configure_51() { |
| 403 | # TODO: !!!! readd --without-readline |
476 | # TODO: !!!! readd --without-readline |
| … | |
… | |
| 405 | # readline.h instead of history.h |
478 | # readline.h instead of history.h |
| 406 | myconf="${myconf} $(use_with ssl)" |
479 | myconf="${myconf} $(use_with ssl)" |
| 407 | myconf="${myconf} --enable-assembler" |
480 | myconf="${myconf} --enable-assembler" |
| 408 | myconf="${myconf} --with-geometry" |
481 | myconf="${myconf} --with-geometry" |
| 409 | myconf="${myconf} --with-readline" |
482 | myconf="${myconf} --with-readline" |
| 410 | myconf="${myconf} --with-row-based-replication" |
|
|
| 411 | myconf="${myconf} --with-zlib=/usr/$(get_libdir)" |
483 | myconf="${myconf} --with-zlib-dir=/usr/" |
| 412 | myconf="${myconf} --without-pstack" |
484 | myconf="${myconf} --without-pstack" |
| 413 | useq "max-idx-128" && myconf="${myconf} --with-max-indexes=128" |
485 | use max-idx-128 && myconf="${myconf} --with-max-indexes=128" |
| 414 | |
486 | |
| 415 | # 5.1 introduces a new way to manage storage engines (plugins) |
487 | # 5.1 introduces a new way to manage storage engines (plugins) |
| 416 | # like configuration=none |
488 | # like configuration=none |
| 417 | local plugins="csv,myisam,myisammrg,heap" |
489 | local plugins="csv,myisam,myisammrg,heap" |
| 418 | if useq "extraengine" ; then |
490 | if use extraengine ; then |
| 419 | # like configuration=max-no-ndb, archive and example removed in 5.1.11 |
491 | # like configuration=max-no-ndb, archive and example removed in 5.1.11 |
|
|
492 | # not added yet: ibmdb2i |
|
|
493 | # Not supporting as examples: example,daemon_example,ftexample |
| 420 | plugins="${plugins},archive,blackhole,example,federated,partition" |
494 | plugins="${plugins},archive,blackhole,federated,partition" |
| 421 | |
495 | |
| 422 | elog "Before using the Federated storage engine, please be sure to read" |
496 | elog "Before using the Federated storage engine, please be sure to read" |
| 423 | elog "http://dev.mysql.com/doc/refman/5.1/en/federated-limitations.html" |
497 | elog "http://dev.mysql.com/doc/refman/5.1/en/federated-limitations.html" |
| 424 | fi |
498 | fi |
| 425 | |
499 | |
| 426 | if useq "innodb" ; then |
500 | # Upstream specifically requests that InnoDB always be built: |
| 427 | plugins="${plugins},innobase" |
501 | # - innobase, innodb_plugin |
| 428 | fi |
502 | # Build falcon if available for 6.x series. |
|
|
503 | for i in innobase innodb_plugin falcon ; do |
|
|
504 | [ -e "${S}"/storage/${i} ] && plugins="${plugins},${i}" |
|
|
505 | done |
| 429 | |
506 | |
| 430 | # like configuration=max-no-ndb |
507 | # like configuration=max-no-ndb |
| 431 | if useq "cluster" ; then |
508 | if use cluster ; then |
| 432 | plugins="${plugins},ndbcluster" |
509 | plugins="${plugins},ndbcluster" |
| 433 | myconf="${myconf} --with-ndb-binlog" |
510 | myconf="${myconf} --with-ndb-binlog" |
| 434 | fi |
511 | fi |
| 435 | |
512 | |
| 436 | if mysql_version_is_at_least "5.2" ; then |
|
|
| 437 | plugins="${plugins},falcon" |
|
|
| 438 | fi |
|
|
| 439 | |
|
|
| 440 | myconf="${myconf} --with-plugins=${plugins}" |
513 | myconf="${myconf} --with-plugins=${plugins}" |
| 441 | } |
514 | } |
| 442 | |
515 | |
|
|
516 | xtradb_applicable() { |
|
|
517 | mysql_version_is_at_least "5.1.26" \ |
|
|
518 | && [[ -n "${XTRADB_VER}" && -n "${PERCONA_VER}" ]] \ |
|
|
519 | && use xtradb |
|
|
520 | return $? |
|
|
521 | } |
|
|
522 | |
|
|
523 | pbxt_applicable() { |
|
|
524 | mysql_version_is_at_least "5.1.12" \ |
|
|
525 | && [[ -n "${PBXT_VERSION}" ]] \ |
|
|
526 | && use pbxt |
|
|
527 | return $? |
|
|
528 | } |
|
|
529 | |
| 443 | pbxt_src_compile() { |
530 | pbxt_src_configure() { |
| 444 | mysql_init_vars |
531 | mysql_init_vars |
| 445 | |
532 | |
| 446 | pushd "${WORKDIR}/pbxt-${PBXT_VERSION}" &>/dev/null |
533 | pushd "${WORKDIR}/pbxt-${PBXT_VERSION}" &>/dev/null |
| 447 | |
534 | |
| 448 | einfo "Reconfiguring dir '${PWD}'" |
535 | einfo "Reconfiguring dir '${PWD}'" |
| 449 | AT_GNUCONF_UPDATE="yes" eautoreconf |
536 | AT_GNUCONF_UPDATE="yes" eautoreconf |
| 450 | |
537 | |
| 451 | local myconf |
538 | local myconf="" |
| 452 | myconf="${myconf} --with-mysql=${S}" |
|
|
| 453 | mkdir -p ${T}/lib |
|
|
| 454 | myconf="${myconf} --libdir=${D}/${MY_LIBDIR}" |
539 | myconf="${myconf} --with-mysql=${S} --libdir=${MY_LIBDIR}" |
| 455 | useq "debug" && myconf="${myconf} --with-debug=full" |
540 | use debug && myconf="${myconf} --with-debug=full" |
| 456 | # TODO is safe/needed to use econf here ? |
541 | # TODO: is it safe/needed to use econf here ? |
| 457 | ./configure ${myconf} || die "problem configuring pbxt storage engine" |
542 | ./configure ${myconf} || die "Problem configuring PBXT storage engine" |
|
|
543 | } |
|
|
544 | |
|
|
545 | pbxt_src_compile() { |
|
|
546 | # Be backwards compatible for now |
|
|
547 | if [[ $EAPI != 2 ]]; then |
|
|
548 | pbxt_src_configure |
|
|
549 | fi |
| 458 | # TODO is safe/needed to use emake here ? |
550 | # TODO: is it safe/needed to use emake here ? |
| 459 | make || die "problem making pbxt storage engine (${myconf})" |
551 | make || die "Problem making PBXT storage engine (${myconf})" |
| 460 | |
552 | |
| 461 | popd |
553 | popd |
| 462 | # TODO: modify test suite |
554 | # TODO: modify test suite for PBXT |
| 463 | } |
555 | } |
| 464 | |
556 | |
| 465 | pbxt_src_install() { |
557 | pbxt_src_install() { |
| 466 | pushd "${WORKDIR}/pbxt-${PBXT_VERSION}" &>/dev/null |
558 | pushd "${WORKDIR}/pbxt-${PBXT_VERSION}" &>/dev/null |
| 467 | make install || die "failed pbxt install" |
559 | emake install DESTDIR="${D}" || die "Failed to install PBXT" |
| 468 | popd |
560 | popd |
| 469 | } |
561 | } |
| 470 | |
562 | |
| 471 | # |
563 | # |
| 472 | # EBUILD FUNCTIONS |
564 | # EBUILD FUNCTIONS |
| 473 | # |
565 | # |
| 474 | |
566 | # @FUNCTION: mysql_pkg_setup |
|
|
567 | # @DESCRIPTION: |
|
|
568 | # Perform some basic tests and tasks during pkg_setup phase: |
|
|
569 | # die if FEATURES="test", USE="-minimal" and not using FEATURES="userpriv" |
|
|
570 | # check for conflicting use flags |
|
|
571 | # create new user and group for mysql |
|
|
572 | # warn about deprecated features |
| 475 | mysql_pkg_setup() { |
573 | mysql_pkg_setup() { |
| 476 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
574 | if hasq test ${FEATURES} ; then |
| 477 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
575 | if ! use minimal ; then |
|
|
576 | if [[ $UID -eq 0 ]]; then |
|
|
577 | eerror "Testing with FEATURES=-userpriv is no longer supported by upstream. Tests MUST be run as non-root." |
|
|
578 | fi |
|
|
579 | fi |
|
|
580 | fi |
| 478 | |
581 | |
| 479 | # Check for USE flag problems in pkg_setup |
582 | # Check for USE flag problems in pkg_setup |
| 480 | if useq "static" && useq "ssl" ; then |
583 | if use static && use ssl ; then |
| 481 | eerror "MySQL does not support being built statically with SSL support enabled!" |
584 | eerror "MySQL does not support being built statically with SSL support enabled!" |
| 482 | die "MySQL does not support being built statically with SSL support enabled!" |
585 | die "MySQL does not support being built statically with SSL support enabled!" |
| 483 | fi |
586 | fi |
| 484 | |
587 | |
| 485 | if ! mysql_version_is_at_least "5.0" \ |
588 | if ! mysql_version_is_at_least "5.0" \ |
| 486 | && useq "raid" \ |
589 | && use raid \ |
| 487 | && useq "static" ; then |
590 | && use static ; then |
| 488 | eerror "USE flags 'raid' and 'static' conflict, you cannot build MySQL statically" |
591 | eerror "USE flags 'raid' and 'static' conflict, you cannot build MySQL statically" |
| 489 | eerror "with RAID support enabled." |
592 | eerror "with RAID support enabled." |
| 490 | die "USE flags 'raid' and 'static' conflict!" |
593 | die "USE flags 'raid' and 'static' conflict!" |
| 491 | fi |
594 | fi |
| 492 | |
595 | |
| 493 | if mysql_version_is_at_least "4.1.3" \ |
596 | if mysql_version_is_at_least "4.1.3" \ |
| 494 | && ( useq "cluster" || useq "extraengine" ) \ |
597 | && ( use cluster || use extraengine ) \ |
| 495 | && useq "minimal" ; then |
598 | && use minimal ; then |
| 496 | eerror "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
599 | eerror "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
| 497 | die "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
600 | die "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
| 498 | fi |
601 | fi |
| 499 | |
602 | |
|
|
603 | # Bug #290570 fun. Upstream made us need a fairly new GCC4. |
|
|
604 | if mysql_version_is_at_least "5.0.83" ; then |
|
|
605 | GCC_VER=$(gcc-version) |
|
|
606 | case ${GCC_VER} in |
|
|
607 | 2*|3*|4.0|4.1|4.2) die "Active GCC too old! Must have at least GCC4.3" ;; |
|
|
608 | esac |
|
|
609 | fi |
|
|
610 | |
|
|
611 | # This should come after all of the die statements |
|
|
612 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
|
|
613 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
|
|
614 | |
| 500 | mysql_check_version_range "4.0 to 5.0.99.99" \ |
615 | mysql_check_version_range "4.0 to 5.0.99.99" \ |
| 501 | && useq "berkdb" \ |
616 | && use berkdb \ |
| 502 | && elog "Berkeley DB support is deprecated and will be removed in future versions!" |
617 | && elog "Berkeley DB support is deprecated and will be removed in future versions!" |
| 503 | } |
|
|
| 504 | |
618 | |
|
|
619 | if [ "${PN}" != "mysql-cluster" ] && use cluster; then |
|
|
620 | ewarn "Upstream has noted that the NDB cluster support in the 5.0 and" |
|
|
621 | ewarn "5.1 series should NOT be put into production. In the near" |
|
|
622 | ewarn "future, it will be disabled from building." |
|
|
623 | ewarn "" |
|
|
624 | ewarn "If you need NDB support, you should instead move to the new" |
|
|
625 | ewarn "mysql-cluster package that represents that upstream NDB" |
|
|
626 | ewarn "development." |
|
|
627 | fi |
|
|
628 | } |
|
|
629 | |
|
|
630 | # @FUNCTION: mysql_src_unpack |
|
|
631 | # @DESCRIPTION: |
|
|
632 | # Unpack the source code and call mysql_src_prepare for EAPI < 2. |
| 505 | mysql_src_unpack() { |
633 | mysql_src_unpack() { |
| 506 | # Initialize the proper variables first |
634 | # Initialize the proper variables first |
| 507 | mysql_init_vars |
635 | mysql_init_vars |
| 508 | |
636 | |
| 509 | unpack ${A} |
637 | unpack ${A} |
| 510 | if [[ ${IS_BITKEEPER} -eq 90 ]] ; then |
638 | # Grab the patches |
| 511 | if mysql_check_version_range "5.1 to 5.1.99" ; then |
639 | [[ "${MY_EXTRAS_VER}" == "live" ]] && S="${WORKDIR}/mysql-extras" git_src_unpack |
| 512 | bitkeeper_fetch "mysql-5.1-ndb" |
640 | |
| 513 | elif mysql_check_version_range "5.2.0 to 5.2.99" ; then |
|
|
| 514 | bitkeeper_fetch "mysql-5.2-falcon" |
|
|
| 515 | else |
|
|
| 516 | bitkeeper_fetch |
|
|
| 517 | fi |
|
|
| 518 | cd "${S}" |
|
|
| 519 | einfo "running upstream autorun on bk sources" |
|
|
| 520 | BUILD/autorun.sh |
|
|
| 521 | else |
|
|
| 522 | mv -f "${WORKDIR}/${MY_SOURCEDIR}" "${S}" |
641 | mv -f "${WORKDIR}/${MY_SOURCEDIR}" "${S}" |
|
|
642 | |
|
|
643 | # Be backwards compatible for now |
|
|
644 | case ${EAPI:-0} in |
|
|
645 | 2) : ;; |
|
|
646 | 0 | 1) mysql_src_prepare ;; |
|
|
647 | esac |
|
|
648 | } |
|
|
649 | |
|
|
650 | # @FUNCTION: mysql_src_prepare |
|
|
651 | # @DESCRIPTION: |
|
|
652 | # Apply patches to the source code and remove unneeded bundled libs. |
|
|
653 | mysql_src_prepare() { |
| 523 | cd "${S}" |
654 | cd "${S}" |
| 524 | fi |
|
|
| 525 | |
655 | |
| 526 | # Apply the patches for this MySQL version |
656 | # Apply the patches for this MySQL version |
| 527 | EPATCH_SUFFIX="patch" |
657 | EPATCH_SUFFIX="patch" |
| 528 | mkdir -p "${EPATCH_SOURCE}" || die "unable to create epatch directory" |
658 | mkdir -p "${EPATCH_SOURCE}" || die "Unable to create epatch directory" |
|
|
659 | # Clean out old items |
|
|
660 | rm -f "${EPATCH_SOURCE}"/* |
|
|
661 | # Now link in right patches |
| 529 | mysql_mv_patches |
662 | mysql_mv_patches |
| 530 | epatch || die "failed to apply all patches" |
663 | # And apply |
|
|
664 | epatch |
|
|
665 | |
|
|
666 | # last -fPIC fixup, per bug #305873 |
|
|
667 | i="${S}"/storage/innodb_plugin/plug.in |
|
|
668 | [ -f "${i}" ] && sed -i -e '/CFLAGS/s,-prefer-non-pic,,g' "${i}" |
| 531 | |
669 | |
| 532 | # Additional checks, remove bundled zlib |
670 | # Additional checks, remove bundled zlib |
| 533 | rm -f "${S}/zlib/"*.[ch] |
671 | rm -f "${S}/zlib/"*.[ch] |
| 534 | sed -i -e "s/zlib\/Makefile dnl/dnl zlib\/Makefile/" "${S}/configure.in" |
672 | sed -i -e "s/zlib\/Makefile dnl/dnl zlib\/Makefile/" "${S}/configure.in" |
| 535 | rm -f "scripts/mysqlbug" |
673 | rm -f "scripts/mysqlbug" |
| … | |
… | |
| 538 | find . -name 'Makefile.am' \ |
676 | find . -name 'Makefile.am' \ |
| 539 | -exec sed --in-place -e 's!$(pkgdatadir)!'${MY_SHAREDSTATEDIR}'!g' {} \; |
677 | -exec sed --in-place -e 's!$(pkgdatadir)!'${MY_SHAREDSTATEDIR}'!g' {} \; |
| 540 | |
678 | |
| 541 | if mysql_version_is_at_least "4.1" ; then |
679 | if mysql_version_is_at_least "4.1" ; then |
| 542 | # Remove what needs to be recreated, so we're sure it's actually done |
680 | # Remove what needs to be recreated, so we're sure it's actually done |
|
|
681 | einfo "Cleaning up old buildscript files" |
| 543 | find . -name Makefile \ |
682 | find . -name Makefile \ |
| 544 | -o -name Makefile.in \ |
683 | -o -name Makefile.in \ |
| 545 | -o -name configure \ |
684 | -o -name configure \ |
| 546 | -exec rm -f {} \; |
685 | -exec rm -f {} \; |
| 547 | rm -f "ltmain.sh" |
686 | rm -f "ltmain.sh" |
| 548 | rm -f "scripts/mysqlbug" |
687 | rm -f "scripts/mysqlbug" |
| 549 | fi |
688 | fi |
| 550 | |
689 | |
| 551 | local rebuilddirlist d |
690 | local rebuilddirlist d |
| 552 | |
691 | |
|
|
692 | if xtradb_applicable ; then |
|
|
693 | einfo "Replacing InnoDB with Percona XtraDB" |
|
|
694 | pushd "${S}"/storage |
|
|
695 | i="innobase" |
|
|
696 | o="${WORKDIR}/storage-${i}.mysql-upstream" |
|
|
697 | # Have we been here already? |
|
|
698 | [ -d "${o}" ] && rm -f "${i}" |
|
|
699 | # Or maybe we haven't |
|
|
700 | [ -d "${i}" -a ! -d "${o}" ] && mv "${i}" "${o}" |
|
|
701 | cp -ra "${WORKDIR}/${XTRADB_P}" "${i}" |
|
|
702 | popd |
|
|
703 | fi |
|
|
704 | |
| 553 | if mysql_version_is_at_least "5.1.12" ; then |
705 | if mysql_version_is_at_least "5.1.12" ; then |
| 554 | rebuilddirlist="." |
706 | rebuilddirlist="." |
|
|
707 | # This does not seem to be needed presently. robbat2 2010/02/23 |
|
|
708 | #einfo "Updating innobase cmake" |
| 555 | # TODO IMPO! Check this with a cmake expert |
709 | ## TODO: check this with a cmake expert |
| 556 | useq "innodb" \ |
|
|
| 557 | && cmake \ |
710 | #cmake \ |
| 558 | -DCMAKE_C_COMPILER=$(which $(tc-getCC)) \ |
711 | # -DCMAKE_C_COMPILER=$(type -P $(tc-getCC)) \ |
| 559 | -DCMAKE_CXX_COMPILER=$(which $(tc-getCC)) \ |
712 | # -DCMAKE_CXX_COMPILER=$(type -P $(tc-getCXX)) \ |
| 560 | "storage/innobase" |
713 | # "storage/innobase" |
| 561 | else |
714 | else |
| 562 | rebuilddirlist=". innobase" |
715 | rebuilddirlist=". innobase" |
| 563 | fi |
716 | fi |
| 564 | |
717 | |
| 565 | for d in ${rebuilddirlist} ; do |
718 | for d in ${rebuilddirlist} ; do |
| … | |
… | |
| 568 | AT_GNUCONF_UPDATE="yes" eautoreconf |
721 | AT_GNUCONF_UPDATE="yes" eautoreconf |
| 569 | popd &>/dev/null |
722 | popd &>/dev/null |
| 570 | done |
723 | done |
| 571 | |
724 | |
| 572 | if mysql_check_version_range "4.1 to 5.0.99.99" \ |
725 | if mysql_check_version_range "4.1 to 5.0.99.99" \ |
| 573 | && useq "berkdb" ; then |
726 | && use berkdb ; then |
|
|
727 | einfo "Fixing up berkdb buildsystem" |
| 574 | [[ -w "bdb/dist/ltmain.sh" ]] && cp -f "ltmain.sh" "bdb/dist/ltmain.sh" |
728 | [[ -w "bdb/dist/ltmain.sh" ]] && cp -f "ltmain.sh" "bdb/dist/ltmain.sh" |
|
|
729 | cp -f "/usr/share/aclocal/libtool.m4" "bdb/dist/aclocal/libtool.ac" \ |
|
|
730 | || die "Could not copy libtool.m4 to bdb/dist/" |
|
|
731 | #These files exist only with libtool-2*, and need to be included. |
|
|
732 | if [ -f '/usr/share/aclocal/ltsugar.m4' ]; then |
|
|
733 | cat "/usr/share/aclocal/ltsugar.m4" >> "bdb/dist/aclocal/libtool.ac" |
|
|
734 | cat "/usr/share/aclocal/ltversion.m4" >> "bdb/dist/aclocal/libtool.ac" |
|
|
735 | cat "/usr/share/aclocal/lt~obsolete.m4" >> "bdb/dist/aclocal/libtool.ac" |
|
|
736 | cat "/usr/share/aclocal/ltoptions.m4" >> "bdb/dist/aclocal/libtool.ac" |
|
|
737 | fi |
| 575 | pushd "bdb/dist" \ |
738 | pushd "bdb/dist" &>/dev/null |
| 576 | && sh s_all \ |
739 | sh s_all \ |
| 577 | || die "Failed bdb reconfigure" \ |
740 | || die "Failed bdb reconfigure" |
| 578 | &>/dev/null |
|
|
| 579 | popd &>/dev/null |
741 | popd &>/dev/null |
| 580 | fi |
742 | fi |
| 581 | } |
743 | } |
| 582 | |
744 | |
|
|
745 | # @FUNCTION: mysql_src_configure |
|
|
746 | # @DESCRIPTION: |
|
|
747 | # Configure mysql to build the code for Gentoo respecting the use flags. |
| 583 | mysql_src_compile() { |
748 | mysql_src_configure() { |
| 584 | # Make sure the vars are correctly initialized |
749 | # Make sure the vars are correctly initialized |
| 585 | mysql_init_vars |
750 | mysql_init_vars |
| 586 | |
751 | |
| 587 | # $myconf is modified by the configure_* functions |
752 | # $myconf is modified by the configure_* functions |
| 588 | local myconf="" |
753 | local myconf="" |
| 589 | |
754 | |
| 590 | if useq "minimal" ; then |
755 | if use minimal ; then |
| 591 | configure_minimal |
756 | configure_minimal |
| 592 | else |
757 | else |
| 593 | configure_common |
758 | configure_common |
| 594 | if mysql_version_is_at_least "5.1.10" ; then |
759 | if mysql_version_is_at_least "5.1.10" ; then |
| 595 | configure_51 |
760 | configure_51 |
| … | |
… | |
| 602 | filter-flags "-O" "-O[01]" |
767 | filter-flags "-O" "-O[01]" |
| 603 | |
768 | |
| 604 | # glib-2.3.2_pre fix, bug #16496 |
769 | # glib-2.3.2_pre fix, bug #16496 |
| 605 | append-flags "-DHAVE_ERRNO_AS_DEFINE=1" |
770 | append-flags "-DHAVE_ERRNO_AS_DEFINE=1" |
| 606 | |
771 | |
|
|
772 | # As discovered by bug #246652, doing a double-level of SSP causes NDB to |
|
|
773 | # fail badly during cluster startup. |
|
|
774 | if [[ $(gcc-major-version) -lt 4 ]]; then |
|
|
775 | filter-flags "-fstack-protector-all" |
|
|
776 | fi |
|
|
777 | |
| 607 | CXXFLAGS="${CXXFLAGS} -fno-exceptions -fno-strict-aliasing" |
778 | CXXFLAGS="${CXXFLAGS} -fno-exceptions -fno-strict-aliasing" |
| 608 | CXXFLAGS="${CXXFLAGS} -felide-constructors -fno-rtti" |
779 | CXXFLAGS="${CXXFLAGS} -felide-constructors -fno-rtti" |
| 609 | mysql_version_is_at_least "5.0" \ |
780 | mysql_version_is_at_least "5.0" \ |
| 610 | && CXXFLAGS="${CXXFLAGS} -fno-implicit-templates" |
781 | && CXXFLAGS="${CXXFLAGS} -fno-implicit-templates" |
| 611 | export CXXFLAGS |
782 | export CXXFLAGS |
| 612 | |
783 | |
|
|
784 | # bug #283926, with GCC4.4, this is required to get correct behavior. |
|
|
785 | append-flags -fno-strict-aliasing |
|
|
786 | |
| 613 | econf \ |
787 | econf \ |
| 614 | --program-suffix="${MY_SUFFIX}" \ |
|
|
| 615 | --libexecdir="/usr/sbin" \ |
788 | --libexecdir="/usr/sbin" \ |
| 616 | --sysconfdir="${MY_SYSCONFDIR}" \ |
789 | --sysconfdir="${MY_SYSCONFDIR}" \ |
| 617 | --localstatedir="${MY_LOCALSTATEDIR}" \ |
790 | --localstatedir="${MY_LOCALSTATEDIR}" \ |
| 618 | --sharedstatedir="${MY_SHAREDSTATEDIR}" \ |
791 | --sharedstatedir="${MY_SHAREDSTATEDIR}" \ |
| 619 | --libdir="${MY_LIBDIR}" \ |
792 | --libdir="${MY_LIBDIR}" \ |
| … | |
… | |
| 628 | # TODO: Move this before autoreconf !!! |
801 | # TODO: Move this before autoreconf !!! |
| 629 | find . -type f -name Makefile -print0 \ |
802 | find . -type f -name Makefile -print0 \ |
| 630 | | xargs -0 -n100 sed -i \ |
803 | | xargs -0 -n100 sed -i \ |
| 631 | -e 's|^pkglibdir *= *$(libdir)/mysql|pkglibdir = $(libdir)|;s|^pkgincludedir *= *$(includedir)/mysql|pkgincludedir = $(includedir)|' |
804 | -e 's|^pkglibdir *= *$(libdir)/mysql|pkglibdir = $(libdir)|;s|^pkgincludedir *= *$(includedir)/mysql|pkgincludedir = $(includedir)|' |
| 632 | |
805 | |
|
|
806 | if [[ $EAPI == 2 ]]; then |
|
|
807 | pbxt_applicable && pbxt_src_configure |
|
|
808 | fi |
|
|
809 | } |
|
|
810 | |
|
|
811 | # @FUNCTION: mysql_src_compile |
|
|
812 | # @DESCRIPTION: |
|
|
813 | # Compile the mysql code. |
|
|
814 | mysql_src_compile() { |
|
|
815 | # Be backwards compatible for now |
|
|
816 | case ${EAPI:-0} in |
|
|
817 | 2) : ;; |
|
|
818 | 0 | 1) mysql_src_configure ;; |
|
|
819 | esac |
|
|
820 | |
| 633 | emake || die "emake failed" |
821 | emake || die "emake failed" |
| 634 | |
822 | |
| 635 | mysql_version_is_at_least "5.1.1" && useq "pbxt" && pbxt_src_compile |
823 | pbxt_applicable && pbxt_src_compile |
| 636 | } |
824 | } |
| 637 | |
825 | |
|
|
826 | # @FUNCTION: mysql_src_install |
|
|
827 | # @DESCRIPTION: |
|
|
828 | # Install mysql. |
| 638 | mysql_src_install() { |
829 | mysql_src_install() { |
| 639 | # Make sure the vars are correctly initialized |
830 | # Make sure the vars are correctly initialized |
| 640 | mysql_init_vars |
831 | mysql_init_vars |
| 641 | |
832 | |
| 642 | emake install DESTDIR="${D}" benchdir_root="${MY_SHAREDSTATEDIR}" || die |
833 | emake install \ |
|
|
834 | DESTDIR="${D}" \ |
|
|
835 | benchdir_root="${MY_SHAREDSTATEDIR}" \ |
|
|
836 | testroot="${MY_SHAREDSTATEDIR}" \ |
|
|
837 | || die "emake install failed" |
| 643 | |
838 | |
| 644 | mysql_version_is_at_least "5.1.12" && useq "pbxt" && pbxt_src_install |
839 | pbxt_applicable && pbxt_src_install |
| 645 | |
|
|
| 646 | insinto "${MY_INCLUDEDIR}" |
|
|
| 647 | doins "${MY_INCLUDEDIR}"/my_{config,dir}.h |
|
|
| 648 | |
840 | |
| 649 | # Convenience links |
841 | # Convenience links |
|
|
842 | einfo "Making Convenience links for mysqlcheck multi-call binary" |
| 650 | dosym "/usr/bin/mysqlcheck${MY_SUFFIX}" "/usr/bin/mysqlanalyze${MY_SUFFIX}" |
843 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlanalyze" |
| 651 | dosym "/usr/bin/mysqlcheck${MY_SUFFIX}" "/usr/bin/mysqlrepair${MY_SUFFIX}" |
844 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlrepair" |
| 652 | dosym "/usr/bin/mysqlcheck${MY_SUFFIX}" "/usr/bin/mysqloptimize${MY_SUFFIX}" |
845 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqloptimize" |
| 653 | |
846 | |
| 654 | # Various junk (my-*.cnf moved elsewhere) |
847 | # Various junk (my-*.cnf moved elsewhere) |
|
|
848 | einfo "Removing duplicate /usr/share/mysql files" |
| 655 | rm -Rf "${D}/usr/share/info" |
849 | rm -Rf "${D}/usr/share/info" |
| 656 | for removeme in "mysql-log-rotate" mysql.server* \ |
850 | for removeme in "mysql-log-rotate" mysql.server* \ |
| 657 | binary-configure* my-*.cnf mi_test_all* |
851 | binary-configure* my-*.cnf mi_test_all* |
| 658 | do |
852 | do |
| 659 | rm -f "${D}"/usr/share/mysql/${removeme} |
853 | rm -f "${D}"/${MY_SHAREDSTATEDIR}/${removeme} |
| 660 | done |
854 | done |
| 661 | |
855 | |
| 662 | # TODO change at Makefile-am level |
|
|
| 663 | if [[ ${PN} == "mysql-slotted" ]] ; then |
|
|
| 664 | for moveme in "mysql_fix_privilege_tables.sql" \ |
|
|
| 665 | "fill_help_tables.sql" "ndb-config-2-node.ini" |
|
|
| 666 | do |
|
|
| 667 | mv -f "${D}/usr/share/mysql/${moveme}" "${D}/usr/share/mysql${MY_SUFFIX}/" 2>/dev/null |
|
|
| 668 | done |
|
|
| 669 | fi |
|
|
| 670 | |
|
|
| 671 | # clean up stuff for a minimal build |
856 | # Clean up stuff for a minimal build |
| 672 | if useq "minimal" ; then |
857 | if use minimal ; then |
|
|
858 | einfo "Remove all extra content for minimal build" |
| 673 | rm -Rf "${D}${MY_SHAREDSTATEDIR}"/{mysql-test,sql-bench} |
859 | rm -Rf "${D}${MY_SHAREDSTATEDIR}"/{mysql-test,sql-bench} |
| 674 | 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} |
860 | rm -f "${D}"/usr/bin/{mysql{_install_db,manager*,_secure_installation,_fix_privilege_tables,hotcopy,_convert_table_format,d_multi,_fix_extensions,_zap,_explain_log,_tableinfo,d_safe,_install,_waitpid,binlog,test},myisam*,isam*,pack_isam} |
| 675 | rm -f "${D}/usr/sbin/mysqld" |
861 | rm -f "${D}/usr/sbin/mysqld" |
| 676 | rm -f "${D}${MY_LIBDIR}"/lib{heap,merge,nisam,my{sys,strings,sqld,isammrg,isam},vio,dbug}.a |
862 | rm -f "${D}${MY_LIBDIR}"/lib{heap,merge,nisam,my{sys,strings,sqld,isammrg,isam},vio,dbug}.a |
| 677 | fi |
863 | fi |
| 678 | |
864 | |
| 679 | if [[ ${PN} == "mysql-slotted" ]] ; then |
865 | # Unless they explicitly specific USE=test, then do not install the |
| 680 | local notcatched=$(ls "${D}/usr/share/mysql"/*) |
866 | # testsuite. It DOES have a use to be installed, esp. when you want to do a |
| 681 | if [[ -n "${notcatched}" ]] ; then |
867 | # validation of your database configuration after tuning it. |
| 682 | ewarn "QA notice" |
868 | if use !test ; then |
| 683 | ewarn "${notcatched} files in /usr/share/mysql" |
869 | rm -rf "${D}"/${MY_SHAREDSTATEDIR}/mysql-test |
| 684 | ewarn "bug mysql-herd to manage them" |
|
|
| 685 | fi |
|
|
| 686 | rm -Rf "${D}/usr/share/mysql" |
|
|
| 687 | fi |
870 | fi |
| 688 | |
871 | |
| 689 | # Configuration stuff |
872 | # Configuration stuff |
| 690 | if mysql_version_is_at_least "4.1" ; then |
873 | if mysql_version_is_at_least "4.1" ; then |
| 691 | mysql_mycnf_version="4.1" |
874 | mysql_mycnf_version="4.1" |
| 692 | else |
875 | else |
| 693 | mysql_mycnf_version="4.0" |
876 | mysql_mycnf_version="4.0" |
| 694 | fi |
877 | fi |
|
|
878 | einfo "Building default my.cnf" |
| 695 | insinto "${MY_SYSCONFDIR}" |
879 | insinto "${MY_SYSCONFDIR}" |
| 696 | doins scripts/mysqlaccess.conf |
880 | doins scripts/mysqlaccess.conf |
| 697 | sed -e "s!@MY_SUFFIX@!${MY_SUFFIX}!g" \ |
|
|
| 698 | -e "s!@DATADIR@!${DATADIR}!g" \ |
881 | sed -e "s!@DATADIR@!${MY_DATADIR}!g" \ |
| 699 | "${FILESDIR}/my.cnf-${mysql_mycnf_version}" \ |
882 | "${FILESDIR}/my.cnf-${mysql_mycnf_version}" \ |
| 700 | > "${TMPDIR}/my.cnf.ok" |
883 | > "${TMPDIR}/my.cnf.ok" |
| 701 | if mysql_version_is_at_least "4.1" && useq "latin1" ; then |
884 | if mysql_version_is_at_least "4.1" && use latin1 ; then |
| 702 | sed -e "s|utf8|latin1|g" -i "${TMPDIR}/my.cnf.ok" |
885 | sed -e "s|utf8|latin1|g" -i "${TMPDIR}/my.cnf.ok" |
| 703 | fi |
886 | fi |
| 704 | newins "${TMPDIR}/my.cnf.ok" my.cnf |
887 | newins "${TMPDIR}/my.cnf.ok" my.cnf |
| 705 | |
888 | |
| 706 | # Minimal builds don't have the MySQL server |
889 | # Minimal builds don't have the MySQL server |
| 707 | if ! useq "minimal" ; then |
890 | if ! use minimal ; then |
|
|
891 | einfo "Creating initial directories" |
| 708 | # Empty directories ... |
892 | # Empty directories ... |
| 709 | diropts "-m0750" |
893 | diropts "-m0750" |
| 710 | if [[ "${PREVIOUS_DATADIR}" != "yes" ]] ; then |
894 | if [[ "${PREVIOUS_DATADIR}" != "yes" ]] ; then |
| 711 | dodir "${DATADIR}" |
895 | dodir "${MY_DATADIR}" |
| 712 | keepdir "${DATADIR}" |
896 | keepdir "${MY_DATADIR}" |
| 713 | chown -R mysql:mysql "${D}/${DATADIR}" |
897 | chown -R mysql:mysql "${D}/${MY_DATADIR}" |
| 714 | fi |
898 | fi |
| 715 | |
899 | |
| 716 | diropts "-m0755" |
900 | diropts "-m0755" |
| 717 | for folder in "${MY_LOGDIR}" "/var/run/mysqld" ; do |
901 | for folder in "${MY_LOGDIR}" "/var/run/mysqld" ; do |
| 718 | dodir "${folder}" |
902 | dodir "${folder}" |
| … | |
… | |
| 720 | chown -R mysql:mysql "${D}/${folder}" |
904 | chown -R mysql:mysql "${D}/${folder}" |
| 721 | done |
905 | done |
| 722 | fi |
906 | fi |
| 723 | |
907 | |
| 724 | # Docs |
908 | # Docs |
|
|
909 | einfo "Installing docs" |
| 725 | dodoc README COPYING ChangeLog EXCEPTIONS-CLIENT INSTALL-SOURCE |
910 | dodoc README ChangeLog EXCEPTIONS-CLIENT INSTALL-SOURCE |
|
|
911 | doinfo "${S}"/Docs/mysql.info |
| 726 | |
912 | |
| 727 | # Minimal builds don't have the MySQL server |
913 | # Minimal builds don't have the MySQL server |
| 728 | if ! useq "minimal" ; then |
914 | if ! use minimal ; then |
|
|
915 | einfo "Including support files and sample configurations" |
|
|
916 | docinto "support-files" |
|
|
917 | for script in \ |
|
|
918 | "${S}"/support-files/my-*.cnf \ |
|
|
919 | "${S}"/support-files/magic \ |
|
|
920 | "${S}"/support-files/ndb-config-2-node.ini |
|
|
921 | do |
|
|
922 | [[ -f "$script" ]] && dodoc "${script}" |
|
|
923 | done |
|
|
924 | |
|
|
925 | docinto "scripts" |
|
|
926 | for script in "${S}"/scripts/mysql* ; do |
|
|
927 | [[ -f "$script" ]] && [[ "${script%.sh}" == "${script}" ]] && dodoc "${script}" |
|
|
928 | done |
|
|
929 | |
|
|
930 | fi |
|
|
931 | |
|
|
932 | mysql_lib_symlinks "${D}" |
|
|
933 | } |
|
|
934 | |
|
|
935 | # @FUNCTION: mysql_pkg_preinst |
|
|
936 | # @DESCRIPTION: |
|
|
937 | # Create the user and groups for mysql - die if that fails. |
|
|
938 | mysql_pkg_preinst() { |
|
|
939 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
|
|
940 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
|
|
941 | } |
|
|
942 | |
|
|
943 | # @FUNCTION: mysql_pkg_postinst |
|
|
944 | # @DESCRIPTION: |
|
|
945 | # Run post-installation tasks: |
|
|
946 | # create the dir for logfiles if non-existant |
|
|
947 | # touch the logfiles and secure them |
|
|
948 | # install scripts |
|
|
949 | # issue required steps for optional features |
|
|
950 | # issue deprecation warnings |
|
|
951 | mysql_pkg_postinst() { |
|
|
952 | # Make sure the vars are correctly initialized |
|
|
953 | mysql_init_vars |
|
|
954 | |
|
|
955 | # Check FEATURES="collision-protect" before removing this |
|
|
956 | [[ -d "${ROOT}/var/log/mysql" ]] || install -d -m0750 -o mysql -g mysql "${ROOT}${MY_LOGDIR}" |
|
|
957 | |
|
|
958 | # Secure the logfiles |
|
|
959 | touch "${ROOT}${MY_LOGDIR}"/mysql.{log,err} |
|
|
960 | chown mysql:mysql "${ROOT}${MY_LOGDIR}"/mysql* |
|
|
961 | chmod 0660 "${ROOT}${MY_LOGDIR}"/mysql* |
|
|
962 | |
|
|
963 | # Minimal builds don't have the MySQL server |
|
|
964 | if ! use minimal ; then |
| 729 | docinto "support-files" |
965 | docinto "support-files" |
| 730 | for script in \ |
966 | for script in \ |
| 731 | support-files/my-*.cnf \ |
967 | support-files/my-*.cnf \ |
| 732 | support-files/magic \ |
968 | support-files/magic \ |
| 733 | support-files/ndb-config-2-node.ini |
969 | support-files/ndb-config-2-node.ini |
| … | |
… | |
| 737 | |
973 | |
| 738 | docinto "scripts" |
974 | docinto "scripts" |
| 739 | for script in scripts/mysql* ; do |
975 | for script in scripts/mysql* ; do |
| 740 | [[ "${script%.sh}" == "${script}" ]] && dodoc "${script}" |
976 | [[ "${script%.sh}" == "${script}" ]] && dodoc "${script}" |
| 741 | done |
977 | done |
| 742 | fi |
|
|
| 743 | |
978 | |
| 744 | if [[ ${PN} == "mysql-slotted" ]] ; then |
979 | einfo |
| 745 | # MOVED HERE DUE TO BUG #121445 |
980 | elog "You might want to run:" |
| 746 | # create a list of files, to be used |
981 | elog "\"emerge --config =${CATEGORY}/${PF}\"" |
| 747 | # by external utilities |
982 | elog "if this is a new install." |
| 748 | mkdir -p "${D}/var/lib/eselect/mysql/" |
983 | einfo |
| 749 | local filelist="${D}/var/lib/eselect/mysql/mysql${MY_SUFFIX}.filelist" |
|
|
| 750 | pushd "${D}/" &>/dev/null |
|
|
| 751 | find usr/bin/ usr/sbin/ \ |
|
|
| 752 | -type f -name "*${MY_SUFFIX}*" \ |
|
|
| 753 | -and -not -name "mysql_config${MY_SUFFIX}" \ |
|
|
| 754 | > "${filelist}" |
|
|
| 755 | find usr/share/man \ |
|
|
| 756 | -type f -name "*${MY_SUFFIX}*" \ |
|
|
| 757 | | sed -e 's/$/.gz/' \ |
|
|
| 758 | >> "${filelist}" |
|
|
| 759 | echo "${MY_SYSCONFDIR#"/"}" >> "${filelist}" |
|
|
| 760 | echo "${MY_LIBDIR#"/"}" >> "${filelist}" |
|
|
| 761 | echo "${MY_SHAREDSTATEDIR#"/"}" >> "${filelist}" |
|
|
| 762 | popd &>/dev/null |
|
|
| 763 | fi |
984 | fi |
| 764 | |
985 | |
| 765 | mysql_lib_symlinks "${D}" |
986 | if pbxt_applicable ; then |
| 766 | } |
987 | # TODO: explain it better |
|
|
988 | elog " mysql> INSTALL PLUGIN pbxt SONAME 'libpbxt.so';" |
|
|
989 | elog " mysql> CREATE TABLE t1 (c1 int, c2 text) ENGINE=pbxt;" |
|
|
990 | elog "if, after that, you cannot start the MySQL server," |
|
|
991 | elog "remove the ${MY_DATADIR}/mysql/plugin.* files, then" |
|
|
992 | elog "use the MySQL upgrade script to restore the table" |
|
|
993 | elog "or execute the following SQL command:" |
|
|
994 | elog " CREATE TABLE IF NOT EXISTS plugin (" |
|
|
995 | elog " name char(64) binary DEFAULT '' NOT NULL," |
|
|
996 | elog " dl char(128) DEFAULT '' NOT NULL," |
|
|
997 | elog " PRIMARY KEY (name)" |
|
|
998 | elog " ) CHARACTER SET utf8 COLLATE utf8_bin;" |
|
|
999 | fi |
| 767 | |
1000 | |
| 768 | mysql_pkg_preinst() { |
1001 | mysql_check_version_range "4.0 to 5.0.99.99" \ |
| 769 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
1002 | && use berkdb \ |
| 770 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
1003 | && elog "Berkeley DB support is deprecated and will be removed in future versions!" |
| 771 | } |
1004 | } |
| 772 | |
1005 | |
|
|
1006 | # @FUNCTION: mysql_pkg_config |
|
|
1007 | # @DESCRIPTION: |
|
|
1008 | # Configure mysql environment. |
| 773 | mysql_pkg_postinst() { |
1009 | mysql_pkg_config() { |
|
|
1010 | local old_MY_DATADIR="${MY_DATADIR}" |
|
|
1011 | |
| 774 | # Make sure the vars are correctly initialized |
1012 | # Make sure the vars are correctly initialized |
| 775 | mysql_init_vars |
1013 | mysql_init_vars |
| 776 | |
1014 | |
| 777 | # Check FEATURES="collision-protect" before removing this |
|
|
| 778 | [[ -d "${ROOT}/var/log/mysql" ]] \ |
|
|
| 779 | || install -d -m0750 -o mysql -g mysql "${ROOT}${MY_LOGDIR}" |
|
|
| 780 | |
|
|
| 781 | # Secure the logfiles |
|
|
| 782 | touch "${ROOT}${MY_LOGDIR}"/mysql.{log,err} |
|
|
| 783 | chown mysql:mysql "${ROOT}${MY_LOGDIR}"/mysql* |
|
|
| 784 | chmod 0660 "${ROOT}${MY_LOGDIR}"/mysql* |
|
|
| 785 | |
|
|
| 786 | # Minimal builds don't have the MySQL server |
|
|
| 787 | if ! useq "minimal" ; then |
|
|
| 788 | docinto "support-files" |
|
|
| 789 | for script in \ |
|
|
| 790 | support-files/my-*.cnf \ |
|
|
| 791 | support-files/magic \ |
|
|
| 792 | support-files/ndb-config-2-node.ini |
|
|
| 793 | do |
|
|
| 794 | dodoc "${script}" |
|
|
| 795 | done |
|
|
| 796 | |
|
|
| 797 | docinto "scripts" |
|
|
| 798 | for script in scripts/mysql* ; do |
|
|
| 799 | [[ "${script%.sh}" == "${script}" ]] && dodoc "${script}" |
|
|
| 800 | done |
|
|
| 801 | fi |
|
|
| 802 | |
|
|
| 803 | #einfo "you may want to read slotting upgrade documents in the overlay" |
|
|
| 804 | if useq "pbxt" && mysql_version_is_at_least "5.1" ; then |
|
|
| 805 | # TODO tell it better ;-) |
|
|
| 806 | elog "mysql> INSTALL PLUGIN pbxt SONAME 'libpbxt.so';" |
|
|
| 807 | elog "CREATE TABLE t1 (c1 int, c2 text) ENGINE=pbxt;" |
|
|
| 808 | elog "if, after that you cannot start the mysql server" |
|
|
| 809 | elog "remove the ${MY_DATADIR}/mysql/plugin.* files, then" |
|
|
| 810 | elog "use the mysql upgrade script to restore the table" |
|
|
| 811 | elog " or " |
|
|
| 812 | elog "CREATE TABLE IF NOT EXISTS plugin (" |
|
|
| 813 | elog " name char(64) binary DEFAULT '' NOT NULL," |
|
|
| 814 | elog " dl char(128) DEFAULT '' NOT NULL," |
|
|
| 815 | elog " PRIMARY KEY (name)" |
|
|
| 816 | elog ") CHARACTER SET utf8 COLLATE utf8_bin;" |
|
|
| 817 | fi |
|
|
| 818 | mysql_check_version_range "4.0 to 5.0.99.99" \ |
|
|
| 819 | && useq "berkdb" \ |
|
|
| 820 | && elog "Berkeley DB support is deprecated and will be removed in future versions!" |
|
|
| 821 | } |
|
|
| 822 | |
|
|
| 823 | mysql_pkg_config() { |
|
|
| 824 | # Make sure the vars are correctly initialized |
|
|
| 825 | mysql_init_vars |
|
|
| 826 | |
|
|
| 827 | [[ -z "${DATADIR}" ]] && die "Sorry, unable to find DATADIR" |
1015 | [[ -z "${MY_DATADIR}" ]] && die "Sorry, unable to find MY_DATADIR" |
| 828 | |
1016 | |
| 829 | if built_with_use ${CATEGORY}/${PN} minimal ; then |
1017 | if built_with_use ${CATEGORY}/${PN} minimal ; then |
| 830 | die "Minimal builds do NOT include the MySQL server" |
1018 | die "Minimal builds do NOT include the MySQL server" |
|
|
1019 | fi |
|
|
1020 | |
|
|
1021 | if [[ ( -n "${MY_DATADIR}" ) && ( "${MY_DATADIR}" != "${old_MY_DATADIR}" ) ]]; then |
|
|
1022 | local MY_DATADIR_s="$(strip_duplicate_slashes ${ROOT}/${MY_DATADIR})" |
|
|
1023 | local old_MY_DATADIR_s="$(strip_duplicate_slashes ${ROOT}/${old_MY_DATADIR})" |
|
|
1024 | |
|
|
1025 | if [[ -d "${old_MY_DATADIR_s}" ]]; then |
|
|
1026 | if [[ -d "${MY_DATADIR_s}" ]]; then |
|
|
1027 | ewarn "Both ${old_MY_DATADIR_s} and ${MY_DATADIR_s} exist" |
|
|
1028 | ewarn "Attempting to use ${MY_DATADIR_s} and preserving ${old_MY_DATADIR_s}" |
|
|
1029 | else |
|
|
1030 | elog "Moving MY_DATADIR from ${old_MY_DATADIR_s} to ${MY_DATADIR_s}" |
|
|
1031 | mv --strip-trailing-slashes -T "${old_MY_DATADIR_s}" "${MY_DATADIR_s}" \ |
|
|
1032 | || die "Moving MY_DATADIR failed" |
|
|
1033 | fi |
|
|
1034 | else |
|
|
1035 | ewarn "Previous MY_DATADIR (${old_MY_DATADIR_s}) does not exist" |
|
|
1036 | if [[ -d "${MY_DATADIR_s}" ]]; then |
|
|
1037 | ewarn "Attempting to use ${MY_DATADIR_s}" |
|
|
1038 | else |
|
|
1039 | eerror "New MY_DATADIR (${MY_DATADIR_s}) does not exist" |
|
|
1040 | die "Configuration Failed! Please reinstall ${CATEGORY}/${PN}" |
|
|
1041 | fi |
|
|
1042 | fi |
| 831 | fi |
1043 | fi |
| 832 | |
1044 | |
| 833 | local pwd1="a" |
1045 | local pwd1="a" |
| 834 | local pwd2="b" |
1046 | local pwd2="b" |
| 835 | local maxtry=5 |
1047 | local maxtry=5 |
| 836 | |
1048 | |
| 837 | if [[ -d "${ROOT}/${DATADIR}/mysql" ]] ; then |
1049 | if [[ -d "${ROOT}/${MY_DATADIR}/mysql" ]] ; then |
| 838 | ewarn "You have already a MySQL database in place." |
1050 | ewarn "You have already a MySQL database in place." |
| 839 | ewarn "(${ROOT}/${DATADIR}/*)" |
1051 | ewarn "(${ROOT}/${MY_DATADIR}/*)" |
| 840 | ewarn "Please rename or delete it if you wish to replace it." |
1052 | ewarn "Please rename or delete it if you wish to replace it." |
| 841 | die "MySQL database already exists!" |
1053 | die "MySQL database already exists!" |
| 842 | fi |
1054 | fi |
|
|
1055 | |
|
|
1056 | # Bug #213475 - MySQL _will_ object strenously if your machine is named |
|
|
1057 | # localhost. Also causes weird failures. |
|
|
1058 | [[ "${HOSTNAME}" == "localhost" ]] && die "Your machine must NOT be named localhost" |
| 843 | |
1059 | |
| 844 | einfo "Creating the mysql database and setting proper" |
1060 | einfo "Creating the mysql database and setting proper" |
| 845 | einfo "permissions on it ..." |
1061 | einfo "permissions on it ..." |
| 846 | |
1062 | |
| 847 | einfo "Insert a password for the mysql 'root' user" |
1063 | einfo "Insert a password for the mysql 'root' user" |
| … | |
… | |
| 863 | && cp "${help_tables}" "${TMPDIR}/fill_help_tables.sql" \ |
1079 | && cp "${help_tables}" "${TMPDIR}/fill_help_tables.sql" \ |
| 864 | || touch "${TMPDIR}/fill_help_tables.sql" |
1080 | || touch "${TMPDIR}/fill_help_tables.sql" |
| 865 | help_tables="${TMPDIR}/fill_help_tables.sql" |
1081 | help_tables="${TMPDIR}/fill_help_tables.sql" |
| 866 | |
1082 | |
| 867 | pushd "${TMPDIR}" &>/dev/null |
1083 | pushd "${TMPDIR}" &>/dev/null |
| 868 | "${ROOT}/usr/bin/mysql_install_db" | grep -B5 -A999 -i "ERROR" |
1084 | "${ROOT}/usr/bin/mysql_install_db" >"${TMPDIR}"/mysql_install_db.log 2>&1 |
|
|
1085 | if [ $? -ne 0 ]; then |
|
|
1086 | grep -B5 -A999 -i "ERROR" "${TMPDIR}"/mysql_install_db.log 1>&2 |
|
|
1087 | die "Failed to run mysql_install_db. Please review /var/log/mysql/mysqld.err AND ${TMPDIR}/mysql_install_db.log" |
|
|
1088 | fi |
| 869 | popd &>/dev/null |
1089 | popd &>/dev/null |
| 870 | [[ -f "${ROOT}/${DATADIR}/mysql/user.frm" ]] \ |
1090 | [[ -f "${ROOT}/${MY_DATADIR}/mysql/user.frm" ]] \ |
| 871 | || die "MySQL databases not installed" |
1091 | || die "MySQL databases not installed" |
| 872 | chown -R mysql:mysql "${ROOT}/${DATADIR}" 2> /dev/null |
1092 | chown -R mysql:mysql "${ROOT}/${MY_DATADIR}" 2>/dev/null |
| 873 | chmod 0750 "${ROOT}/${DATADIR}" 2> /dev/null |
1093 | chmod 0750 "${ROOT}/${MY_DATADIR}" 2>/dev/null |
| 874 | |
1094 | |
| 875 | if mysql_version_is_at_least "4.1.3" ; then |
1095 | if mysql_version_is_at_least "4.1.3" ; then |
| 876 | options="--skip-ndbcluster" |
1096 | options="--skip-ndbcluster" |
| 877 | |
1097 | |
| 878 | # Filling timezones, see |
1098 | # Filling timezones, see |
| … | |
… | |
| 889 | local mysqld="${ROOT}/usr/sbin/mysqld \ |
1109 | local mysqld="${ROOT}/usr/sbin/mysqld \ |
| 890 | ${options} \ |
1110 | ${options} \ |
| 891 | --user=mysql \ |
1111 | --user=mysql \ |
| 892 | --skip-grant-tables \ |
1112 | --skip-grant-tables \ |
| 893 | --basedir=${ROOT}/usr \ |
1113 | --basedir=${ROOT}/usr \ |
| 894 | --datadir=${ROOT}/${DATADIR} \ |
1114 | --datadir=${ROOT}/${MY_DATADIR} \ |
| 895 | --skip-innodb \ |
1115 | --skip-innodb \ |
| 896 | --skip-bdb \ |
1116 | --skip-bdb \ |
| 897 | --skip-networking \ |
1117 | --skip-networking \ |
| 898 | --max_allowed_packet=8M \ |
1118 | --max_allowed_packet=8M \ |
| 899 | --net_buffer_length=16K \ |
1119 | --net_buffer_length=16K \ |
| … | |
… | |
| 928 | einfo "Stopping the server ..." |
1148 | einfo "Stopping the server ..." |
| 929 | wait %1 |
1149 | wait %1 |
| 930 | einfo "Done" |
1150 | einfo "Done" |
| 931 | } |
1151 | } |
| 932 | |
1152 | |
|
|
1153 | # @FUNCTION: mysql_pkg_postrm |
|
|
1154 | # @DESCRIPTION: |
|
|
1155 | # Remove mysql symlinks. |
| 933 | mysql_pkg_postrm() { |
1156 | mysql_pkg_postrm() { |
| 934 | if [[ ${PN} == "mysql-slotted" ]] ; then |
|
|
| 935 | mysql_lib_symlinks |
1157 | : # mysql_lib_symlinks "${D}" |
| 936 | mysql_clients_link_to_best_version |
|
|
| 937 | fi |
|
|
| 938 | } |
1158 | } |