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