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