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