| 1 | # Copyright 1999-2006 Gentoo Foundation |
1 | # Copyright 1999-2012 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.32 2006/05/31 20:45:49 chtekk Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/mysql.eclass,v 1.172 2012/07/23 10:57:15 jmbsvicetto Exp $ |
| 4 | |
4 | |
| 5 | # Author: Francesco Riosa <vivo@gentoo.org> |
5 | # @ECLASS: mysql.eclass |
|
|
6 | # @MAINTAINER: |
|
|
7 | # MySQL Team <mysql-bugs@gentoo.org> |
| 6 | # Maintainer: Luca Longinotti <chtekk@gentoo.org> |
8 | # Luca Longinotti <chtekk@gentoo.org> |
|
|
9 | # Robin H. Johnson <robbat2@gentoo.org> |
|
|
10 | # @AUTHOR: |
|
|
11 | # Francesco Riosa (Retired) <vivo@gentoo.org> |
|
|
12 | # @BLURB: This eclass provides most of the functions for mysql ebuilds |
|
|
13 | # @DESCRIPTION: |
|
|
14 | # The mysql.eclass provides almost all the code to build the mysql ebuilds |
|
|
15 | # including the src_unpack, src_prepare, src_configure, src_compile, |
|
|
16 | # scr_install, pkg_preinst, pkg_postinst, pkg_config and pkg_postrm |
|
|
17 | # phase hooks. |
| 7 | |
18 | |
| 8 | # Both MYSQL_VERSION_ID and MYSQL_PATCHSET_REV must be set in the ebuild too |
19 | WANT_AUTOCONF="latest" |
| 9 | # Note that MYSQL_VERSION_ID must be empty !!! |
20 | WANT_AUTOMAKE="latest" |
| 10 | |
21 | |
|
|
22 | inherit eutils flag-o-matic gnuconfig autotools multilib 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-2 |
|
|
33 | fi |
|
|
34 | |
|
|
35 | case "${EAPI:-0}" in |
|
|
36 | 2 | 3 | 4) |
|
|
37 | EXPORT_FUNCTIONS pkg_setup \ |
|
|
38 | src_unpack src_prepare \ |
|
|
39 | src_configure src_compile \ |
|
|
40 | src_install \ |
|
|
41 | pkg_preinst pkg_postinst \ |
|
|
42 | pkg_config pkg_postrm |
|
|
43 | IUSE_DEFAULT_ON='+' |
|
|
44 | ;; |
|
|
45 | 0 | 1) |
|
|
46 | EXPORT_FUNCTIONS pkg_setup \ |
|
|
47 | src_unpack \ |
|
|
48 | src_compile \ |
|
|
49 | src_install \ |
|
|
50 | pkg_preinst pkg_postinst \ |
|
|
51 | pkg_config pkg_postrm |
|
|
52 | ;; |
|
|
53 | *) |
|
|
54 | die "Unsupported EAPI: ${EAPI}" ;; |
|
|
55 | esac |
|
|
56 | |
|
|
57 | |
|
|
58 | # @ECLASS-VARIABLE: MYSQL_PV_MAJOR |
|
|
59 | # @DESCRIPTION: |
|
|
60 | # Upstream MySQL considers the first two parts of the version number to be the |
|
|
61 | # major version. Upgrades that change major version should always run |
|
|
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 |
|
|
70 | fi |
|
|
71 | |
|
|
72 | |
|
|
73 | # @ECLASS-VARIABLE: MYSQL_VERSION_ID |
|
|
74 | # @DESCRIPTION: |
| 11 | # MYSQL_VERSION_ID will be: |
75 | # MYSQL_VERSION_ID will be: |
| 12 | # 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] |
| 13 | # This is an important part, because many of the choices the MySQL ebuild will do |
77 | # This is an important part, because many of the choices the MySQL ebuild will do |
| 14 | # depend on this variable. |
78 | # depend on this variable. |
| 15 | # In particular, the code below transforms a $PVR like "5.0.18-r3" in "5001803" |
79 | # In particular, the code below transforms a $PVR like "5.0.18-r3" in "5001803" |
|
|
80 | # We also strip off upstream's trailing letter that they use to respin tarballs |
| 16 | |
81 | |
| 17 | if [[ -z "${MYSQL_VERSION_ID}" ]] ; then |
82 | MYSQL_VERSION_ID="" |
|
|
83 | tpv="${PV%[a-z]}" |
| 18 | tpv=( ${PV//[-._]/ } ) ; tpv[3]="${PVR:${#PV}}" ; tpv[3]="${tpv[3]##*-r}" |
84 | tpv=( ${tpv//[-._]/ } ) ; tpv[3]="${PVR:${#PV}}" ; tpv[3]="${tpv[3]##*-r}" |
| 19 | for vatom in 0 1 2 3 ; do |
85 | for vatom in 0 1 2 3 ; do |
| 20 | # pad to length 2 |
86 | # pad to length 2 |
| 21 | tpv[${vatom}]="00${tpv[${vatom}]}" |
87 | tpv[${vatom}]="00${tpv[${vatom}]}" |
| 22 | MYSQL_VERSION_ID="${MYSQL_VERSION_ID}${tpv[${vatom}]:0-2}" |
88 | MYSQL_VERSION_ID="${MYSQL_VERSION_ID}${tpv[${vatom}]:0-2}" |
| 23 | done |
89 | done |
| 24 | # strip leading "0" (otherwise it's considered an octal number by BASH) |
90 | # strip leading "0" (otherwise it's considered an octal number by BASH) |
| 25 | MYSQL_VERSION_ID=${MYSQL_VERSION_ID##"0"} |
91 | MYSQL_VERSION_ID=${MYSQL_VERSION_ID##"0"} |
|
|
92 | |
|
|
93 | # @ECLASS-VARIABLE: MYSQL_COMMUNITY_FEATURES |
|
|
94 | # @DESCRIPTION: |
|
|
95 | # Specifiy if community features are available. Possible values are 1 (yes) |
|
|
96 | # and 0 (no). |
|
|
97 | # Community features are available in mysql-community |
|
|
98 | # AND in the re-merged mysql-5.0.82 and newer |
|
|
99 | if [ "${PN}" == "mysql-community" -o "${PN}" == "mariadb" ]; then |
|
|
100 | MYSQL_COMMUNITY_FEATURES=1 |
|
|
101 | elif [ "${PV#5.0}" != "${PV}" ] && mysql_version_is_at_least "5.0.82"; then |
|
|
102 | MYSQL_COMMUNITY_FEATURES=1 |
|
|
103 | elif [ "${PV#5.1}" != "${PV}" ] && mysql_version_is_at_least "5.1.28"; then |
|
|
104 | MYSQL_COMMUNITY_FEATURES=1 |
|
|
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 |
|
|
112 | MYSQL_COMMUNITY_FEATURES=1 |
|
|
113 | else |
|
|
114 | MYSQL_COMMUNITY_FEATURES=0 |
| 26 | fi |
115 | fi |
| 27 | |
116 | |
|
|
117 | # @ECLASS-VARIABLE: XTRADB_VER |
|
|
118 | # @DESCRIPTION: |
|
|
119 | # Version of the XTRADB storage engine |
|
|
120 | XTRADB_VER="${XTRADB_VER}" |
|
|
121 | |
|
|
122 | # @ECLASS-VARIABLE: PERCONA_VER |
|
|
123 | # @DESCRIPTION: |
|
|
124 | # Designation by PERCONA for a MySQL version to apply an XTRADB release |
|
|
125 | PERCONA_VER="${PERCONA_VER}" |
|
|
126 | |
|
|
127 | # Be warned, *DEPEND are version-dependant |
|
|
128 | # These are used for both runtime and compiletime |
|
|
129 | DEPEND="ssl? ( >=dev-libs/openssl-0.9.6d ) |
|
|
130 | kernel_linux? ( sys-process/procps ) |
|
|
131 | >=sys-apps/sed-4 |
|
|
132 | >=sys-apps/texinfo-4.7-r1 |
|
|
133 | >=sys-libs/readline-4.1 |
|
|
134 | >=sys-libs/zlib-1.2.3" |
|
|
135 | |
|
|
136 | [[ "${PN}" == "mariadb" ]] \ |
|
|
137 | && DEPEND="${DEPEND} libevent? ( >=dev-libs/libevent-1.4 )" |
|
|
138 | |
|
|
139 | # Having different flavours at the same time is not a good idea |
|
|
140 | for i in "mysql" "mysql-community" "mysql-cluster" "mariadb" ; do |
|
|
141 | [[ "${i}" == ${PN} ]] || |
|
|
142 | DEPEND="${DEPEND} !dev-db/${i}" |
|
|
143 | done |
|
|
144 | |
|
|
145 | # prefix: first need to implement something for #196294 |
|
|
146 | RDEPEND="${DEPEND} |
|
|
147 | !minimal? ( !prefix? ( dev-db/mysql-init-scripts ) ) |
|
|
148 | selinux? ( sec-policy/selinux-mysql )" |
|
|
149 | |
| 28 | DEPEND="${DEPEND} |
150 | DEPEND="${DEPEND} |
| 29 | >=sys-libs/readline-4.1 |
151 | virtual/yacc" |
| 30 | berkdb? ( sys-apps/ed ) |
|
|
| 31 | ssl? ( >=dev-libs/openssl-0.9.6d ) |
|
|
| 32 | userland_GNU? ( sys-process/procps ) |
|
|
| 33 | >=sys-libs/zlib-1.2.3 |
|
|
| 34 | >=sys-apps/texinfo-4.7-r1 |
|
|
| 35 | >=sys-apps/sed-4" |
|
|
| 36 | |
152 | |
| 37 | RDEPEND="${DEPEND} selinux? ( sec-policy/selinux-mysql )" |
153 | if [ "${EAPI:-0}" = "2" ]; then |
|
|
154 | DEPEND="${DEPEND} static? ( sys-libs/ncurses[static-libs] )" |
|
|
155 | fi |
|
|
156 | |
|
|
157 | # compile-time-only |
|
|
158 | mysql_version_is_at_least "5.1" \ |
|
|
159 | || DEPEND="${DEPEND} berkdb? ( sys-apps/ed )" |
|
|
160 | |
|
|
161 | # compile-time-only |
|
|
162 | mysql_version_is_at_least "5.1.12" \ |
|
|
163 | && DEPEND="${DEPEND} >=dev-util/cmake-2.4.3" |
|
|
164 | |
|
|
165 | [[ "${PN}" == "mariadb" ]] \ |
|
|
166 | && mysql_version_is_at_least "5.2" \ |
|
|
167 | && DEPEND="${DEPEND} oqgraph? ( >=dev-libs/boost-1.40.0 )" |
|
|
168 | #SphinxSE is included but is not available in 5.2.4 due to a missing plug.in file |
|
|
169 | # sphinx? ( app-misc/sphinx )" |
| 38 | |
170 | |
| 39 | # dev-perl/DBD-mysql is needed by some scripts installed by MySQL |
171 | # dev-perl/DBD-mysql is needed by some scripts installed by MySQL |
| 40 | PDEPEND="perl? ( >=dev-perl/DBD-mysql-2.9004 )" |
172 | PDEPEND="perl? ( >=dev-perl/DBD-mysql-2.9004 )" |
| 41 | |
173 | |
| 42 | inherit eutils flag-o-matic gnuconfig autotools mysql_fx |
174 | # For other stuff to bring us in |
|
|
175 | PDEPEND="${PDEPEND} =virtual/mysql-${MYSQL_PV_MAJOR}" |
| 43 | |
176 | |
| 44 | # Shorten the path because the socket path length must be shorter than 107 chars |
177 | # Work out the default SERVER_URI correctly |
| 45 | # and we will run a mysql server during test phase |
178 | if [ -z "${SERVER_URI}" ]; then |
| 46 | S="${WORKDIR}/${PN}" |
179 | [ -z "${MY_PV}" ] && MY_PV="${PV//_/-}" |
| 47 | |
180 | if [ "${PN}" == "mariadb" ]; then |
| 48 | # Define $MY_FIXED_PV for MySQL patchsets |
181 | MARIA_FULL_PV="$(replace_version_separator 3 '-' ${PV})" |
| 49 | MY_FIXED_PV="${PV/_alpha/}" |
182 | MARIA_FULL_P="${PN}-${MARIA_FULL_PV}" |
| 50 | MY_FIXED_PV="${MY_FIXED_PV/_beta/}" |
183 | SERVER_URI=" |
| 51 | MY_FIXED_PV="${MY_FIXED_PV/_rc/}" |
184 | http://ftp.osuosl.org/pub/mariadb/${MARIA_FULL_P}/kvm-tarbake-jaunty-x86/${MARIA_FULL_P}.tar.gz |
|
|
185 | http://ftp.rediris.es/mirror/MariaDB/${MARIA_FULL_P}/kvm-tarbake-jaunty-x86/${MARIA_FULL_P}.tar.gz |
|
|
186 | http://maria.llarian.net/download/${MARIA_FULL_P}/kvm-tarbake-jaunty-x86/${MARIA_FULL_P}.tar.gz |
|
|
187 | http://launchpad.net/maria/${MYSQL_PV_MAJOR}/ongoing/+download/${MARIA_FULL_P}.tar.gz |
|
|
188 | http://mirrors.fe.up.pt/pub/${PN}/${MARIA_FULL_P}/kvm-tarbake-jaunty-x86/${MARIA_FULL_P}.tar.gz |
|
|
189 | http://ftp-stud.hs-esslingen.de/pub/Mirrors/${PN}/${MARIA_FULL_P}/kvm-tarbake-jaunty-x86/${MARIA_FULL_P}.tar.gz |
|
|
190 | " |
|
|
191 | # The community and cluster builds are on the mirrors |
|
|
192 | elif [[ "${MYSQL_COMMUNITY_FEATURES}" == "1" || ${PN} == "mysql-cluster" ]] ; then |
|
|
193 | if [[ "${PN}" == "mysql-cluster" ]] ; then |
|
|
194 | URI_DIR="MySQL-Cluster" |
|
|
195 | URI_FILE="mysql-cluster-gpl" |
|
|
196 | else |
|
|
197 | URI_DIR="MySQL" |
|
|
198 | URI_FILE="mysql" |
|
|
199 | fi |
|
|
200 | URI_A="${URI_FILE}-${MY_PV}.tar.gz" |
|
|
201 | MIRROR_PV=$(get_version_component_range 1-2 ${PV}) |
|
|
202 | # Recently upstream switched to an archive site, and not on mirrors |
|
|
203 | SERVER_URI="http://downloads.mysql.com/archives/${URI_FILE}-${MIRROR_PV}/${URI_A} |
|
|
204 | mirror://mysql/Downloads/${URI_DIR}-${PV%.*}/${URI_A}" |
|
|
205 | # The (old) enterprise source is on the primary site only |
|
|
206 | elif [ "${PN}" == "mysql" ]; then |
|
|
207 | SERVER_URI="ftp://ftp.mysql.com/pub/mysql/src/mysql-${MY_PV}.tar.gz" |
|
|
208 | fi |
|
|
209 | fi |
| 52 | |
210 | |
| 53 | # Define correct SRC_URIs |
211 | # Define correct SRC_URIs |
| 54 | SRC_URI="mirror://mysql/Downloads/MySQL-${PV%.*}/${P/_/-}.tar.gz" |
212 | SRC_URI="${SERVER_URI}" |
| 55 | if [[ -n "${MYSQL_PATCHSET_REV}" ]] ; then |
213 | |
| 56 | MYSQL_PATCHSET_FILENAME="${PN}-patchset-${MY_FIXED_PV}-r${MYSQL_PATCHSET_REV}.tar.bz2" |
214 | # Gentoo patches to MySQL |
| 57 | # We add the Gentoo mirror here, as we only use primaryuri for the MySQL tarball |
215 | [[ ${MY_EXTRAS_VER} != live ]] \ |
| 58 | SRC_URI="${SRC_URI} mirror://gentoo/${MYSQL_PATCHSET_FILENAME} http://gentoo.longitekk.com/${MYSQL_PATCHSET_FILENAME}" |
216 | && SRC_URI="${SRC_URI} |
| 59 | fi |
217 | mirror://gentoo/mysql-extras-${MY_EXTRAS_VER}.tar.bz2 |
|
|
218 | http://g3nt8.org/patches/mysql-extras-${MY_EXTRAS_VER}.tar.bz2 |
|
|
219 | http://dev.gentoo.org/~robbat2/distfiles/mysql-extras-${MY_EXTRAS_VER}.tar.bz2" |
| 60 | |
220 | |
| 61 | DESCRIPTION="A fast, multi-threaded, multi-user SQL database server." |
221 | DESCRIPTION="A fast, multi-threaded, multi-user SQL database server." |
| 62 | HOMEPAGE="http://www.mysql.com/" |
222 | HOMEPAGE="http://www.mysql.com/" |
|
|
223 | if [[ "${PN}" == "mariadb" ]]; then |
|
|
224 | HOMEPAGE="http://askmonty.org/" |
|
|
225 | DESCRIPTION="MariaDB is a MySQL fork with 3rd-party patches and additional storage engines merged." |
|
|
226 | fi |
|
|
227 | if [[ "${PN}" == "mysql-community" ]]; then |
|
|
228 | DESCRIPTION="${DESCRIPTION} (obsolete, move to dev-db/mysql)" |
|
|
229 | fi |
|
|
230 | LICENSE="GPL-2" |
| 63 | SLOT="0" |
231 | SLOT="0" |
| 64 | LICENSE="GPL-2" |
|
|
| 65 | IUSE="big-tables berkdb debug embedded minimal perl selinux srvdir ssl static" |
232 | IUSE="big-tables debug embedded minimal ${IUSE_DEFAULT_ON}perl selinux ssl static test" |
| 66 | RESTRICT="primaryuri confcache" |
|
|
| 67 | |
233 | |
| 68 | mysql_version_is_at_least "4.01.00.00" \ |
234 | mysql_version_is_at_least "4.1" \ |
| 69 | && IUSE="${IUSE} latin1" |
235 | && IUSE="${IUSE} latin1" |
| 70 | |
236 | |
| 71 | mysql_version_is_at_least "4.01.03.00" \ |
237 | if mysql_version_is_at_least "4.1.3" ; then |
| 72 | && IUSE="${IUSE} cluster extraengine" |
238 | IUSE="${IUSE} extraengine" |
|
|
239 | if [[ "${PN}" != "mysql-cluster" ]] ; then |
|
|
240 | IUSE="${IUSE} cluster" |
|
|
241 | fi |
|
|
242 | fi |
| 73 | |
243 | |
| 74 | mysql_version_is_at_least "5.00.00.00" \ |
244 | mysql_version_is_at_least "5.0" \ |
| 75 | || IUSE="${IUSE} raid" |
245 | || IUSE="${IUSE} raid" |
| 76 | |
246 | |
| 77 | mysql_version_is_at_least "5.00.18.00" \ |
247 | mysql_version_is_at_least "5.0.18" \ |
| 78 | && IUSE="${IUSE} max-idx-128" |
248 | && IUSE="${IUSE} max-idx-128" |
| 79 | |
249 | |
| 80 | mysql_version_is_at_least "5.01.00.00" \ |
250 | mysql_version_is_at_least "5.1" \ |
|
|
251 | || IUSE="${IUSE} berkdb" |
|
|
252 | |
|
|
253 | [ "${MYSQL_COMMUNITY_FEATURES}" == "1" ] \ |
|
|
254 | && IUSE="${IUSE} ${IUSE_DEFAULT_ON}community profiling" |
|
|
255 | |
|
|
256 | [[ "${PN}" == "mariadb" ]] \ |
|
|
257 | && IUSE="${IUSE} libevent" |
|
|
258 | |
|
|
259 | [[ "${PN}" == "mariadb" ]] \ |
|
|
260 | && mysql_version_is_at_least "5.2" \ |
|
|
261 | && IUSE="${IUSE} oqgraph" |
|
|
262 | #SphinxSE is included but is not available in 5.2.4 due to a missing plug.in file |
|
|
263 | #&& IUSE="${IUSE} oqgraph sphinx" |
|
|
264 | |
|
|
265 | # MariaDB has integrated PBXT |
|
|
266 | # PBXT_VERSION means that we have a PBXT patch for this PV |
|
|
267 | # PBXT was only introduced after 5.1.12 |
|
|
268 | pbxt_patch_available() { |
|
|
269 | [[ "${PN}" != "mariadb" ]] \ |
|
|
270 | && mysql_version_is_at_least "5.1.12" \ |
|
|
271 | && [[ -n "${PBXT_VERSION}" ]] |
|
|
272 | return $? |
|
|
273 | } |
|
|
274 | |
|
|
275 | pbxt_available() { |
|
|
276 | pbxt_patch_available || [[ "${PN}" == "mariadb" ]] |
|
|
277 | return $? |
|
|
278 | } |
|
|
279 | |
|
|
280 | # Get the percona tarball if XTRADB_VER and PERCONA_VER are both set |
|
|
281 | # MariaDB has integrated XtraDB |
|
|
282 | # XTRADB_VERS means that we have a XTRADB patch for this PV |
|
|
283 | # XTRADB was only introduced after 5.1.26 |
|
|
284 | xtradb_patch_available() { |
|
|
285 | [[ "${PN}" != "mariadb" ]] \ |
|
|
286 | && mysql_version_is_at_least "5.1.26" \ |
|
|
287 | && [[ -n "${XTRADB_VER}" && -n "${PERCONA_VER}" ]] |
|
|
288 | return $? |
|
|
289 | } |
|
|
290 | |
|
|
291 | |
|
|
292 | pbxt_patch_available \ |
|
|
293 | && PBXT_P="pbxt-${PBXT_VERSION}" \ |
|
|
294 | && PBXT_SRC_URI="http://www.primebase.org/download/${PBXT_P}.tar.gz mirror://sourceforge/pbxt/${PBXT_P}.tar.gz" \ |
|
|
295 | && SRC_URI="${SRC_URI} pbxt? ( ${PBXT_SRC_URI} )" \ |
|
|
296 | |
|
|
297 | # PBXT_NEWSTYLE means pbxt is in storage/ and gets enabled as other plugins |
|
|
298 | # vs. built outside the dir |
|
|
299 | pbxt_available \ |
|
|
300 | && IUSE="${IUSE} pbxt" \ |
|
|
301 | && mysql_version_is_at_least "5.1.40" \ |
|
|
302 | && PBXT_NEWSTYLE=1 |
|
|
303 | |
|
|
304 | xtradb_patch_available \ |
|
|
305 | && XTRADB_P="percona-xtradb-${XTRADB_VER}" \ |
|
|
306 | && XTRADB_SRC_URI_COMMON="${PERCONA_VER}/source/${XTRADB_P}.tar.gz" \ |
|
|
307 | && XTRADB_SRC_B1="http://www.percona.com/" \ |
|
|
308 | && XTRADB_SRC_B2="${XTRADB_SRC_B1}/percona-builds/" \ |
|
|
309 | && XTRADB_SRC_URI1="${XTRADB_SRC_B2}/Percona-Server/Percona-Server-${XTRADB_SRC_URI_COMMON}" \ |
|
|
310 | && XTRADB_SRC_URI2="${XTRADB_SRC_B2}/xtradb/${XTRADB_SRC_URI_COMMON}" \ |
|
|
311 | && XTRADB_SRC_URI3="${XTRADB_SRC_B1}/${PN}/xtradb/${XTRADB_SRC_URI_COMMON}" \ |
|
|
312 | && SRC_URI="${SRC_URI} xtradb? ( ${XTRADB_SRC_URI1} ${XTRADB_SRC_URI2} ${XTRADB_SRC_URI3} )" \ |
| 81 | && IUSE="${IUSE} innodb" |
313 | && IUSE="${IUSE} xtradb" |
| 82 | |
314 | |
| 83 | EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_preinst \ |
315 | # |
| 84 | pkg_postinst pkg_config pkg_postrm |
316 | # HELPER FUNCTIONS: |
|
|
317 | # |
| 85 | |
318 | |
|
|
319 | # @FUNCTION: mysql_disable_test |
|
|
320 | # @DESCRIPTION: |
|
|
321 | # Helper function to disable specific tests. |
|
|
322 | mysql_disable_test() { |
|
|
323 | local rawtestname testname testsuite reason mysql_disable_file |
|
|
324 | rawtestname="${1}" ; shift |
|
|
325 | reason="${@}" |
|
|
326 | ewarn "test '${rawtestname}' disabled: '${reason}'" |
|
|
327 | |
|
|
328 | testsuite="${rawtestname/.*}" |
|
|
329 | testname="${rawtestname/*.}" |
|
|
330 | mysql_disable_file="${S}/mysql-test/t/disabled.def" |
|
|
331 | #einfo "rawtestname=${rawtestname} testname=${testname} testsuite=${testsuite}" |
|
|
332 | echo ${testname} : ${reason} >> "${mysql_disable_file}" |
|
|
333 | |
|
|
334 | # ${S}/mysql-tests/t/disabled.def |
|
|
335 | # |
|
|
336 | # ${S}/mysql-tests/suite/federated/disabled.def |
|
|
337 | # |
|
|
338 | # ${S}/mysql-tests/suite/jp/t/disabled.def |
|
|
339 | # ${S}/mysql-tests/suite/ndb/t/disabled.def |
|
|
340 | # ${S}/mysql-tests/suite/rpl/t/disabled.def |
|
|
341 | # ${S}/mysql-tests/suite/parts/t/disabled.def |
|
|
342 | # ${S}/mysql-tests/suite/rpl_ndb/t/disabled.def |
|
|
343 | # ${S}/mysql-tests/suite/ndb_team/t/disabled.def |
|
|
344 | # ${S}/mysql-tests/suite/binlog/t/disabled.def |
|
|
345 | # ${S}/mysql-tests/suite/innodb/t/disabled.def |
|
|
346 | if [ -n "${testsuite}" ]; then |
|
|
347 | for mysql_disable_file in \ |
|
|
348 | ${S}/mysql-test/suite/${testsuite}/disabled.def \ |
|
|
349 | ${S}/mysql-test/suite/${testsuite}/t/disabled.def \ |
|
|
350 | FAILED ; do |
|
|
351 | [ -f "${mysql_disable_file}" ] && break |
|
|
352 | done |
|
|
353 | if [ "${mysql_disabled_file}" != "FAILED" ]; then |
|
|
354 | echo "${testname} : ${reason}" >> "${mysql_disable_file}" |
|
|
355 | else |
|
|
356 | ewarn "Could not find testsuite disabled.def location for ${rawtestname}" |
|
|
357 | fi |
|
|
358 | fi |
|
|
359 | } |
|
|
360 | |
|
|
361 | # @FUNCTION: mysql_init_vars |
|
|
362 | # @DESCRIPTION: |
| 86 | # void mysql_init_vars() |
363 | # void mysql_init_vars() |
| 87 | # |
|
|
| 88 | # Initialize global variables |
364 | # Initialize global variables |
| 89 | # 2005-11-19 <vivo@gentoo.org> |
365 | # 2005-11-19 <vivo@gentoo.org> |
| 90 | |
|
|
| 91 | mysql_init_vars() { |
366 | mysql_init_vars() { |
| 92 | MY_SHAREDSTATEDIR=${MY_SHAREDSTATEDIR="/usr/share/mysql"} |
367 | MY_SHAREDSTATEDIR=${MY_SHAREDSTATEDIR="${EPREFIX}/usr/share/mysql"} |
| 93 | MY_SYSCONFDIR=${MY_SYSCONFDIR="/etc/mysql"} |
368 | MY_SYSCONFDIR=${MY_SYSCONFDIR="${EPREFIX}/etc/mysql"} |
| 94 | MY_LIBDIR=${MY_LIBDIR="/usr/$(get_libdir)/mysql"} |
369 | MY_LIBDIR=${MY_LIBDIR="${EPREFIX}/usr/$(get_libdir)/mysql"} |
| 95 | MY_LOCALSTATEDIR=${MY_LOCALSTATEDIR="/var/lib/mysql"} |
370 | MY_LOCALSTATEDIR=${MY_LOCALSTATEDIR="${EPREFIX}/var/lib/mysql"} |
| 96 | MY_LOGDIR=${MY_LOGDIR="/var/log/mysql"} |
371 | MY_LOGDIR=${MY_LOGDIR="${EPREFIX}/var/log/mysql"} |
| 97 | MY_INCLUDEDIR=${MY_INCLUDEDIR="/usr/include/mysql"} |
372 | MY_INCLUDEDIR=${MY_INCLUDEDIR="${EPREFIX}/usr/include/mysql"} |
| 98 | |
373 | |
| 99 | if [[ -z "${DATADIR}" ]] ; then |
374 | if [[ -z "${MY_DATADIR}" ]] ; then |
| 100 | DATADIR="" |
375 | MY_DATADIR="" |
| 101 | if [[ -f "${MY_SYSCONFDIR}/my.cnf" ]] ; then |
376 | if [[ -f ${MY_SYSCONFDIR}/my.cnf ]] ; then |
| 102 | DATADIR=`"my_print_defaults" mysqld 2>/dev/null \ |
377 | MY_DATADIR=`"my_print_defaults" mysqld 2>/dev/null \ |
| 103 | | sed -ne '/datadir/s|^--datadir=||p' \ |
378 | | sed -ne '/datadir/s|^--datadir=||p' \ |
| 104 | | tail -n1` |
379 | | tail -n1` |
| 105 | if [[ -z "${DATADIR}" ]] ; then |
380 | if [[ -z "${MY_DATADIR}" ]] ; then |
| 106 | if useq "srvdir" ; then |
|
|
| 107 | DATADIR="${ROOT}/srv/localhost/mysql/datadir" |
|
|
| 108 | else |
|
|
| 109 | DATADIR=`grep ^datadir "${MY_SYSCONFDIR}/my.cnf" \ |
381 | MY_DATADIR=`grep ^datadir ${MY_SYSCONFDIR}/my.cnf \ |
| 110 | | sed -e 's/.*=\s*//'` |
382 | | sed -e 's/.*=\s*//' \ |
| 111 | fi |
383 | | tail -n1` |
| 112 | fi |
384 | fi |
| 113 | fi |
385 | fi |
| 114 | if [[ -z "${DATADIR}" ]] ; then |
386 | if [[ -z "${MY_DATADIR}" ]] ; then |
| 115 | if useq "srvdir" ; then |
|
|
| 116 | DATADIR="${ROOT}/srv/localhost/mysql/datadir" |
|
|
| 117 | else |
|
|
| 118 | DATADIR="${MY_LOCALSTATEDIR}" |
387 | MY_DATADIR="${MY_LOCALSTATEDIR}" |
| 119 | fi |
|
|
| 120 | einfo "Using default DATADIR" |
388 | einfo "Using default MY_DATADIR" |
| 121 | fi |
389 | fi |
| 122 | einfo "MySQL DATADIR is ${DATADIR}" |
390 | elog "MySQL MY_DATADIR is ${MY_DATADIR}" |
| 123 | |
391 | |
| 124 | if [[ -z "${PREVIOUS_DATADIR}" ]] ; then |
392 | if [[ -z "${PREVIOUS_DATADIR}" ]] ; then |
| 125 | if [[ -e "${DATADIR}" ]] ; then |
393 | if [[ -e "${MY_DATADIR}" ]] ; then |
| 126 | ewarn "Previous datadir found, it's YOUR job to change" |
394 | # If you get this and you're wondering about it, see bug #207636 |
| 127 | ewarn "ownership and take care of it" |
395 | elog "MySQL datadir found in ${MY_DATADIR}" |
|
|
396 | elog "A new one will not be created." |
| 128 | PREVIOUS_DATADIR="yes" |
397 | PREVIOUS_DATADIR="yes" |
| 129 | else |
398 | else |
| 130 | PREVIOUS_DATADIR="no" |
399 | PREVIOUS_DATADIR="no" |
| 131 | fi |
400 | fi |
| 132 | export PREVIOUS_DATADIR |
401 | export PREVIOUS_DATADIR |
| 133 | fi |
402 | fi |
|
|
403 | else |
|
|
404 | if [[ ${EBUILD_PHASE} == "config" ]]; then |
|
|
405 | local new_MY_DATADIR |
|
|
406 | new_MY_DATADIR=`"my_print_defaults" mysqld 2>/dev/null \ |
|
|
407 | | sed -ne '/datadir/s|^--datadir=||p' \ |
|
|
408 | | tail -n1` |
|
|
409 | |
|
|
410 | if [[ ( -n "${new_MY_DATADIR}" ) && ( "${new_MY_DATADIR}" != "${MY_DATADIR}" ) ]]; then |
|
|
411 | ewarn "MySQL MY_DATADIR has changed" |
|
|
412 | ewarn "from ${MY_DATADIR}" |
|
|
413 | ewarn "to ${new_MY_DATADIR}" |
|
|
414 | MY_DATADIR="${new_MY_DATADIR}" |
|
|
415 | fi |
|
|
416 | fi |
|
|
417 | fi |
|
|
418 | |
|
|
419 | if [ "${MY_SOURCEDIR:-unset}" == "unset" ]; then |
|
|
420 | MY_SOURCEDIR=${SERVER_URI##*/} |
|
|
421 | MY_SOURCEDIR=${MY_SOURCEDIR%.tar*} |
| 134 | fi |
422 | fi |
| 135 | |
423 | |
| 136 | export MY_SHAREDSTATEDIR MY_SYSCONFDIR |
424 | export MY_SHAREDSTATEDIR MY_SYSCONFDIR |
| 137 | export MY_LIBDIR MY_LOCALSTATEDIR MY_LOGDIR |
425 | export MY_LIBDIR MY_LOCALSTATEDIR MY_LOGDIR |
| 138 | export MY_INCLUDEDIR |
426 | export MY_INCLUDEDIR MY_DATADIR MY_SOURCEDIR |
| 139 | export DATADIR |
|
|
| 140 | } |
427 | } |
| 141 | |
428 | |
|
|
429 | configure_minimal() { |
|
|
430 | # These are things we exclude from a minimal build, please |
|
|
431 | # note that the server actually does get built and installed, |
|
|
432 | # but we then delete it before packaging. |
|
|
433 | local minimal_exclude_list="server embedded-server extra-tools innodb bench berkeley-db row-based-replication readline" |
|
|
434 | |
|
|
435 | for i in ${minimal_exclude_list} ; do |
|
|
436 | myconf="${myconf} --without-${i}" |
|
|
437 | done |
|
|
438 | myconf="${myconf} --with-extra-charsets=none" |
|
|
439 | myconf="${myconf} --enable-local-infile" |
|
|
440 | |
|
|
441 | if use static ; then |
|
|
442 | myconf="${myconf} --with-client-ldflags=-all-static" |
|
|
443 | myconf="${myconf} --disable-shared --with-pic" |
|
|
444 | else |
|
|
445 | myconf="${myconf} --enable-shared --enable-static" |
|
|
446 | fi |
|
|
447 | |
|
|
448 | if mysql_version_is_at_least "4.1" && ! use latin1 ; then |
|
|
449 | myconf="${myconf} --with-charset=utf8" |
|
|
450 | myconf="${myconf} --with-collation=utf8_general_ci" |
|
|
451 | else |
|
|
452 | myconf="${myconf} --with-charset=latin1" |
|
|
453 | myconf="${myconf} --with-collation=latin1_swedish_ci" |
|
|
454 | fi |
|
|
455 | } |
|
|
456 | |
|
|
457 | configure_common() { |
|
|
458 | myconf="${myconf} $(use_with big-tables)" |
|
|
459 | myconf="${myconf} --enable-local-infile" |
|
|
460 | myconf="${myconf} --with-extra-charsets=all" |
|
|
461 | myconf="${myconf} --with-mysqld-user=mysql" |
|
|
462 | myconf="${myconf} --with-server" |
|
|
463 | myconf="${myconf} --with-unix-socket-path=${EPREFIX}/var/run/mysqld/mysqld.sock" |
|
|
464 | myconf="${myconf} --without-libwrap" |
|
|
465 | |
|
|
466 | if use static ; then |
|
|
467 | myconf="${myconf} --with-mysqld-ldflags=-all-static" |
|
|
468 | myconf="${myconf} --with-client-ldflags=-all-static" |
|
|
469 | myconf="${myconf} --disable-shared --with-pic" |
|
|
470 | else |
|
|
471 | myconf="${myconf} --enable-shared --enable-static" |
|
|
472 | fi |
|
|
473 | |
|
|
474 | if use debug ; then |
|
|
475 | myconf="${myconf} --with-debug=full" |
|
|
476 | else |
|
|
477 | myconf="${myconf} --without-debug" |
|
|
478 | mysql_version_is_at_least "4.1.3" \ |
|
|
479 | && ( use cluster || [[ "${PN}" == "mysql-cluster" ]] ) \ |
|
|
480 | && myconf="${myconf} --without-ndb-debug" |
|
|
481 | fi |
|
|
482 | |
|
|
483 | if [ -n "${MYSQL_DEFAULT_CHARSET}" -a -n "${MYSQL_DEFAULT_COLLATION}" ]; then |
|
|
484 | ewarn "You are using a custom charset of ${MYSQL_DEFAULT_CHARSET}" |
|
|
485 | ewarn "and a collation of ${MYSQL_DEFAULT_COLLATION}." |
|
|
486 | ewarn "You MUST file bugs without these variables set." |
|
|
487 | myconf="${myconf} --with-charset=${MYSQL_DEFAULT_CHARSET}" |
|
|
488 | myconf="${myconf} --with-collation=${MYSQL_DEFAULT_COLLATION}" |
|
|
489 | elif mysql_version_is_at_least "4.1" && ! use latin1 ; then |
|
|
490 | myconf="${myconf} --with-charset=utf8" |
|
|
491 | myconf="${myconf} --with-collation=utf8_general_ci" |
|
|
492 | else |
|
|
493 | myconf="${myconf} --with-charset=latin1" |
|
|
494 | myconf="${myconf} --with-collation=latin1_swedish_ci" |
|
|
495 | fi |
|
|
496 | |
|
|
497 | if use embedded ; then |
|
|
498 | myconf="${myconf} --with-embedded-privilege-control" |
|
|
499 | myconf="${myconf} --with-embedded-server" |
|
|
500 | else |
|
|
501 | myconf="${myconf} --without-embedded-privilege-control" |
|
|
502 | myconf="${myconf} --without-embedded-server" |
|
|
503 | fi |
|
|
504 | |
|
|
505 | } |
|
|
506 | |
|
|
507 | configure_40_41_50() { |
|
|
508 | myconf="${myconf} --with-zlib-dir=${EPREFIX}/usr" |
|
|
509 | myconf="${myconf} $(use_with perl bench)" |
|
|
510 | myconf="${myconf} --enable-assembler" |
|
|
511 | myconf="${myconf} --with-extra-tools" |
|
|
512 | myconf="${myconf} --with-innodb" |
|
|
513 | myconf="${myconf} --without-readline" |
|
|
514 | myconf="${myconf} $(use_with ssl openssl "${EPREFIX}/usr")" |
|
|
515 | mysql_version_is_at_least "5.0" || myconf="${myconf} $(use_with raid)" |
|
|
516 | |
|
|
517 | # --with-vio is not needed anymore, it's on by default and |
|
|
518 | # has been removed from configure |
|
|
519 | # Apply to 4.x and 5.0.[0-3] |
|
|
520 | if use ssl ; then |
|
|
521 | mysql_version_is_at_least "5.0.4" || myconf="${myconf} --with-vio" |
|
|
522 | fi |
|
|
523 | |
|
|
524 | if mysql_version_is_at_least "5.0.60" ; then |
|
|
525 | if use berkdb ; then |
|
|
526 | elog "Berkeley DB support was disabled due to build failures" |
|
|
527 | elog "on multiple arches, go to a version earlier than 5.0.60" |
|
|
528 | elog "if you want it again. Gentoo bug #224067." |
|
|
529 | fi |
|
|
530 | myconf="${myconf} --without-berkeley-db" |
|
|
531 | elif use berkdb ; then |
|
|
532 | # The following fix is due to a bug with bdb on SPARC's. See: |
|
|
533 | # http://www.geocrawler.com/mail/msg.php3?msg_id=4754814&list=8 |
|
|
534 | # It comes down to non-64-bit safety problems. |
|
|
535 | if use alpha || use amd64 || use hppa || use mips || use sparc ; then |
|
|
536 | elog "Berkeley DB support was disabled due to compatibility issues on this arch" |
|
|
537 | myconf="${myconf} --without-berkeley-db" |
|
|
538 | else |
|
|
539 | myconf="${myconf} --with-berkeley-db=./bdb" |
|
|
540 | fi |
|
|
541 | else |
|
|
542 | myconf="${myconf} --without-berkeley-db" |
|
|
543 | fi |
|
|
544 | |
|
|
545 | if mysql_version_is_at_least "4.1.3" ; then |
|
|
546 | myconf="${myconf} --with-geometry" |
|
|
547 | if [[ "${PN}" != "mysql-cluster" ]] ; then |
|
|
548 | myconf="${myconf} $(use_with cluster ndbcluster)" |
|
|
549 | fi |
|
|
550 | fi |
|
|
551 | |
|
|
552 | if mysql_version_is_at_least "4.1.3" && use extraengine ; then |
|
|
553 | # http://dev.mysql.com/doc/mysql/en/archive-storage-engine.html |
|
|
554 | myconf="${myconf} --with-archive-storage-engine" |
|
|
555 | |
|
|
556 | # http://dev.mysql.com/doc/mysql/en/csv-storage-engine.html |
|
|
557 | myconf="${myconf} --with-csv-storage-engine" |
|
|
558 | |
|
|
559 | # http://dev.mysql.com/doc/mysql/en/blackhole-storage-engine.html |
|
|
560 | myconf="${myconf} --with-blackhole-storage-engine" |
|
|
561 | |
|
|
562 | # http://dev.mysql.com/doc/mysql/en/federated-storage-engine.html |
|
|
563 | # http://dev.mysql.com/doc/mysql/en/federated-description.html |
|
|
564 | # http://dev.mysql.com/doc/mysql/en/federated-limitations.html |
|
|
565 | if mysql_version_is_at_least "5.0.3" ; then |
|
|
566 | elog "Before using the Federated storage engine, please be sure to read" |
|
|
567 | elog "http://dev.mysql.com/doc/mysql/en/federated-limitations.html" |
|
|
568 | myconf="${myconf} --with-federated-storage-engine" |
|
|
569 | fi |
|
|
570 | fi |
|
|
571 | |
|
|
572 | if [ "${MYSQL_COMMUNITY_FEATURES}" == "1" ]; then |
|
|
573 | myconf="${myconf} `use_enable community community-features`" |
|
|
574 | if use community; then |
|
|
575 | myconf="${myconf} `use_enable profiling`" |
|
|
576 | else |
|
|
577 | myconf="${myconf} --disable-profiling" |
|
|
578 | fi |
|
|
579 | fi |
|
|
580 | |
|
|
581 | mysql_version_is_at_least "5.0.18" \ |
|
|
582 | && use max-idx-128 \ |
|
|
583 | && myconf="${myconf} --with-max-indexes=128" |
|
|
584 | } |
|
|
585 | |
|
|
586 | configure_51() { |
|
|
587 | # TODO: !!!! readd --without-readline |
|
|
588 | # the failure depend upon config/ac-macros/readline.m4 checking into |
|
|
589 | # readline.h instead of history.h |
|
|
590 | myconf="${myconf} $(use_with ssl ssl "${EPREFIX}"/usr)" |
|
|
591 | myconf="${myconf} --enable-assembler" |
|
|
592 | myconf="${myconf} --with-geometry" |
|
|
593 | myconf="${myconf} --with-readline" |
|
|
594 | myconf="${myconf} --with-zlib-dir=${EPREFIX}/usr/" |
|
|
595 | myconf="${myconf} --without-pstack" |
|
|
596 | myconf="${myconf} --with-plugindir=${EPREFIX}/usr/$(get_libdir)/mysql/plugin" |
|
|
597 | |
|
|
598 | # This is an explict die here, because if we just forcibly disable it, then the |
|
|
599 | # user's data is not accessible. |
|
|
600 | use max-idx-128 && die "Bug #336027: upstream has a corruption issue with max-idx-128 presently" |
|
|
601 | #use max-idx-128 && myconf="${myconf} --with-max-indexes=128" |
|
|
602 | if [ "${MYSQL_COMMUNITY_FEATURES}" == "1" ]; then |
|
|
603 | myconf="${myconf} $(use_enable community community-features)" |
|
|
604 | if use community; then |
|
|
605 | myconf="${myconf} $(use_enable profiling)" |
|
|
606 | else |
|
|
607 | myconf="${myconf} --disable-profiling" |
|
|
608 | fi |
|
|
609 | fi |
|
|
610 | |
|
|
611 | # Scan for all available plugins |
|
|
612 | local plugins_avail="$( |
|
|
613 | LANG=C \ |
|
|
614 | find "${S}" \ |
|
|
615 | \( \ |
|
|
616 | -name 'plug.in' \ |
|
|
617 | -o -iname 'configure.in' \ |
|
|
618 | -o -iname 'configure.ac' \ |
|
|
619 | \) \ |
|
|
620 | -print0 \ |
|
|
621 | | xargs -0 sed -r -n \ |
|
|
622 | -e '/^MYSQL_STORAGE_ENGINE/{ |
|
|
623 | s~MYSQL_STORAGE_ENGINE\([[:space:]]*\[?([-_a-z0-9]+)\]?.*,~\1 ~g ; |
|
|
624 | s~^([^ ]+).*~\1~gp; |
|
|
625 | }' \ |
|
|
626 | | tr -s '\n' ' ' |
|
|
627 | )" |
|
|
628 | |
|
|
629 | # 5.1 introduces a new way to manage storage engines (plugins) |
|
|
630 | # like configuration=none |
|
|
631 | # This base set are required, and will always be statically built. |
|
|
632 | local plugins_sta="csv myisam myisammrg heap" |
|
|
633 | local plugins_dyn="" |
|
|
634 | local plugins_dis="example ibmdb2i" |
|
|
635 | |
|
|
636 | # These aren't actually required by the base set, but are really useful: |
|
|
637 | plugins_sta="${plugins_sta} archive blackhole" |
|
|
638 | |
|
|
639 | # default in 5.5.4 |
|
|
640 | if mysql_version_is_at_least "5.5.4" ; then |
|
|
641 | plugins_sta="${plugins_sta} partition" |
|
|
642 | fi |
|
|
643 | # Now the extras |
|
|
644 | if use extraengine ; then |
|
|
645 | # like configuration=max-no-ndb, archive and example removed in 5.1.11 |
|
|
646 | # not added yet: ibmdb2i |
|
|
647 | # Not supporting as examples: example,daemon_example,ftexample |
|
|
648 | plugins_sta="${plugins_sta} partition" |
|
|
649 | |
|
|
650 | if [[ "${PN}" != "mariadb" ]] ; then |
|
|
651 | elog "Before using the Federated storage engine, please be sure to read" |
|
|
652 | elog "http://dev.mysql.com/doc/refman/5.1/en/federated-limitations.html" |
|
|
653 | plugins_dyn="${plugins_sta} federated" |
|
|
654 | else |
|
|
655 | elog "MariaDB includes the FederatedX engine. Be sure to read" |
|
|
656 | elog "http://askmonty.org/wiki/index.php/Manual:FederatedX_storage_engine" |
|
|
657 | plugins_dyn="${plugins_sta} federatedx" |
|
|
658 | fi |
|
|
659 | else |
|
|
660 | plugins_dis="${plugins_dis} partition federated" |
|
|
661 | fi |
|
|
662 | |
|
|
663 | # Upstream specifically requests that InnoDB always be built: |
|
|
664 | # - innobase, innodb_plugin |
|
|
665 | # Build falcon if available for 6.x series. |
|
|
666 | for i in innobase falcon ; do |
|
|
667 | [ -e "${S}"/storage/${i} ] && plugins_sta="${plugins_sta} ${i}" |
|
|
668 | done |
|
|
669 | for i in innodb_plugin ; do |
|
|
670 | [ -e "${S}"/storage/${i} ] && plugins_dyn="${plugins_dyn} ${i}" |
|
|
671 | done |
|
|
672 | |
|
|
673 | # like configuration=max-no-ndb |
|
|
674 | if ( use cluster || [[ "${PN}" == "mysql-cluster" ]] ) ; then |
|
|
675 | plugins_sta="${plugins_sta} ndbcluster partition" |
|
|
676 | plugins_dis="${plugins_dis//partition}" |
|
|
677 | myconf="${myconf} --with-ndb-binlog" |
|
|
678 | else |
|
|
679 | plugins_dis="${plugins_dis} ndbcluster" |
|
|
680 | fi |
|
|
681 | |
|
|
682 | if [[ "${PN}" == "mariadb" ]] ; then |
|
|
683 | # In MariaDB, InnoDB is packaged in the xtradb directory, so it's not |
|
|
684 | # caught above. |
|
|
685 | # This is not optional, without it several upstream testcases fail. |
|
|
686 | # Also strongly recommended by upstream. |
|
|
687 | if [[ "${PV}" < "5.2.0" ]] ; then |
|
|
688 | myconf="${myconf} --with-maria-tmp-tables" |
|
|
689 | plugins_sta="${plugins_sta} maria" |
|
|
690 | else |
|
|
691 | myconf="${myconf} --with-aria-tmp-tables" |
|
|
692 | plugins_sta="${plugins_sta} aria" |
|
|
693 | fi |
|
|
694 | |
|
|
695 | [ -e "${S}"/storage/innobase ] || [ -e "${S}"/storage/xtradb ] || |
|
|
696 | die "The ${P} package doesn't provide innobase nor xtradb" |
|
|
697 | |
|
|
698 | for i in innobase xtradb ; do |
|
|
699 | [ -e "${S}"/storage/${i} ] && plugins_sta="${plugins_sta} ${i}" |
|
|
700 | done |
|
|
701 | |
|
|
702 | myconf="${myconf} $(use_with libevent)" |
|
|
703 | |
|
|
704 | if mysql_version_is_at_least "5.2" ; then |
|
|
705 | #This should include sphinx, but the 5.2.4 archive forgot the plug.in file |
|
|
706 | #for i in oqgraph sphinx ; do |
|
|
707 | for i in oqgraph ; do |
|
|
708 | use ${i} \ |
|
|
709 | && plugins_dyn="${plugins_dyn} ${i}" \ |
|
|
710 | || plugins_dis="${plugins_dis} ${i}" |
|
|
711 | done |
|
|
712 | fi |
|
|
713 | fi |
|
|
714 | |
|
|
715 | if pbxt_available && [[ "${PBXT_NEWSTYLE}" == "1" ]]; then |
|
|
716 | use pbxt \ |
|
|
717 | && plugins_dyn="${plugins_dyn} pbxt" \ |
|
|
718 | || plugins_dis="${plugins_dis} pbxt" |
|
|
719 | fi |
|
|
720 | |
|
|
721 | use static && \ |
|
|
722 | plugins_sta="${plugins_sta} ${plugins_dyn}" && \ |
|
|
723 | plugins_dyn="" |
|
|
724 | |
|
|
725 | einfo "Available plugins: ${plugins_avail}" |
|
|
726 | einfo "Dynamic plugins: ${plugins_dyn}" |
|
|
727 | einfo "Static plugins: ${plugins_sta}" |
|
|
728 | einfo "Disabled plugins: ${plugins_dis}" |
|
|
729 | |
|
|
730 | # These are the static plugins |
|
|
731 | myconf="${myconf} --with-plugins=${plugins_sta// /,}" |
|
|
732 | # And the disabled ones |
|
|
733 | for i in ${plugins_dis} ; do |
|
|
734 | myconf="${myconf} --without-plugin-${i}" |
|
|
735 | done |
|
|
736 | } |
|
|
737 | |
|
|
738 | pbxt_src_configure() { |
|
|
739 | mysql_init_vars |
|
|
740 | |
|
|
741 | pushd "${WORKDIR}/pbxt-${PBXT_VERSION}" &>/dev/null |
|
|
742 | |
|
|
743 | einfo "Reconfiguring dir '${PWD}'" |
|
|
744 | eautoreconf |
|
|
745 | |
|
|
746 | local myconf="" |
|
|
747 | myconf="${myconf} --with-mysql=${S} --libdir=${EPREFIX}/usr/$(get_libdir)" |
|
|
748 | use debug && myconf="${myconf} --with-debug=full" |
|
|
749 | econf ${myconf} || die "Problem configuring PBXT storage engine" |
|
|
750 | } |
|
|
751 | |
|
|
752 | pbxt_src_compile() { |
|
|
753 | |
|
|
754 | # Be backwards compatible for now |
|
|
755 | if [[ $EAPI != 2 ]]; then |
|
|
756 | pbxt_src_configure |
|
|
757 | fi |
|
|
758 | # TODO: is it safe/needed to use emake here ? |
|
|
759 | make || die "Problem making PBXT storage engine (${myconf})" |
|
|
760 | |
|
|
761 | popd |
|
|
762 | # TODO: modify test suite for PBXT |
|
|
763 | } |
|
|
764 | |
|
|
765 | pbxt_src_install() { |
|
|
766 | pushd "${WORKDIR}/pbxt-${PBXT_VERSION}" &>/dev/null |
|
|
767 | emake install DESTDIR="${D}" || die "Failed to install PBXT" |
|
|
768 | popd |
|
|
769 | } |
|
|
770 | |
|
|
771 | # |
|
|
772 | # EBUILD FUNCTIONS |
|
|
773 | # |
|
|
774 | # @FUNCTION: mysql_pkg_setup |
|
|
775 | # @DESCRIPTION: |
|
|
776 | # Perform some basic tests and tasks during pkg_setup phase: |
|
|
777 | # die if FEATURES="test", USE="-minimal" and not using FEATURES="userpriv" |
|
|
778 | # check for conflicting use flags |
|
|
779 | # create new user and group for mysql |
|
|
780 | # warn about deprecated features |
| 142 | mysql_pkg_setup() { |
781 | mysql_pkg_setup() { |
| 143 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
782 | if has test ${FEATURES} ; then |
| 144 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
783 | if ! use minimal ; then |
|
|
784 | if [[ $UID -eq 0 ]]; then |
|
|
785 | eerror "Testing with FEATURES=-userpriv is no longer supported by upstream. Tests MUST be run as non-root." |
|
|
786 | fi |
|
|
787 | fi |
|
|
788 | fi |
|
|
789 | |
|
|
790 | # bug 350844 |
|
|
791 | case "${EAPI:-0}" in |
|
|
792 | 0 | 1) |
|
|
793 | if use static && !built_with_use sys-libs/ncurses static-libs; then |
|
|
794 | die "To build MySQL statically you need to enable static-libs for sys-libs/ncurses" |
|
|
795 | fi |
|
|
796 | ;; |
|
|
797 | esac |
| 145 | |
798 | |
| 146 | # Check for USE flag problems in pkg_setup |
799 | # Check for USE flag problems in pkg_setup |
| 147 | if useq "static" && useq "ssl" ; then |
800 | if use static && use ssl ; then |
| 148 | eerror "MySQL does not support being built statically with SSL support enabled!" |
|
|
| 149 | die "MySQL does not support being built statically with SSL support enabled!" |
801 | M="MySQL does not support being built statically with SSL support enabled!" |
|
|
802 | eerror "${M}" |
|
|
803 | die "${M}" |
| 150 | fi |
804 | fi |
| 151 | |
805 | |
|
|
806 | if mysql_version_is_at_least "5.1.51" \ |
|
|
807 | && ! mysql_version_is_at_least "5.2" \ |
|
|
808 | && use debug ; then |
|
|
809 | # Also in package.use.mask |
|
|
810 | die "Bug #344885: Upstream has broken USE=debug for 5.1 series >=5.1.51" |
|
|
811 | fi |
|
|
812 | |
| 152 | if ! mysql_version_is_at_least "5.00.00.00" \ |
813 | if ! mysql_version_is_at_least "5.0" \ |
| 153 | && useq "raid" \ |
814 | && use raid \ |
| 154 | && useq "static" ; then |
815 | && use static ; then |
| 155 | eerror "USE flags 'raid' and 'static' conflict, you cannot build MySQL statically" |
816 | eerror "USE flags 'raid' and 'static' conflict, you cannot build MySQL statically" |
| 156 | eerror "with RAID support enabled." |
817 | eerror "with RAID support enabled." |
| 157 | die "USE flags 'raid' and 'static' conflict!" |
818 | die "USE flags 'raid' and 'static' conflict!" |
| 158 | fi |
819 | fi |
| 159 | |
820 | |
| 160 | if mysql_version_is_at_least "4.01.03.00" \ |
821 | if mysql_version_is_at_least "4.1.3" \ |
| 161 | && ( useq "cluster" || useq "extraengine" ) \ |
822 | && ( use cluster || use extraengine || use embedded ) \ |
| 162 | && useq "minimal" ; then |
823 | && use minimal ; then |
| 163 | eerror "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
|
|
| 164 | die "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
824 | M="USE flags 'cluster', 'extraengine', 'embedded' conflict with 'minimal' USE flag!" |
|
|
825 | eerror "${M}" |
|
|
826 | die "${M}" |
| 165 | fi |
827 | fi |
| 166 | } |
|
|
| 167 | |
828 | |
|
|
829 | if mysql_version_is_at_least "5.1" \ |
|
|
830 | && xtradb_patch_available \ |
|
|
831 | && use xtradb \ |
|
|
832 | && use embedded ; then |
|
|
833 | M="USE flags 'xtradb' and 'embedded' conflict and cause build failures" |
|
|
834 | eerror "${M}" |
|
|
835 | die "${M}" |
|
|
836 | fi |
|
|
837 | |
|
|
838 | # Bug #290570, 284946, 307251 |
|
|
839 | # Upstream changes made us need a fairly new GCC4. |
|
|
840 | # But only for 5.0.8[3-6]! |
|
|
841 | if mysql_version_is_at_least "5.0.83" && ! mysql_version_is_at_least 5.0.87 ; then |
|
|
842 | GCC_VER=$(gcc-version) |
|
|
843 | case ${CHOST}:${GCC_VER} in |
|
|
844 | *-darwin*:4.*) : ;; # bug #310615 |
|
|
845 | *:2*|*:3*|*:4.0|*:4.1|*:4.2) |
|
|
846 | eerror "Some releases of MySQL required a very new GCC, and then" |
|
|
847 | eerror "later release relaxed that requirement again. Either pick a" |
|
|
848 | eerror "MySQL >=5.0.87, or use a newer GCC." |
|
|
849 | die "Active GCC too old!" ;; |
|
|
850 | esac |
|
|
851 | fi |
|
|
852 | |
|
|
853 | # This should come after all of the die statements |
|
|
854 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
|
|
855 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
|
|
856 | |
|
|
857 | mysql_check_version_range "4.0 to 5.0.99.99" \ |
|
|
858 | && use berkdb \ |
|
|
859 | && elog "Berkeley DB support is deprecated and will be removed in future versions!" |
|
|
860 | |
|
|
861 | if [ "${PN}" != "mysql-cluster" ] && use cluster; then |
|
|
862 | ewarn "Upstream has noted that the NDB cluster support in the 5.0 and" |
|
|
863 | ewarn "5.1 series should NOT be put into production. In the near" |
|
|
864 | ewarn "future, it will be disabled from building." |
|
|
865 | ewarn "" |
|
|
866 | ewarn "If you need NDB support, you should instead move to the new" |
|
|
867 | ewarn "mysql-cluster package that represents that upstream NDB" |
|
|
868 | ewarn "development." |
|
|
869 | fi |
|
|
870 | } |
|
|
871 | |
|
|
872 | # @FUNCTION: mysql_src_unpack |
|
|
873 | # @DESCRIPTION: |
|
|
874 | # Unpack the source code and call mysql_src_prepare for EAPI < 2. |
| 168 | mysql_src_unpack() { |
875 | mysql_src_unpack() { |
| 169 | # Initialize the proper variables first |
876 | # Initialize the proper variables first |
| 170 | mysql_init_vars |
877 | mysql_init_vars |
| 171 | |
878 | |
| 172 | unpack ${A} |
879 | unpack ${A} |
|
|
880 | # Grab the patches |
|
|
881 | [[ "${MY_EXTRAS_VER}" == "live" ]] && S="${WORKDIR}/mysql-extras" git_src_unpack |
| 173 | |
882 | |
| 174 | mv -f "${WORKDIR}/${P/_/-}" "${S}" |
883 | mv -f "${WORKDIR}/${MY_SOURCEDIR}" "${S}" |
|
|
884 | |
|
|
885 | # Be backwards compatible for now |
|
|
886 | case ${EAPI:-0} in |
|
|
887 | 2) : ;; |
|
|
888 | 0 | 1) mysql_src_prepare ;; |
|
|
889 | esac |
|
|
890 | } |
|
|
891 | |
|
|
892 | # @FUNCTION: mysql_src_prepare |
|
|
893 | # @DESCRIPTION: |
|
|
894 | # Apply patches to the source code and remove unneeded bundled libs. |
|
|
895 | mysql_src_prepare() { |
| 175 | cd "${S}" |
896 | cd "${S}" |
| 176 | |
897 | |
| 177 | # Apply the patches for this MySQL version |
898 | # Apply the patches for this MySQL version |
| 178 | if [[ -d "${WORKDIR}/${MY_FIXED_PV}" ]] ; then |
899 | EPATCH_SUFFIX="patch" |
| 179 | EPATCH_SOURCE="${WORKDIR}/${MY_FIXED_PV}" EPATCH_SUFFIX="patch" epatch |
900 | mkdir -p "${EPATCH_SOURCE}" || die "Unable to create epatch directory" |
| 180 | fi |
901 | # Clean out old items |
|
|
902 | rm -f "${EPATCH_SOURCE}"/* |
|
|
903 | # Now link in right patches |
|
|
904 | mysql_mv_patches |
|
|
905 | # And apply |
|
|
906 | epatch |
| 181 | |
907 | |
| 182 | # Additional checks, remove bundled zlib |
908 | # last -fPIC fixup, per bug #305873 |
|
|
909 | i="${S}"/storage/innodb_plugin/plug.in |
|
|
910 | [ -f "${i}" ] && sed -i -e '/CFLAGS/s,-prefer-non-pic,,g' "${i}" |
|
|
911 | |
|
|
912 | # Additional checks, remove bundled zlib (Cluster needs this, for static |
|
|
913 | # memory management in zlib, leave available for Cluster) |
|
|
914 | if [[ "${PN}" != "mysql-cluster" ]] ; then |
| 183 | rm -f "${S}/zlib/"*.[ch] |
915 | rm -f "${S}/zlib/"*.[ch] |
| 184 | sed -i -e "s/zlib\/Makefile dnl/dnl zlib\/Makefile/" "${S}/configure.in" |
916 | sed -i -e "s/zlib\/Makefile dnl/dnl zlib\/Makefile/" "${S}/configure.in" |
|
|
917 | fi |
| 185 | rm -f "scripts/mysqlbug" |
918 | rm -f "scripts/mysqlbug" |
| 186 | |
919 | |
| 187 | # Make charsets install in the right place |
920 | # Make charsets install in the right place |
|
|
921 | find . -name 'Makefile.am' \ |
| 188 | find . -name 'Makefile.am' -exec sed --in-place -e 's!$(pkgdatadir)!'${MY_SHAREDSTATEDIR}'!g' {} \; |
922 | -exec sed --in-place -e 's!$(pkgdatadir)!'${MY_SHAREDSTATEDIR}'!g' {} \; |
| 189 | |
923 | |
| 190 | # Manage mysqlmanager |
|
|
| 191 | mysql_version_is_at_least "5.00.15.00" \ |
|
|
| 192 | && sed -i -e "s!@GENTOO_EXT@!!g" -e "s!@GENTOO_SOCK_PATH@!var/run/mysqld!g" "${S}/server-tools/instance-manager/Makefile.am" |
|
|
| 193 | |
|
|
| 194 | if mysql_version_is_at_least "4.01.00.00" ; then |
924 | if mysql_version_is_at_least "4.1" ; then |
| 195 | # Remove what needs to be recreated, so we're sure it's actually done |
925 | # Remove what needs to be recreated, so we're sure it's actually done |
|
|
926 | einfo "Cleaning up old buildscript files" |
| 196 | find . -name Makefile \ |
927 | find . -name Makefile \ |
| 197 | -o -name Makefile.in \ |
928 | -o -name Makefile.in \ |
| 198 | -o -name configure \ |
929 | -o -name configure \ |
| 199 | -exec rm -f {} \; |
930 | -exec rm -f {} \; |
| 200 | rm -f "ltmain.sh" |
931 | rm -f "ltmain.sh" |
|
|
932 | rm -f "scripts/mysqlbug" |
| 201 | fi |
933 | fi |
| 202 | |
934 | |
| 203 | local rebuilddirlist bdbdir d |
935 | local rebuilddirlist d |
| 204 | |
936 | |
|
|
937 | if xtradb_patch_available && use xtradb ; then |
|
|
938 | einfo "Adding storage engine: Percona XtraDB (replacing InnoDB)" |
|
|
939 | pushd "${S}"/storage >/dev/null |
|
|
940 | i="innobase" |
|
|
941 | o="${WORKDIR}/storage-${i}.mysql-upstream" |
|
|
942 | # Have we been here already? |
|
|
943 | [ -d "${o}" ] && rm -f "${i}" |
|
|
944 | # Or maybe we haven't |
|
|
945 | [ -d "${i}" -a ! -d "${o}" ] && mv "${i}" "${o}" |
|
|
946 | cp -ral "${WORKDIR}/${XTRADB_P}" "${i}" |
|
|
947 | popd >/dev/null |
|
|
948 | fi |
|
|
949 | |
|
|
950 | if pbxt_patch_available && [[ "${PBXT_NEWSTYLE}" == "1" ]] && use pbxt ; then |
|
|
951 | einfo "Adding storage engine: PBXT" |
|
|
952 | pushd "${S}"/storage >/dev/null |
|
|
953 | i='pbxt' |
|
|
954 | [ -d "${i}" ] && rm -rf "${i}" |
|
|
955 | cp -ral "${WORKDIR}/${PBXT_P}" "${i}" |
|
|
956 | popd >/dev/null |
|
|
957 | fi |
|
|
958 | |
| 205 | if mysql_version_is_at_least "5.01.00.00" ; then |
959 | if mysql_version_is_at_least "5.1.12" ; then |
| 206 | rebuilddirlist=". storage/innobase" |
960 | rebuilddirlist="." |
| 207 | bdbdir='storage/bdb/dist' |
961 | # This does not seem to be needed presently. robbat2 2010/02/23 |
|
|
962 | #einfo "Updating innobase cmake" |
|
|
963 | ## TODO: check this with a cmake expert |
|
|
964 | #cmake \ |
|
|
965 | # -DCMAKE_C_COMPILER=$(type -P $(tc-getCC)) \ |
|
|
966 | # -DCMAKE_CXX_COMPILER=$(type -P $(tc-getCXX)) \ |
|
|
967 | # "storage/innobase" |
| 208 | else |
968 | else |
| 209 | rebuilddirlist=". innobase" |
969 | rebuilddirlist=". innobase" |
| 210 | bdbdir='bdb/dist' |
|
|
| 211 | fi |
970 | fi |
| 212 | |
971 | |
| 213 | for d in ${rebuilddirlist} ; do |
972 | for d in ${rebuilddirlist} ; do |
| 214 | einfo "Reconfiguring dir '${d}'" |
973 | einfo "Reconfiguring dir '${d}'" |
| 215 | pushd "${d}" &>/dev/null |
974 | pushd "${d}" &>/dev/null |
| 216 | AT_GNUCONF_UPDATE="yes" eautoreconf |
975 | eautoreconf |
| 217 | popd &>/dev/null |
976 | popd &>/dev/null |
| 218 | done |
977 | done |
| 219 | |
978 | |
| 220 | # TODO: berkdb in MySQL 5.1 needs to be worked on |
|
|
| 221 | if useq "berkdb" \ |
|
|
| 222 | && ! mysql_check_version_range "4.00.00.00 to 4.00.99.99" \ |
979 | if mysql_check_version_range "4.1 to 5.0.99.99" \ |
| 223 | && ! mysql_check_version_range "5.01.00.00 to 5.01.08.99" ; then |
980 | && use berkdb ; then |
|
|
981 | einfo "Fixing up berkdb buildsystem" |
| 224 | [[ -w "${bdbdir}/ltmain.sh" ]] && cp -f "ltmain.sh" "${bdbdir}/ltmain.sh" |
982 | [[ -w "bdb/dist/ltmain.sh" ]] && cp -f "ltmain.sh" "bdb/dist/ltmain.sh" |
| 225 | pushd "${bdbdir}" \ |
983 | cp -f "${EPREFIX}/usr/share/aclocal/libtool.m4" "bdb/dist/aclocal/libtool.ac" \ |
|
|
984 | || die "Could not copy libtool.m4 to bdb/dist/" |
|
|
985 | #These files exist only with libtool-2*, and need to be included. |
|
|
986 | if [ -f ${EPREFIX}'/usr/share/aclocal/ltsugar.m4' ]; then |
|
|
987 | cat "${EPREFIX}/usr/share/aclocal/ltsugar.m4" >> "bdb/dist/aclocal/libtool.ac" |
|
|
988 | cat "${EPREFIX}/usr/share/aclocal/ltversion.m4" >> "bdb/dist/aclocal/libtool.ac" |
|
|
989 | cat "${EPREFIX}/usr/share/aclocal/lt~obsolete.m4" >> "bdb/dist/aclocal/libtool.ac" |
|
|
990 | cat "${EPREFIX}/usr/share/aclocal/ltoptions.m4" >> "bdb/dist/aclocal/libtool.ac" |
|
|
991 | fi |
|
|
992 | pushd "bdb/dist" &>/dev/null |
| 226 | && sh s_all \ |
993 | sh s_all \ |
| 227 | || die "Failed bdb reconfigure" \ |
994 | || die "Failed bdb reconfigure" |
| 228 | &>/dev/null |
|
|
| 229 | popd &>/dev/null |
995 | popd &>/dev/null |
| 230 | fi |
996 | fi |
| 231 | } |
997 | } |
| 232 | |
998 | |
|
|
999 | # @FUNCTION: mysql_src_configure |
|
|
1000 | # @DESCRIPTION: |
|
|
1001 | # Configure mysql to build the code for Gentoo respecting the use flags. |
| 233 | mysql_src_compile() { |
1002 | mysql_src_configure() { |
| 234 | # Make sure the vars are correctly initialized |
1003 | # Make sure the vars are correctly initialized |
| 235 | mysql_init_vars |
1004 | mysql_init_vars |
| 236 | |
1005 | |
|
|
1006 | # $myconf is modified by the configure_* functions |
| 237 | local myconf |
1007 | local myconf="" |
| 238 | |
1008 | |
| 239 | if useq "static" ; then |
1009 | if use minimal ; then |
| 240 | myconf="${myconf} --with-mysqld-ldflags=-all-static" |
1010 | configure_minimal |
| 241 | myconf="${myconf} --with-client-ldflags=-all-static" |
|
|
| 242 | myconf="${myconf} --disable-shared" |
|
|
| 243 | else |
1011 | else |
| 244 | myconf="${myconf} --enable-shared --enable-static" |
1012 | configure_common |
| 245 | fi |
|
|
| 246 | |
|
|
| 247 | myconf="${myconf} --without-libwrap" |
|
|
| 248 | |
|
|
| 249 | if useq "ssl" ; then |
|
|
| 250 | # --with-vio is not needed anymore, it's on by default and |
|
|
| 251 | # has been removed from configure |
|
|
| 252 | mysql_version_is_at_least "5.00.04.00" || myconf="${myconf} --with-vio" |
|
|
| 253 | if mysql_version_is_at_least "5.00.06.00" ; then |
1013 | if mysql_version_is_at_least "5.1.10" ; then |
| 254 | # yassl-0.96 is still young and breaks with GCC-4.X or amd64 |
1014 | configure_51 |
| 255 | # myconf="${myconf} --with-yassl" |
|
|
| 256 | myconf="${myconf} --with-openssl" |
|
|
| 257 | else |
1015 | else |
| 258 | myconf="${myconf} --with-openssl" |
1016 | configure_40_41_50 |
| 259 | fi |
|
|
| 260 | else |
|
|
| 261 | myconf="${myconf} --without-openssl" |
|
|
| 262 | fi |
|
|
| 263 | |
|
|
| 264 | if useq "debug" ; then |
|
|
| 265 | myconf="${myconf} --with-debug=full" |
|
|
| 266 | else |
|
|
| 267 | myconf="${myconf} --without-debug" |
|
|
| 268 | |
|
|
| 269 | mysql_version_is_at_least "4.01.03.00" && useq "cluster" \ |
|
|
| 270 | && myconf="${myconf} --without-ndb-debug" |
|
|
| 271 | fi |
|
|
| 272 | |
|
|
| 273 | # These are things we exclude from a minimal build. |
|
|
| 274 | # Note that the server actually does get built and installed, |
|
|
| 275 | # but we then delete it. |
|
|
| 276 | local minimal_exclude_list="server embedded-server extra-tools innodb bench" |
|
|
| 277 | |
|
|
| 278 | if ! useq "minimal" ; then |
|
|
| 279 | myconf="${myconf} --with-server" |
|
|
| 280 | myconf="${myconf} --with-extra-tools" |
|
|
| 281 | |
|
|
| 282 | if ! mysql_version_is_at_least "5.00.00.00" ; then |
|
|
| 283 | if useq "raid" ; then |
|
|
| 284 | myconf="${myconf} --with-raid" |
|
|
| 285 | else |
|
|
| 286 | myconf="${myconf} --without-raid" |
|
|
| 287 | fi |
1017 | fi |
| 288 | fi |
|
|
| 289 | |
|
|
| 290 | if mysql_version_is_at_least "4.01.00.00" && ! useq "latin1" ; then |
|
|
| 291 | myconf="${myconf} --with-charset=utf8" |
|
|
| 292 | myconf="${myconf} --with-collation=utf8_general_ci" |
|
|
| 293 | else |
|
|
| 294 | myconf="${myconf} --with-charset=latin1" |
|
|
| 295 | myconf="${myconf} --with-collation=latin1_swedish_ci" |
|
|
| 296 | fi |
|
|
| 297 | |
|
|
| 298 | # Optional again with MySQL 5.1 |
|
|
| 299 | if mysql_version_is_at_least "5.01.00.00" ; then |
|
|
| 300 | if useq "innodb" ; then |
|
|
| 301 | myconf="${myconf} --with-innodb" |
|
|
| 302 | else |
|
|
| 303 | myconf="${myconf} --without-innodb" |
|
|
| 304 | fi |
|
|
| 305 | fi |
|
|
| 306 | |
|
|
| 307 | # Lots of charsets |
|
|
| 308 | myconf="${myconf} --with-extra-charsets=all" |
|
|
| 309 | |
|
|
| 310 | # The following fix is due to a bug with bdb on SPARC's. See: |
|
|
| 311 | # http://www.geocrawler.com/mail/msg.php3?msg_id=4754814&list=8 |
|
|
| 312 | # It comes down to non-64-bit safety problems. |
|
|
| 313 | if useq "sparc" || useq "alpha" || useq "hppa" || useq "mips" || useq "amd64" ; then |
|
|
| 314 | ewarn "bdb berkeley-db disabled due to incompatible arch" |
|
|
| 315 | myconf="${myconf} --without-berkeley-db" |
|
|
| 316 | else |
|
|
| 317 | # TODO: berkdb in MySQL 5.1 needs to be worked on |
|
|
| 318 | if useq "berkdb" && ! mysql_check_version_range "5.01.00.00 to 5.01.08.99" ; then |
|
|
| 319 | myconf="${myconf} --with-berkeley-db=./bdb" |
|
|
| 320 | else |
|
|
| 321 | myconf="${myconf} --without-berkeley-db" |
|
|
| 322 | fi |
|
|
| 323 | fi |
|
|
| 324 | |
|
|
| 325 | if mysql_version_is_at_least "4.01.03.00" ; then |
|
|
| 326 | myconf="${myconf} --with-geometry" |
|
|
| 327 | |
|
|
| 328 | if useq "cluster" ; then |
|
|
| 329 | myconf="${myconf} --with-ndbcluster" |
|
|
| 330 | else |
|
|
| 331 | myconf="${myconf} --without-ndbcluster" |
|
|
| 332 | fi |
|
|
| 333 | fi |
|
|
| 334 | |
|
|
| 335 | if useq "big-tables" ; then |
|
|
| 336 | myconf="${myconf} --with-big-tables" |
|
|
| 337 | else |
|
|
| 338 | myconf="${myconf} --without-big-tables" |
|
|
| 339 | fi |
|
|
| 340 | |
|
|
| 341 | mysql_version_is_at_least "5.01.06.00" \ |
|
|
| 342 | && myconf="${myconf} --with-ndb-binlog" |
|
|
| 343 | |
|
|
| 344 | if useq "embedded" ; then |
|
|
| 345 | myconf="${myconf} --with-embedded-privilege-control" |
|
|
| 346 | myconf="${myconf} --with-embedded-server" |
|
|
| 347 | else |
|
|
| 348 | myconf="${myconf} --without-embedded-privilege-control" |
|
|
| 349 | myconf="${myconf} --without-embedded-server" |
|
|
| 350 | fi |
|
|
| 351 | |
|
|
| 352 | # Benchmarking stuff needs Perl |
|
|
| 353 | if useq "perl" ; then |
|
|
| 354 | myconf="${myconf} --with-bench" |
|
|
| 355 | else |
|
|
| 356 | myconf="${myconf} --without-bench" |
|
|
| 357 | fi |
|
|
| 358 | else |
|
|
| 359 | for i in ${minimal_exclude_list} ; do |
|
|
| 360 | myconf="${myconf} --without-${i}" |
|
|
| 361 | done |
|
|
| 362 | myconf="${myconf} --without-berkeley-db" |
|
|
| 363 | myconf="${myconf} --with-extra-charsets=none" |
|
|
| 364 | fi |
|
|
| 365 | |
|
|
| 366 | if mysql_version_is_at_least "4.01.03.00" && useq "extraengine" ; then |
|
|
| 367 | # http://dev.mysql.com/doc/mysql/en/archive-storage-engine.html |
|
|
| 368 | myconf="${myconf} --with-archive-storage-engine" |
|
|
| 369 | |
|
|
| 370 | # http://dev.mysql.com/doc/mysql/en/csv-storage-engine.html |
|
|
| 371 | myconf="${myconf} --with-csv-storage-engine" |
|
|
| 372 | |
|
|
| 373 | # http://dev.mysql.com/doc/mysql/en/blackhole-storage-engine.html |
|
|
| 374 | myconf="${myconf} --with-blackhole-storage-engine" |
|
|
| 375 | |
|
|
| 376 | # http://dev.mysql.com/doc/mysql/en/federated-storage-engine.html |
|
|
| 377 | # http://dev.mysql.com/doc/mysql/en/federated-description.html |
|
|
| 378 | # http://dev.mysql.com/doc/mysql/en/federated-limitations.html |
|
|
| 379 | if mysql_version_is_at_least "5.00.03.00" ; then |
|
|
| 380 | einfo "Before using the Federated storage engine, please be sure to read" |
|
|
| 381 | einfo "http://dev.mysql.com/doc/mysql/en/federated-limitations.html" |
|
|
| 382 | myconf="${myconf} --with-federated-storage-engine" |
|
|
| 383 | fi |
|
|
| 384 | |
|
|
| 385 | # http://dev.mysql.com/doc/refman/5.1/en/partitioning-overview.html |
|
|
| 386 | if mysql_version_is_at_least "5.01.00.00" ; then |
|
|
| 387 | myconf="${myconf} --with-partition" |
|
|
| 388 | fi |
|
|
| 389 | fi |
|
|
| 390 | |
|
|
| 391 | mysql_version_is_at_least "5.00.18.00" \ |
|
|
| 392 | && useq "max-idx-128" \ |
|
|
| 393 | && myconf="${myconf} --with-max-indexes=128" |
|
|
| 394 | |
|
|
| 395 | mysql_version_is_at_least "5.01.05.00" \ |
|
|
| 396 | && myconf="${myconf} --with-row-based-replication" |
|
|
| 397 | |
|
|
| 398 | # TODO: Rechek again later, there were problems with assembler enabled |
|
|
| 399 | # and some combination of USE flags with MySQL 5.1 |
|
|
| 400 | if mysql_check_version_range "5.01.00.00 to 5.01.08.99" ; then |
|
|
| 401 | myconf="${myconf} --disable-assembler" |
|
|
| 402 | else |
|
|
| 403 | myconf="${myconf} --enable-assembler" |
|
|
| 404 | fi |
1018 | fi |
| 405 | |
1019 | |
| 406 | # Bug #114895, bug #110149 |
1020 | # Bug #114895, bug #110149 |
| 407 | filter-flags "-O" "-O[01]" |
1021 | filter-flags "-O" "-O[01]" |
| 408 | |
1022 | |
| 409 | # glib-2.3.2_pre fix, bug #16496 |
1023 | # glib-2.3.2_pre fix, bug #16496 |
| 410 | append-flags "-DHAVE_ERRNO_AS_DEFINE=1" |
1024 | append-flags "-DHAVE_ERRNO_AS_DEFINE=1" |
| 411 | |
1025 | |
| 412 | # The compiler flags are as their "official" spec says ;) |
1026 | # As discovered by bug #246652, doing a double-level of SSP causes NDB to |
| 413 | # CFLAGS="${CFLAGS/-O?/} -O3" |
1027 | # fail badly during cluster startup. |
|
|
1028 | if [[ $(gcc-major-version) -lt 4 ]]; then |
|
|
1029 | filter-flags "-fstack-protector-all" |
|
|
1030 | fi |
|
|
1031 | |
|
|
1032 | CXXFLAGS="${CXXFLAGS} -fno-exceptions -fno-strict-aliasing" |
| 414 | export CXXFLAGS="${CXXFLAGS} -felide-constructors -fno-exceptions -fno-rtti" |
1033 | CXXFLAGS="${CXXFLAGS} -felide-constructors -fno-rtti" |
| 415 | mysql_version_is_at_least "5.00.00.00" \ |
1034 | mysql_version_is_at_least "5.0" \ |
| 416 | && export CXXFLAGS="${CXXFLAGS} -fno-implicit-templates" |
1035 | && CXXFLAGS="${CXXFLAGS} -fno-implicit-templates" |
|
|
1036 | export CXXFLAGS |
|
|
1037 | |
|
|
1038 | # bug #283926, with GCC4.4, this is required to get correct behavior. |
|
|
1039 | append-flags -fno-strict-aliasing |
|
|
1040 | |
|
|
1041 | # bug #335185, #335995, with >= GCC4.3.3 on x86 only, omit-frame-pointer |
|
|
1042 | # causes a mis-compile. |
|
|
1043 | # Upstream bugs: |
|
|
1044 | # http://gcc.gnu.org/bugzilla/show_bug.cgi?id=38562 |
|
|
1045 | # http://bugs.mysql.com/bug.php?id=45205 |
|
|
1046 | use x86 && version_is_at_least "4.3.3" "$(gcc-fullversion)" && \ |
|
|
1047 | append-flags -fno-omit-frame-pointer && \ |
|
|
1048 | filter-flags -fomit-frame-pointer |
| 417 | |
1049 | |
| 418 | econf \ |
1050 | econf \ |
| 419 | --libexecdir="/usr/sbin" \ |
1051 | --libexecdir="${EPREFIX}"/usr/sbin \ |
| 420 | --sysconfdir="${MY_SYSCONFDIR}" \ |
1052 | --sysconfdir=${MY_SYSCONFDIR} \ |
| 421 | --localstatedir="${MY_LOCALSTATEDIR}" \ |
1053 | --localstatedir=${MY_LOCALSTATEDIR} \ |
| 422 | --sharedstatedir="${MY_SHAREDSTATEDIR}" \ |
1054 | --sharedstatedir=${MY_SHAREDSTATEDIR} \ |
| 423 | --libdir="${MY_LIBDIR}" \ |
1055 | --libdir=${MY_LIBDIR} \ |
| 424 | --includedir="${MY_INCLUDEDIR}" \ |
1056 | --includedir=${MY_INCLUDEDIR} \ |
| 425 | --with-low-memory \ |
1057 | --with-low-memory \ |
| 426 | --enable-local-infile \ |
|
|
| 427 | --with-mysqld-user=mysql \ |
|
|
| 428 | --with-client-ldflags=-lstdc++ \ |
1058 | --with-client-ldflags=-lstdc++ \ |
| 429 | --enable-thread-safe-client \ |
1059 | --enable-thread-safe-client \ |
| 430 | --with-comment="Gentoo Linux ${PF}" \ |
1060 | --with-comment="Gentoo Linux ${PF}" \ |
| 431 | --with-unix-socket-path="/var/run/mysqld/mysqld.sock" \ |
|
|
| 432 | --without-readline \ |
|
|
| 433 | --without-docs \ |
1061 | --without-docs \ |
|
|
1062 | --with-LIBDIR="$(get_libdir)" \ |
| 434 | ${myconf} || die "bad ./configure" |
1063 | ${myconf} || die "econf failed" |
| 435 | |
1064 | |
| 436 | # TODO: Move this before autoreconf !!! |
1065 | # TODO: Move this before autoreconf !!! |
| 437 | find . -type f -name Makefile -print0 \ |
1066 | find . -type f -name Makefile -print0 \ |
| 438 | | xargs -0 -n100 sed -i \ |
1067 | | xargs -0 -n100 sed -i \ |
| 439 | -e 's|^pkglibdir *= *$(libdir)/mysql|pkglibdir = $(libdir)|;s|^pkgincludedir *= *$(includedir)/mysql|pkgincludedir = $(includedir)|' |
1068 | -e 's|^pkglibdir *= *$(libdir)/mysql|pkglibdir = $(libdir)|;s|^pkgincludedir *= *$(includedir)/mysql|pkgincludedir = $(includedir)|' |
| 440 | |
1069 | |
| 441 | emake || die "compile problem" |
1070 | if [[ $EAPI == 2 ]] && [[ "${PBXT_NEWSTYLE}" != "1" ]]; then |
|
|
1071 | pbxt_patch_available && use pbxt && pbxt_src_configure |
|
|
1072 | fi |
| 442 | } |
1073 | } |
| 443 | |
1074 | |
|
|
1075 | # @FUNCTION: mysql_src_compile |
|
|
1076 | # @DESCRIPTION: |
|
|
1077 | # Compile the mysql code. |
|
|
1078 | mysql_src_compile() { |
|
|
1079 | # Be backwards compatible for now |
|
|
1080 | case ${EAPI:-0} in |
|
|
1081 | 2) : ;; |
|
|
1082 | 0 | 1) mysql_src_configure ;; |
|
|
1083 | esac |
|
|
1084 | |
|
|
1085 | emake || die "emake failed" |
|
|
1086 | |
|
|
1087 | if [[ "${PBXT_NEWSTYLE}" != "1" ]]; then |
|
|
1088 | pbxt_patch_available && use pbxt && pbxt_src_compile |
|
|
1089 | fi |
|
|
1090 | } |
|
|
1091 | |
|
|
1092 | # @FUNCTION: mysql_src_install |
|
|
1093 | # @DESCRIPTION: |
|
|
1094 | # Install mysql. |
| 444 | mysql_src_install() { |
1095 | mysql_src_install() { |
| 445 | # Make sure the vars are correctly initialized |
1096 | # Make sure the vars are correctly initialized |
| 446 | mysql_init_vars |
1097 | mysql_init_vars |
| 447 | |
1098 | |
| 448 | make install DESTDIR="${D}" benchdir_root="${MY_SHAREDSTATEDIR}" || die "make install error" |
1099 | emake install \ |
|
|
1100 | DESTDIR="${D}" \ |
|
|
1101 | benchdir_root=${MY_SHAREDSTATEDIR} \ |
|
|
1102 | testroot="${MY_SHAREDSTATEDIR}" \ |
|
|
1103 | || die "emake install failed" |
| 449 | |
1104 | |
| 450 | insinto "${MY_INCLUDEDIR}" |
1105 | if [[ "${PBXT_NEWSTYLE}" != "1" ]]; then |
| 451 | doins "${MY_INCLUDEDIR}"/my_{config,dir}.h |
1106 | pbxt_patch_available && use pbxt && pbxt_src_install |
|
|
1107 | fi |
| 452 | |
1108 | |
| 453 | # Convenience links |
1109 | # Convenience links |
|
|
1110 | einfo "Making Convenience links for mysqlcheck multi-call binary" |
| 454 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlanalyze" |
1111 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlanalyze" |
| 455 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlrepair" |
1112 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlrepair" |
| 456 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqloptimize" |
1113 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqloptimize" |
| 457 | |
1114 | |
| 458 | # Various junk (my-*.cnf moved elsewhere) |
1115 | # Various junk (my-*.cnf moved elsewhere) |
|
|
1116 | einfo "Removing duplicate /usr/share/mysql files" |
| 459 | rm -Rf "${D}/usr/share/info" |
1117 | rm -Rf "${ED}/usr/share/info" |
| 460 | for removeme in "mysql-log-rotate" mysql.server* binary-configure* my-*.cnf mi_test_all* ; do |
1118 | for removeme in "mysql-log-rotate" mysql.server* \ |
| 461 | rm -f "${D}"/usr/share/mysql/${removeme} |
1119 | binary-configure* my-*.cnf mi_test_all* |
|
|
1120 | do |
|
|
1121 | rm -f "${D}"/${MY_SHAREDSTATEDIR}/${removeme} |
| 462 | done |
1122 | done |
| 463 | |
1123 | |
| 464 | # Clean up stuff for a minimal build |
1124 | # Clean up stuff for a minimal build |
| 465 | if useq "minimal" ; then |
1125 | if use minimal ; then |
|
|
1126 | einfo "Remove all extra content for minimal build" |
| 466 | rm -Rf "${D}${MY_SHAREDSTATEDIR}"/{mysql-test,sql-bench} |
1127 | rm -Rf "${D}${MY_SHAREDSTATEDIR}"/{mysql-test,sql-bench} |
| 467 | 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} |
1128 | rm -f "${ED}"/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} |
| 468 | rm -f "${D}/usr/sbin/mysqld" |
1129 | rm -f "${ED}/usr/sbin/mysqld" |
| 469 | rm -f "${D}${MY_LIBDIR}"/lib{heap,merge,nisam,my{sys,strings,sqld,isammrg,isam},vio,dbug}.a |
1130 | rm -f "${D}${MY_LIBDIR}"/lib{heap,merge,nisam,my{sys,strings,sqld,isammrg,isam},vio,dbug}.a |
| 470 | fi |
1131 | fi |
| 471 | |
1132 | |
|
|
1133 | # Unless they explicitly specific USE=test, then do not install the |
|
|
1134 | # testsuite. It DOES have a use to be installed, esp. when you want to do a |
|
|
1135 | # validation of your database configuration after tuning it. |
|
|
1136 | if use !test ; then |
|
|
1137 | rm -rf "${D}"/${MY_SHAREDSTATEDIR}/mysql-test |
|
|
1138 | fi |
|
|
1139 | |
| 472 | # Configuration stuff |
1140 | # Configuration stuff |
| 473 | if mysql_version_is_at_least "4.01.00.00" ; then |
1141 | case ${MYSQL_PV_MAJOR} in |
| 474 | mysql_mycnf_version="4.1" |
|
|
| 475 | else |
|
|
| 476 | mysql_mycnf_version="4.0" |
1142 | 3*|4.0) mysql_mycnf_version="4.0" ;; |
| 477 | fi |
1143 | 4.[1-9]|5.0) mysql_mycnf_version="4.1" ;; |
|
|
1144 | 5.[1-9]|6*|7*) mysql_mycnf_version="5.1" ;; |
|
|
1145 | esac |
|
|
1146 | einfo "Building default my.cnf (${mysql_mycnf_version})" |
| 478 | insinto "${MY_SYSCONFDIR}" |
1147 | insinto "${MY_SYSCONFDIR#${EPREFIX}}" |
| 479 | doins "scripts/mysqlaccess.conf" |
1148 | doins scripts/mysqlaccess.conf |
|
|
1149 | mycnf_src="my.cnf-${mysql_mycnf_version}" |
| 480 | sed -e "s!@DATADIR@!${DATADIR}!g" \ |
1150 | sed -e "s!@DATADIR@!${MY_DATADIR}!g" \ |
| 481 | "${FILESDIR}/my.cnf-${mysql_mycnf_version}" \ |
1151 | -e "s!/tmp!${EPREFIX}/tmp!" \ |
|
|
1152 | -e "s!/usr!${EPREFIX}/usr!" \ |
|
|
1153 | -e "s!= /var!= ${EPREFIX}/var!" \ |
|
|
1154 | "${FILESDIR}/${mycnf_src}" \ |
| 482 | > "${TMPDIR}/my.cnf.ok" |
1155 | > "${TMPDIR}/my.cnf.ok" |
| 483 | if mysql_version_is_at_least "4.01.00.00" && useq "latin1" ; then |
1156 | use prefix && sed -i -e '/^user[ ]*= mysql$/d' "${TMPDIR}/my.cnf.ok" |
| 484 | sed -e "s|utf8|latin1|g" -i "${TMPDIR}/my.cnf.ok" |
1157 | if use latin1 ; then |
|
|
1158 | sed -i \ |
|
|
1159 | -e "/character-set/s|utf8|latin1|g" \ |
|
|
1160 | "${TMPDIR}/my.cnf.ok" |
| 485 | fi |
1161 | fi |
| 486 | newins "${TMPDIR}/my.cnf.ok" my.cnf |
1162 | newins "${TMPDIR}/my.cnf.ok" my.cnf |
| 487 | |
1163 | |
| 488 | insinto "/etc/conf.d" |
|
|
| 489 | newins "${FILESDIR}/mysql.conf.d" "mysql" |
|
|
| 490 | mysql_version_is_at_least "5.00.11.00" \ |
|
|
| 491 | && newins "${FILESDIR}/mysqlmanager.conf.d" "mysqlmanager" |
|
|
| 492 | |
|
|
| 493 | # Minimal builds don't have the MySQL server |
1164 | # Minimal builds don't have the MySQL server |
| 494 | if ! useq "minimal" ; then |
1165 | if ! use minimal ; then |
| 495 | exeinto "/etc/init.d" |
1166 | einfo "Creating initial directories" |
| 496 | newexe "${FILESDIR}/mysql.rc6" "mysql" |
|
|
| 497 | mysql_version_is_at_least "5.00.11.00" \ |
|
|
| 498 | && newexe "${FILESDIR}/mysqlmanager.rc6" "mysqlmanager" |
|
|
| 499 | |
|
|
| 500 | insinto "/etc/logrotate.d" |
|
|
| 501 | newins "${FILESDIR}/logrotate.mysql" "mysql" |
|
|
| 502 | |
|
|
| 503 | # Empty directories ... |
1167 | # Empty directories ... |
| 504 | diropts "-m0750" |
1168 | diropts "-m0750" |
| 505 | if [[ "${PREVIOUS_DATADIR}" != "yes" ]] ; then |
1169 | if [[ "${PREVIOUS_DATADIR}" != "yes" ]] ; then |
| 506 | dodir "${DATADIR}" |
1170 | dodir "${MY_DATADIR#${EPREFIX}}" |
| 507 | keepdir "${DATADIR}" |
1171 | keepdir "${MY_DATADIR#${EPREFIX}}" |
| 508 | chown -R mysql:mysql "${D}/${DATADIR}" |
1172 | chown -R mysql:mysql "${D}/${MY_DATADIR}" |
| 509 | fi |
1173 | fi |
| 510 | |
1174 | |
| 511 | diropts "-m0755" |
1175 | diropts "-m0755" |
| 512 | for folder in "${MY_LOGDIR}" "/var/run/mysqld" ; do |
1176 | for folder in "${MY_LOGDIR#${EPREFIX}}" "/var/run/mysqld" ; do |
| 513 | dodir "${folder}" |
1177 | dodir "${folder}" |
| 514 | keepdir "${folder}" |
1178 | keepdir "${folder}" |
| 515 | chown -R mysql:mysql "${D}/${folder}" |
1179 | chown -R mysql:mysql "${ED}/${folder}" |
| 516 | done |
1180 | done |
| 517 | fi |
1181 | fi |
| 518 | |
1182 | |
| 519 | # Docs |
1183 | # Docs |
|
|
1184 | einfo "Installing docs" |
| 520 | dodoc README COPYING ChangeLog EXCEPTIONS-CLIENT INSTALL-SOURCE |
1185 | for i in README ChangeLog EXCEPTIONS-CLIENT INSTALL-SOURCE ; do |
|
|
1186 | [[ -f "$i" ]] && dodoc "$i" |
|
|
1187 | done |
|
|
1188 | doinfo "${S}"/Docs/mysql.info |
| 521 | |
1189 | |
| 522 | # Minimal builds don't have the MySQL server |
1190 | # Minimal builds don't have the MySQL server |
| 523 | if ! useq "minimal" ; then |
1191 | if ! use minimal ; then |
|
|
1192 | einfo "Including support files and sample configurations" |
|
|
1193 | docinto "support-files" |
|
|
1194 | for script in \ |
|
|
1195 | "${S}"/support-files/my-*.cnf \ |
|
|
1196 | "${S}"/support-files/magic \ |
|
|
1197 | "${S}"/support-files/ndb-config-2-node.ini |
|
|
1198 | do |
|
|
1199 | [[ -f "$script" ]] && dodoc "${script}" |
|
|
1200 | done |
|
|
1201 | |
|
|
1202 | docinto "scripts" |
|
|
1203 | for script in "${S}"/scripts/mysql* ; do |
|
|
1204 | [[ -f "$script" ]] && [[ "${script%.sh}" == "${script}" ]] && dodoc "${script}" |
|
|
1205 | done |
|
|
1206 | |
|
|
1207 | fi |
|
|
1208 | |
|
|
1209 | mysql_lib_symlinks "${ED}" |
|
|
1210 | } |
|
|
1211 | |
|
|
1212 | # @FUNCTION: mysql_pkg_preinst |
|
|
1213 | # @DESCRIPTION: |
|
|
1214 | # Create the user and groups for mysql - die if that fails. |
|
|
1215 | mysql_pkg_preinst() { |
|
|
1216 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
|
|
1217 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
|
|
1218 | } |
|
|
1219 | |
|
|
1220 | # @FUNCTION: mysql_pkg_postinst |
|
|
1221 | # @DESCRIPTION: |
|
|
1222 | # Run post-installation tasks: |
|
|
1223 | # create the dir for logfiles if non-existant |
|
|
1224 | # touch the logfiles and secure them |
|
|
1225 | # install scripts |
|
|
1226 | # issue required steps for optional features |
|
|
1227 | # issue deprecation warnings |
|
|
1228 | mysql_pkg_postinst() { |
|
|
1229 | # Make sure the vars are correctly initialized |
|
|
1230 | mysql_init_vars |
|
|
1231 | |
|
|
1232 | # Check FEATURES="collision-protect" before removing this |
|
|
1233 | [[ -d "${EROOT}/var/log/mysql" ]] || install -d -m0750 -o mysql -g mysql "${ROOT}${MY_LOGDIR}" |
|
|
1234 | |
|
|
1235 | # Secure the logfiles |
|
|
1236 | touch "${ROOT}${MY_LOGDIR}"/mysql.{log,err} |
|
|
1237 | chown mysql:mysql "${ROOT}${MY_LOGDIR}"/mysql* |
|
|
1238 | chmod 0660 "${ROOT}${MY_LOGDIR}"/mysql* |
|
|
1239 | |
|
|
1240 | # Minimal builds don't have the MySQL server |
|
|
1241 | if ! use minimal ; then |
| 524 | docinto "support-files" |
1242 | docinto "support-files" |
| 525 | for script in \ |
1243 | for script in \ |
| 526 | support-files/my-*.cnf \ |
1244 | support-files/my-*.cnf \ |
| 527 | support-files/magic \ |
1245 | support-files/magic \ |
| 528 | support-files/ndb-config-2-node.ini |
1246 | support-files/ndb-config-2-node.ini |
| 529 | do |
1247 | do |
|
|
1248 | [[ -f "${script}" ]] \ |
| 530 | dodoc "${script}" |
1249 | && dodoc "${script}" |
| 531 | done |
1250 | done |
| 532 | |
1251 | |
| 533 | docinto "scripts" |
1252 | docinto "scripts" |
| 534 | for script in scripts/mysql* ; do |
1253 | for script in scripts/mysql* ; do |
|
|
1254 | [[ -f "${script}" ]] \ |
| 535 | [[ "${script%.sh}" == "${script}" ]] && dodoc "${script}" |
1255 | && [[ "${script%.sh}" == "${script}" ]] \ |
|
|
1256 | && dodoc "${script}" |
| 536 | done |
1257 | done |
| 537 | fi |
|
|
| 538 | |
1258 | |
| 539 | ROOT="${D}" mysql_lib_symlinks |
1259 | einfo |
| 540 | } |
1260 | elog "You might want to run:" |
|
|
1261 | elog "\"emerge --config =${CATEGORY}/${PF}\"" |
|
|
1262 | elog "if this is a new install." |
|
|
1263 | einfo |
| 541 | |
1264 | |
| 542 | mysql_pkg_preinst() { |
1265 | einfo |
| 543 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
1266 | elog "If you are upgrading major versions, you should run the" |
| 544 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
1267 | elog "mysql_upgrade tool." |
| 545 | } |
1268 | einfo |
|
|
1269 | fi |
| 546 | |
1270 | |
|
|
1271 | if pbxt_available && use pbxt ; then |
|
|
1272 | # TODO: explain it better |
|
|
1273 | elog " mysql> INSTALL PLUGIN pbxt SONAME 'libpbxt.so';" |
|
|
1274 | elog " mysql> CREATE TABLE t1 (c1 int, c2 text) ENGINE=pbxt;" |
|
|
1275 | elog "if, after that, you cannot start the MySQL server," |
|
|
1276 | elog "remove the ${MY_DATADIR}/mysql/plugin.* files, then" |
|
|
1277 | elog "use the MySQL upgrade script to restore the table" |
|
|
1278 | elog "or execute the following SQL command:" |
|
|
1279 | elog " CREATE TABLE IF NOT EXISTS plugin (" |
|
|
1280 | elog " name char(64) binary DEFAULT '' NOT NULL," |
|
|
1281 | elog " dl char(128) DEFAULT '' NOT NULL," |
|
|
1282 | elog " PRIMARY KEY (name)" |
|
|
1283 | elog " ) CHARACTER SET utf8 COLLATE utf8_bin;" |
|
|
1284 | fi |
|
|
1285 | |
|
|
1286 | mysql_check_version_range "4.0 to 5.0.99.99" \ |
|
|
1287 | && use berkdb \ |
|
|
1288 | && elog "Berkeley DB support is deprecated and will be removed in future versions!" |
|
|
1289 | } |
|
|
1290 | |
|
|
1291 | # @FUNCTION: mysql_pkg_config |
|
|
1292 | # @DESCRIPTION: |
|
|
1293 | # Configure mysql environment. |
| 547 | mysql_pkg_postinst() { |
1294 | mysql_pkg_config() { |
|
|
1295 | local old_MY_DATADIR="${MY_DATADIR}" |
|
|
1296 | |
| 548 | # Make sure the vars are correctly initialized |
1297 | # Make sure the vars are correctly initialized |
| 549 | mysql_init_vars |
1298 | mysql_init_vars |
| 550 | |
1299 | |
| 551 | # Check FEATURES="collision-protect" before removing this |
|
|
| 552 | [[ -d "${ROOT}/var/log/mysql" ]] || install -d -m0750 -o mysql -g mysql "${ROOT}${MY_LOGDIR}" |
|
|
| 553 | |
|
|
| 554 | # Secure the logfiles |
|
|
| 555 | touch "${ROOT}${MY_LOGDIR}"/mysql.{log,err} |
|
|
| 556 | chown mysql:mysql "${ROOT}${MY_LOGDIR}"/mysql* |
|
|
| 557 | chmod 0660 "${ROOT}${MY_LOGDIR}"/mysql* |
|
|
| 558 | |
|
|
| 559 | if ! useq "minimal" ; then |
|
|
| 560 | # Your friendly public service announcement ... |
|
|
| 561 | einfo |
|
|
| 562 | einfo "You might want to run:" |
|
|
| 563 | einfo "\"emerge --config =${CATEGORY}/${PF}\"" |
|
|
| 564 | einfo "if this is a new install." |
|
|
| 565 | einfo |
|
|
| 566 | mysql_version_is_at_least "5.01.00.00" \ |
|
|
| 567 | || einfo "InnoDB is *not* optional as of MySQL-4.0.24, at the request of upstream." |
|
|
| 568 | fi |
|
|
| 569 | } |
|
|
| 570 | |
|
|
| 571 | mysql_pkg_config() { |
|
|
| 572 | # Make sure the vars are correctly initialized |
|
|
| 573 | mysql_init_vars |
|
|
| 574 | |
|
|
| 575 | [[ -z "${DATADIR}" ]] && die "Sorry, unable to find DATADIR" |
1300 | [[ -z "${MY_DATADIR}" ]] && die "Sorry, unable to find MY_DATADIR" |
| 576 | |
1301 | |
| 577 | if built_with_use dev-db/mysql minimal ; then |
1302 | if built_with_use ${CATEGORY}/${PN} minimal ; then |
| 578 | die "Minimal builds do NOT include the MySQL server" |
1303 | die "Minimal builds do NOT include the MySQL server" |
|
|
1304 | fi |
|
|
1305 | |
|
|
1306 | if [[ ( -n "${MY_DATADIR}" ) && ( "${MY_DATADIR}" != "${old_MY_DATADIR}" ) ]]; then |
|
|
1307 | local MY_DATADIR_s="$(strip_duplicate_slashes ${ROOT}/${MY_DATADIR})" |
|
|
1308 | local old_MY_DATADIR_s="$(strip_duplicate_slashes ${ROOT}/${old_MY_DATADIR})" |
|
|
1309 | |
|
|
1310 | if [[ -d "${old_MY_DATADIR_s}" ]]; then |
|
|
1311 | if [[ -d "${MY_DATADIR_s}" ]]; then |
|
|
1312 | ewarn "Both ${old_MY_DATADIR_s} and ${MY_DATADIR_s} exist" |
|
|
1313 | ewarn "Attempting to use ${MY_DATADIR_s} and preserving ${old_MY_DATADIR_s}" |
|
|
1314 | else |
|
|
1315 | elog "Moving MY_DATADIR from ${old_MY_DATADIR_s} to ${MY_DATADIR_s}" |
|
|
1316 | mv --strip-trailing-slashes -T "${old_MY_DATADIR_s}" "${MY_DATADIR_s}" \ |
|
|
1317 | || die "Moving MY_DATADIR failed" |
|
|
1318 | fi |
|
|
1319 | else |
|
|
1320 | ewarn "Previous MY_DATADIR (${old_MY_DATADIR_s}) does not exist" |
|
|
1321 | if [[ -d "${MY_DATADIR_s}" ]]; then |
|
|
1322 | ewarn "Attempting to use ${MY_DATADIR_s}" |
|
|
1323 | else |
|
|
1324 | eerror "New MY_DATADIR (${MY_DATADIR_s}) does not exist" |
|
|
1325 | die "Configuration Failed! Please reinstall ${CATEGORY}/${PN}" |
|
|
1326 | fi |
|
|
1327 | fi |
| 579 | fi |
1328 | fi |
| 580 | |
1329 | |
| 581 | local pwd1="a" |
1330 | local pwd1="a" |
| 582 | local pwd2="b" |
1331 | local pwd2="b" |
| 583 | local maxtry=5 |
1332 | local maxtry=15 |
| 584 | |
1333 | |
|
|
1334 | if [ -z "${MYSQL_ROOT_PASSWORD}" -a -f "${EROOT}/root/.my.cnf" ]; then |
|
|
1335 | MYSQL_ROOT_PASSWORD="$(sed -n -e '/^password=/s,^password=,,gp' "${EROOT}/root/.my.cnf")" |
|
|
1336 | fi |
|
|
1337 | |
| 585 | if [[ -d "${ROOT}/${DATADIR}/mysql" ]] ; then |
1338 | if [[ -d "${ROOT}/${MY_DATADIR}/mysql" ]] ; then |
| 586 | ewarn "You have already a MySQL database in place." |
1339 | ewarn "You have already a MySQL database in place." |
| 587 | ewarn "(${ROOT}/${DATADIR}/*)" |
1340 | ewarn "(${ROOT}/${MY_DATADIR}/*)" |
| 588 | ewarn "Please rename or delete it if you wish to replace it." |
1341 | ewarn "Please rename or delete it if you wish to replace it." |
| 589 | die "MySQL database already exists!" |
1342 | die "MySQL database already exists!" |
| 590 | fi |
1343 | fi |
| 591 | |
1344 | |
| 592 | einfo "Creating the mysql database and setting proper" |
1345 | # Bug #213475 - MySQL _will_ object strenously if your machine is named |
| 593 | einfo "permissions on it ..." |
1346 | # localhost. Also causes weird failures. |
|
|
1347 | [[ "${HOSTNAME}" == "localhost" ]] && die "Your machine must NOT be named localhost" |
| 594 | |
1348 | |
|
|
1349 | if [ -z "${MYSQL_ROOT_PASSWORD}" ]; then |
|
|
1350 | |
| 595 | einfo "Insert a password for the mysql 'root' user" |
1351 | einfo "Please provide a password for the mysql 'root' user now, in the" |
|
|
1352 | einfo "MYSQL_ROOT_PASSWORD env var or through the /root/.my.cnf file." |
| 596 | ewarn "Avoid [\"'\\_%] characters in the password" |
1353 | ewarn "Avoid [\"'\\_%] characters in the password" |
| 597 | read -rsp " >" pwd1 ; echo |
1354 | read -rsp " >" pwd1 ; echo |
| 598 | |
1355 | |
| 599 | einfo "Retype the password" |
1356 | einfo "Retype the password" |
| 600 | read -rsp " >" pwd2 ; echo |
1357 | read -rsp " >" pwd2 ; echo |
| 601 | |
1358 | |
| 602 | if [[ "x$pwd1" != "x$pwd2" ]] ; then |
1359 | if [[ "x$pwd1" != "x$pwd2" ]] ; then |
| 603 | die "Passwords are not the same" |
1360 | die "Passwords are not the same" |
|
|
1361 | fi |
|
|
1362 | MYSQL_ROOT_PASSWORD="${pwd1}" |
|
|
1363 | unset pwd1 pwd2 |
| 604 | fi |
1364 | fi |
| 605 | |
1365 | |
| 606 | local options="" |
1366 | local options="" |
| 607 | local sqltmp="$(emktemp)" |
1367 | local sqltmp="$(emktemp)" |
| 608 | |
1368 | |
| … | |
… | |
| 611 | && cp "${help_tables}" "${TMPDIR}/fill_help_tables.sql" \ |
1371 | && cp "${help_tables}" "${TMPDIR}/fill_help_tables.sql" \ |
| 612 | || touch "${TMPDIR}/fill_help_tables.sql" |
1372 | || touch "${TMPDIR}/fill_help_tables.sql" |
| 613 | help_tables="${TMPDIR}/fill_help_tables.sql" |
1373 | help_tables="${TMPDIR}/fill_help_tables.sql" |
| 614 | |
1374 | |
| 615 | pushd "${TMPDIR}" &>/dev/null |
1375 | pushd "${TMPDIR}" &>/dev/null |
| 616 | "${ROOT}/usr/bin/mysql_install_db" | grep -B5 -A999 -i "ERROR" |
1376 | "${EROOT}/usr/bin/mysql_install_db" >"${TMPDIR}"/mysql_install_db.log 2>&1 |
|
|
1377 | if [ $? -ne 0 ]; then |
|
|
1378 | grep -B5 -A999 -i "ERROR" "${TMPDIR}"/mysql_install_db.log 1>&2 |
|
|
1379 | die "Failed to run mysql_install_db. Please review /var/log/mysql/mysqld.err AND ${TMPDIR}/mysql_install_db.log" |
|
|
1380 | fi |
| 617 | popd &>/dev/null |
1381 | popd &>/dev/null |
| 618 | [[ -f "${ROOT}/${DATADIR}/mysql/user.frm" ]] \ |
1382 | [[ -f "${ROOT}/${MY_DATADIR}/mysql/user.frm" ]] \ |
| 619 | || die "MySQL databases not installed" |
1383 | || die "MySQL databases not installed" |
| 620 | chown -R mysql:mysql "${ROOT}/${DATADIR}" 2> /dev/null |
1384 | chown -R mysql:mysql "${ROOT}/${MY_DATADIR}" 2>/dev/null |
| 621 | chmod 0750 "${ROOT}/${DATADIR}" 2> /dev/null |
1385 | chmod 0750 "${ROOT}/${MY_DATADIR}" 2>/dev/null |
| 622 | |
1386 | |
|
|
1387 | # Figure out which options we need to disable to do the setup |
|
|
1388 | helpfile="${TMPDIR}/mysqld-help" |
|
|
1389 | ${EROOT}/usr/sbin/mysqld --verbose --help >"${helpfile}" 2>/dev/null |
|
|
1390 | for opt in grant-tables host-cache name-resolve networking slave-start bdb \ |
|
|
1391 | federated innodb ssl log-bin relay-log slow-query-log external-locking \ |
|
|
1392 | ndbcluster \ |
|
|
1393 | ; do |
|
|
1394 | optexp="--(skip-)?${opt}" optfull="--skip-${opt}" |
|
|
1395 | egrep -sq -- "${optexp}" "${helpfile}" && options="${options} ${optfull}" |
|
|
1396 | done |
|
|
1397 | # But some options changed names |
|
|
1398 | egrep -sq external-locking "${helpfile}" && \ |
|
|
1399 | options="${options/skip-locking/skip-external-locking}" |
|
|
1400 | |
| 623 | if mysql_version_is_at_least "4.01.03.00" ; then |
1401 | if mysql_version_is_at_least "4.1.3" ; then |
| 624 | options="--skip-ndbcluster" |
|
|
| 625 | |
|
|
| 626 | # Filling timezones, see |
1402 | # Filling timezones, see |
| 627 | # http://dev.mysql.com/doc/mysql/en/time-zone-support.html |
1403 | # http://dev.mysql.com/doc/mysql/en/time-zone-support.html |
| 628 | "${ROOT}/usr/bin/mysql_tzinfo_to_sql" "${ROOT}/usr/share/zoneinfo" > "${sqltmp}" 2>/dev/null |
1404 | "${EROOT}/usr/bin/mysql_tzinfo_to_sql" "${EROOT}/usr/share/zoneinfo" > "${sqltmp}" 2>/dev/null |
| 629 | |
1405 | |
| 630 | if [[ -r "${help_tables}" ]] ; then |
1406 | if [[ -r "${help_tables}" ]] ; then |
| 631 | cat "${help_tables}" >> "${sqltmp}" |
1407 | cat "${help_tables}" >> "${sqltmp}" |
| 632 | fi |
1408 | fi |
| 633 | fi |
1409 | fi |
| 634 | |
1410 | |
|
|
1411 | einfo "Creating the mysql database and setting proper" |
|
|
1412 | einfo "permissions on it ..." |
|
|
1413 | |
|
|
1414 | use prefix || options="${options} --user=mysql" |
|
|
1415 | |
| 635 | local socket="${ROOT}/var/run/mysqld/mysqld${RANDOM}.sock" |
1416 | local socket="${EROOT}/var/run/mysqld/mysqld${RANDOM}.sock" |
| 636 | local pidfile="${ROOT}/var/run/mysqld/mysqld${RANDOM}.pid" |
1417 | local pidfile="${EROOT}/var/run/mysqld/mysqld${RANDOM}.pid" |
| 637 | local mysqld="${ROOT}/usr/sbin/mysqld \ |
1418 | local mysqld="${EROOT}/usr/sbin/mysqld \ |
| 638 | ${options} \ |
1419 | ${options} \ |
| 639 | --user=mysql \ |
1420 | --user=mysql \ |
| 640 | --skip-grant-tables \ |
|
|
| 641 | --basedir=${ROOT}/usr \ |
1421 | --basedir=${EROOT}/usr \ |
| 642 | --datadir=${ROOT}/${DATADIR} \ |
1422 | --datadir=${ROOT}/${MY_DATADIR} \ |
| 643 | --skip-innodb \ |
|
|
| 644 | --skip-bdb \ |
|
|
| 645 | --skip-networking \ |
|
|
| 646 | --max_allowed_packet=8M \ |
1423 | --max_allowed_packet=8M \ |
| 647 | --net_buffer_length=16K \ |
1424 | --net_buffer_length=16K \ |
|
|
1425 | --default-storage-engine=MyISAM \ |
| 648 | --socket=${socket} \ |
1426 | --socket=${socket} \ |
| 649 | --pid-file=${pidfile}" |
1427 | --pid-file=${pidfile}" |
|
|
1428 | #einfo "About to start mysqld: ${mysqld}" |
|
|
1429 | ebegin "Starting mysqld" |
| 650 | ${mysqld} & |
1430 | ${mysqld} & |
|
|
1431 | rc=$? |
| 651 | while ! [[ -S "${socket}" || "${maxtry}" -lt 1 ]] ; do |
1432 | while ! [[ -S "${socket}" || "${maxtry}" -lt 1 ]] ; do |
| 652 | maxtry=$((${maxtry}-1)) |
1433 | maxtry=$((${maxtry}-1)) |
| 653 | echo -n "." |
1434 | echo -n "." |
| 654 | sleep 1 |
1435 | sleep 1 |
| 655 | done |
1436 | done |
|
|
1437 | eend $rc |
| 656 | |
1438 | |
|
|
1439 | if ! [[ -S "${socket}" ]]; then |
|
|
1440 | die "Completely failed to start up mysqld with: ${mysqld}" |
|
|
1441 | fi |
|
|
1442 | |
|
|
1443 | ebegin "Setting root password" |
| 657 | # Do this from memory, as we don't want clear text passwords in temp files |
1444 | # Do this from memory, as we don't want clear text passwords in temp files |
| 658 | local sql="UPDATE mysql.user SET Password = PASSWORD('${pwd1}') WHERE USER='root'" |
1445 | local sql="UPDATE mysql.user SET Password = PASSWORD('${MYSQL_ROOT_PASSWORD}') WHERE USER='root'" |
| 659 | "${ROOT}/usr/bin/mysql" \ |
1446 | "${EROOT}/usr/bin/mysql" \ |
| 660 | --socket=${socket} \ |
1447 | --socket=${socket} \ |
| 661 | -hlocalhost \ |
1448 | -hlocalhost \ |
| 662 | -e "${sql}" |
1449 | -e "${sql}" |
|
|
1450 | eend $? |
| 663 | |
1451 | |
| 664 | einfo "Loading \"zoneinfo\", this step may require a few seconds ..." |
1452 | ebegin "Loading \"zoneinfo\", this step may require a few seconds ..." |
| 665 | |
|
|
| 666 | "${ROOT}/usr/bin/mysql" \ |
1453 | "${EROOT}/usr/bin/mysql" \ |
| 667 | --socket=${socket} \ |
1454 | --socket=${socket} \ |
| 668 | -hlocalhost \ |
1455 | -hlocalhost \ |
| 669 | -uroot \ |
1456 | -uroot \ |
| 670 | -p"${pwd1}" \ |
1457 | -p"${MYSQL_ROOT_PASSWORD}" \ |
| 671 | mysql < "${sqltmp}" |
1458 | mysql < "${sqltmp}" |
|
|
1459 | rc=$? |
|
|
1460 | eend $? |
|
|
1461 | [ $rc -ne 0 ] && ewarn "Failed to load zoneinfo!" |
| 672 | |
1462 | |
| 673 | # Stop the server and cleanup |
1463 | # Stop the server and cleanup |
|
|
1464 | einfo "Stopping the server ..." |
| 674 | kill $(< "${pidfile}" ) |
1465 | kill $(< "${pidfile}" ) |
| 675 | rm -f "${sqltmp}" |
1466 | rm -f "${sqltmp}" |
| 676 | einfo "Stopping the server ..." |
|
|
| 677 | wait %1 |
1467 | wait %1 |
| 678 | einfo "Done" |
1468 | einfo "Done" |
| 679 | } |
1469 | } |
| 680 | |
1470 | |
|
|
1471 | # @FUNCTION: mysql_pkg_postrm |
|
|
1472 | # @DESCRIPTION: |
|
|
1473 | # Remove mysql symlinks. |
| 681 | mysql_pkg_postrm() { |
1474 | mysql_pkg_postrm() { |
| 682 | mysql_lib_symlinks |
1475 | : # mysql_lib_symlinks "${ED}" |
| 683 | } |
1476 | } |