1 | # Copyright 1999-2006 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/Attic/mysql.eclass,v 1.63 2007/01/05 22:57:24 vivo Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/Attic/mysql.eclass,v 1.165 2011/08/29 01:28:10 vapier Exp $ |
4 | # kate: encoding utf-8; eol unix; |
|
|
5 | # kate: indent-width 4; mixedindent off; remove-trailing-space on; space-indent off; |
|
|
6 | # kate: word-wrap-column 80; word-wrap off; |
|
|
7 | |
4 | |
|
|
5 | # @ECLASS: mysql.eclass |
|
|
6 | # @MAINTAINER: |
|
|
7 | # MySQL Team <mysql-bugs@gentoo.org> |
|
|
8 | # Luca Longinotti <chtekk@gentoo.org> |
|
|
9 | # Robin H. Johnson <robbat2@gentoo.org> |
|
|
10 | # @AUTHOR: |
8 | # Author: Francesco Riosa (Retired) <vivo@gentoo.org> |
11 | # Francesco Riosa (Retired) <vivo@gentoo.org> |
9 | # Maintainer: Luca Longinotti <chtekk@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. |
10 | |
18 | |
11 | # Note that MYSQL_VERSION_ID must be empty !!! |
|
|
12 | |
|
|
13 | ECLASS="mysql" |
|
|
14 | INHERITED="$INHERITED $ECLASS" |
|
|
15 | WANT_AUTOCONF="latest" |
19 | WANT_AUTOCONF="latest" |
16 | WANT_AUTOMAKE="latest" |
20 | WANT_AUTOMAKE="latest" |
|
|
21 | |
17 | inherit eutils flag-o-matic gnuconfig autotools mysql_fx |
22 | inherit eutils flag-o-matic gnuconfig autotools mysql_fx versionator toolchain-funcs |
18 | |
23 | |
19 | # Shorten the path because the socket path length must be shorter than 107 chars |
24 | # Shorten the path because the socket path length must be shorter than 107 chars |
20 | # and we will run a mysql server during test phase |
25 | # and we will run a mysql server during test phase |
21 | S="${WORKDIR}/mysql" |
26 | S="${WORKDIR}/mysql" |
22 | |
27 | |
23 | [[ "${MY_EXTRAS_VER}" == "latest" ]] && MY_EXTRAS_VER="20070105" |
28 | [[ "${MY_EXTRAS_VER}" == "latest" ]] && MY_EXTRAS_VER="20090228-0714Z" |
24 | |
29 | if [[ "${MY_EXTRAS_VER}" == "live" ]]; then |
25 | if [[ ${PR#r} -lt 60 ]] ; then |
30 | EGIT_PROJECT=mysql-extras |
26 | IS_BITKEEPER=0 |
31 | EGIT_REPO_URI="git://git.overlays.gentoo.org/proj/mysql-extras.git" |
27 | elif [[ ${PR#r} -lt 90 ]] ; then |
32 | inherit git |
28 | IS_BITKEEPER=60 |
|
|
29 | else |
|
|
30 | IS_BITKEEPER=90 |
|
|
31 | fi |
33 | fi |
32 | |
34 | |
|
|
35 | case "${EAPI:-0}" in |
|
|
36 | 2) |
|
|
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: |
33 | # MYSQL_VERSION_ID will be: |
75 | # MYSQL_VERSION_ID will be: |
34 | # 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] |
35 | # 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 |
36 | # depend on this variable. |
78 | # depend on this variable. |
37 | # 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 |
|
|
81 | |
38 | MYSQL_VERSION_ID="" |
82 | MYSQL_VERSION_ID="" |
|
|
83 | tpv="${PV%[a-z]}" |
39 | tpv=( ${PV//[-._]/ } ) ; tpv[3]="${PVR:${#PV}}" ; tpv[3]="${tpv[3]##*-r}" |
84 | tpv=( ${tpv//[-._]/ } ) ; tpv[3]="${PVR:${#PV}}" ; tpv[3]="${tpv[3]##*-r}" |
40 | for vatom in 0 1 2 3 ; do |
85 | for vatom in 0 1 2 3 ; do |
41 | # pad to length 2 |
86 | # pad to length 2 |
42 | tpv[${vatom}]="00${tpv[${vatom}]}" |
87 | tpv[${vatom}]="00${tpv[${vatom}]}" |
43 | MYSQL_VERSION_ID="${MYSQL_VERSION_ID}${tpv[${vatom}]:0-2}" |
88 | MYSQL_VERSION_ID="${MYSQL_VERSION_ID}${tpv[${vatom}]:0-2}" |
44 | done |
89 | done |
45 | # 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) |
46 | MYSQL_VERSION_ID=${MYSQL_VERSION_ID##"0"} |
91 | MYSQL_VERSION_ID=${MYSQL_VERSION_ID##"0"} |
47 | |
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 |
|
|
115 | fi |
|
|
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 | |
48 | # Be warned, *DEPEND are version-dependant |
127 | # Be warned, *DEPEND are version-dependant |
|
|
128 | # These are used for both runtime and compiletime |
49 | DEPEND="ssl? ( >=dev-libs/openssl-0.9.6d ) |
129 | DEPEND="ssl? ( >=dev-libs/openssl-0.9.6d ) |
50 | userland_GNU? ( sys-process/procps ) |
130 | userland_GNU? ( sys-process/procps ) |
51 | >=sys-apps/sed-4 |
131 | >=sys-apps/sed-4 |
52 | >=sys-apps/texinfo-4.7-r1 |
132 | >=sys-apps/texinfo-4.7-r1 |
53 | >=sys-libs/readline-4.1 |
133 | >=sys-libs/readline-4.1 |
54 | >=sys-libs/zlib-1.2.3 |
134 | >=sys-libs/zlib-1.2.3" |
55 | " |
|
|
56 | |
135 | |
|
|
136 | [[ "${PN}" == "mariadb" ]] \ |
|
|
137 | && DEPEND="${DEPEND} libevent? ( >=dev-libs/libevent-1.4 )" |
|
|
138 | |
57 | # 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 |
58 | for i in "" "-community" "-slotted" ; do |
140 | for i in "mysql" "mysql-community" "mysql-cluster" "mariadb" ; do |
59 | [[ "${i}" == ${PN#mysql} ]] || |
141 | [[ "${i}" == ${PN} ]] || |
60 | DEPEND="${DEPEND} !dev-db/mysql${i}" |
142 | DEPEND="${DEPEND} !dev-db/${i}" |
61 | done |
143 | done |
62 | |
144 | |
|
|
145 | RDEPEND="${DEPEND} |
|
|
146 | !minimal? ( dev-db/mysql-init-scripts ) |
|
|
147 | selinux? ( sec-policy/selinux-mysql )" |
|
|
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 | |
|
|
156 | # compile-time-only |
63 | mysql_version_is_at_least "5.1" \ |
157 | mysql_version_is_at_least "5.1" \ |
64 | || DEPEND="${DEPEND} berkdb? ( sys-apps/ed )" |
158 | || DEPEND="${DEPEND} berkdb? ( sys-apps/ed )" |
65 | |
159 | |
|
|
160 | # compile-time-only |
|
|
161 | mysql_version_is_at_least "5.1.12" \ |
|
|
162 | && DEPEND="${DEPEND} >=dev-util/cmake-2.4.3" |
|
|
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 | |
66 | # 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 |
67 | PDEPEND="perl? ( >=dev-perl/DBD-mysql-2.9004 )" |
171 | PDEPEND="perl? ( >=dev-perl/DBD-mysql-2.9004 )" |
68 | |
172 | |
69 | if mysql_version_is_at_least "5.1.12" ; then |
173 | # For other stuff to bring us in |
70 | DEPEND="${DEPEND} innodb? ( >=dev-util/cmake-2.4.3 )" |
174 | PDEPEND="${PDEPEND} =virtual/mysql-${MYSQL_PV_MAJOR}" |
|
|
175 | |
|
|
176 | # Work out the default SERVER_URI correctly |
|
|
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 | " |
|
|
190 | # The community and cluster builds are on the mirrors |
|
|
191 | elif [[ "${MYSQL_COMMUNITY_FEATURES}" == "1" || ${PN} == "mysql-cluster" ]] ; then |
|
|
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}" |
|
|
204 | # The (old) enterprise source is on the primary site only |
|
|
205 | elif [ "${PN}" == "mysql" ]; then |
|
|
206 | SERVER_URI="ftp://ftp.mysql.com/pub/mysql/src/mysql-${MY_PV}.tar.gz" |
|
|
207 | fi |
71 | fi |
208 | fi |
72 | |
209 | |
73 | # BitKeeper dependency, compile-time only |
|
|
74 | [[ ${IS_BITKEEPER} -eq 90 ]] && DEPEND="${DEPEND} dev-util/bk_client" |
|
|
75 | |
|
|
76 | if [[ ${PN} == "mysql-slotted" ]] ; then |
|
|
77 | DEPEND="${DEPEND} app-admin/eselect-mysql" |
|
|
78 | fi |
|
|
79 | |
|
|
80 | if [[ ${PN} == "mysql-slotted" ]] ; then |
|
|
81 | SLOT="" |
|
|
82 | tpv=( ${PV//[-._]/ } ) |
|
|
83 | for vatom in 0 1 2 ; do |
|
|
84 | SLOT="${SLOT}${tpv[${vatom}]}_" |
|
|
85 | done |
|
|
86 | #finally SLOT=5_0_24 |
|
|
87 | SLOT=${SLOT:0:${#SLOT}-1} |
|
|
88 | else |
|
|
89 | SLOT="0" |
|
|
90 | fi |
|
|
91 | |
|
|
92 | # Define correct SRC_URIs |
210 | # Define correct SRC_URIs |
93 | SRC_URI=" |
211 | SRC_URI="${SERVER_URI}" |
94 | ${SERVER_URI} |
212 | |
|
|
213 | # Gentoo patches to MySQL |
|
|
214 | [[ ${MY_EXTRAS_VER} != live ]] \ |
|
|
215 | && SRC_URI="${SRC_URI} |
|
|
216 | mirror://gentoo/mysql-extras-${MY_EXTRAS_VER}.tar.bz2 |
95 | http://g3nt8.org/patches/mysql-extras-${MY_EXTRAS_VER}.tar.bz2 |
217 | http://g3nt8.org/patches/mysql-extras-${MY_EXTRAS_VER}.tar.bz2 |
96 | " |
218 | http://dev.gentoo.org/~robbat2/distfiles/mysql-extras-${MY_EXTRAS_VER}.tar.bz2" |
97 | mysql_version_is_at_least "5.1.12" \ |
|
|
98 | && [[ -n "${PBXT_VERSION}" ]] \ |
|
|
99 | && SRC_URI="${SRC_URI} pbxt? ( mirror://sourceforge/pbxt/pbxt-${PBXT_VERSION}.tar.gz )" |
|
|
100 | |
219 | |
101 | DESCRIPTION="A fast, multi-threaded, multi-user SQL database server." |
220 | DESCRIPTION="A fast, multi-threaded, multi-user SQL database server." |
102 | 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 |
103 | LICENSE="GPL-2" |
229 | LICENSE="GPL-2" |
|
|
230 | SLOT="0" |
104 | IUSE="big-tables debug embedded minimal perl selinux ssl static" |
231 | IUSE="big-tables debug embedded minimal ${IUSE_DEFAULT_ON}perl selinux ssl static test" |
105 | RESTRICT="confcache" |
|
|
106 | |
232 | |
107 | mysql_version_is_at_least "4.1" \ |
233 | mysql_version_is_at_least "4.1" \ |
108 | && IUSE="${IUSE} latin1" |
234 | && IUSE="${IUSE} latin1" |
109 | |
235 | |
110 | mysql_version_is_at_least "4.1.3" \ |
236 | if mysql_version_is_at_least "4.1.3" ; then |
111 | && IUSE="${IUSE} cluster extraengine" |
237 | IUSE="${IUSE} extraengine" |
|
|
238 | if [[ "${PN}" != "mysql-cluster" ]] ; then |
|
|
239 | IUSE="${IUSE} cluster" |
|
|
240 | fi |
|
|
241 | fi |
112 | |
242 | |
113 | mysql_version_is_at_least "5.0" \ |
243 | mysql_version_is_at_least "5.0" \ |
114 | || IUSE="${IUSE} raid" |
244 | || IUSE="${IUSE} raid" |
115 | |
245 | |
116 | mysql_version_is_at_least "5.0.18" \ |
246 | mysql_version_is_at_least "5.0.18" \ |
117 | && IUSE="${IUSE} max-idx-128" |
247 | && IUSE="${IUSE} max-idx-128" |
118 | |
248 | |
119 | mysql_version_is_at_least "5.1" \ |
249 | mysql_version_is_at_least "5.1" \ |
120 | && IUSE="${IUSE} innodb" |
|
|
121 | |
|
|
122 | mysql_version_is_at_least "5.1" \ |
|
|
123 | || IUSE="${IUSE} berkdb" |
250 | || IUSE="${IUSE} berkdb" |
124 | |
251 | |
|
|
252 | [ "${MYSQL_COMMUNITY_FEATURES}" == "1" ] \ |
|
|
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" ]] \ |
125 | mysql_version_is_at_least "5.1.12" \ |
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 \ |
126 | && IUSE="${IUSE} pbxt" |
299 | && IUSE="${IUSE} pbxt" \ |
|
|
300 | && mysql_version_is_at_least "5.1.40" \ |
|
|
301 | && PBXT_NEWSTYLE=1 |
127 | |
302 | |
128 | RDEPEND="${DEPEND} |
303 | xtradb_patch_available \ |
129 | sys-apps/mysql |
304 | && XTRADB_P="percona-xtradb-${XTRADB_VER}" \ |
130 | selinux? ( sec-policy/selinux-mysql ) |
305 | && XTRADB_SRC_URI_COMMON="${PERCONA_VER}/source/${XTRADB_P}.tar.gz" \ |
131 | " |
306 | && XTRADB_SRC_B1="http://www.percona.com/" \ |
132 | |
307 | && XTRADB_SRC_B2="${XTRADB_SRC_B1}/percona-builds/" \ |
133 | EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_preinst \ |
308 | && XTRADB_SRC_URI1="${XTRADB_SRC_B2}/Percona-Server/Percona-Server-${XTRADB_SRC_URI_COMMON}" \ |
134 | pkg_postinst pkg_config pkg_postrm |
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" |
135 | |
313 | |
136 | # |
314 | # |
137 | # HELPER FUNCTIONS: |
315 | # HELPER FUNCTIONS: |
138 | # |
316 | # |
139 | |
317 | |
140 | bitkeeper_fetch() { |
318 | # @FUNCTION: mysql_disable_test |
141 | |
319 | # @DESCRIPTION: |
142 | local reposuf |
320 | # Helper function to disable specific tests. |
143 | if [[ -z "${1}" ]] ; then |
|
|
144 | local tpv |
|
|
145 | tpv=( ${PV//[-._]/ } ) |
|
|
146 | reposuf="mysql-${tpv[0]}.${tpv[1]}" |
|
|
147 | else |
|
|
148 | reposuf="${1}" |
|
|
149 | fi |
|
|
150 | einfo "using \"${reposuf}\" repository." |
|
|
151 | local repo_uri="bk://mysql.bkbits.net/${reposuf}" |
|
|
152 | ## -- ebk_store_dir: bitkeeper sources store directory |
|
|
153 | local ebk_store_dir="${PORTAGE_ACTUAL_DISTDIR-${DISTDIR}}/bk-src" |
|
|
154 | ## -- ebk_fetch_cmd: bitkeeper fetch command |
|
|
155 | # always fetch the latest revision, use -r<revision> if a specified revision is wanted |
|
|
156 | # hint: does not work |
|
|
157 | local ebk_fetch_cmd="sfioball" |
|
|
158 | ## -- ebk_update_cmd: bitkeeper update command |
|
|
159 | local ebk_update_cmd="update" |
|
|
160 | |
|
|
161 | #addread "/etc/bitkeeper" |
|
|
162 | addwrite "${ebk_store_dir}" |
|
|
163 | |
|
|
164 | if [[ ! -d "${ebk_store_dir}" ]]; then |
|
|
165 | debug-print "${FUNCNAME}: initial checkout. creating bitkeeper directory" |
|
|
166 | mkdir -p "${ebk_store_dir}" || die "${EBK}: can't mkdir ${ebk_store_dir}." |
|
|
167 | fi |
|
|
168 | |
|
|
169 | pushd "${ebk_store_dir}" || die "${EBK}: can't chdir to ${ebk_store_dir}" |
|
|
170 | |
|
|
171 | local wc_path=${reposuf} |
|
|
172 | |
|
|
173 | if [[ ! -d "${wc_path}" ]]; then |
|
|
174 | local options="-r+" |
|
|
175 | # first check out |
|
|
176 | einfo "bitkeeper check out start -->" |
|
|
177 | elog " repository: ${repo_uri}" |
|
|
178 | ${ebk_fetch_cmd} ${options} "${repo_uri}" ${wc_path} \ |
|
|
179 | || die "${EBK}: can't fetch from ${repo_uri}." |
|
|
180 | else |
|
|
181 | if [[ ! -d "${wc_path}/BK" ]]; then |
|
|
182 | popd |
|
|
183 | die "Look like ${wc_path} is not a bitkeeper path." |
|
|
184 | fi |
|
|
185 | |
|
|
186 | # update working copy |
|
|
187 | einfo "bitkeeper update start -->" |
|
|
188 | elog " repository: ${repo_uri}" |
|
|
189 | |
|
|
190 | ${ebk_update_cmd} "${repo_uri}" "${wc_path}" \ |
|
|
191 | || die "BK: can't update from ${repo_uri} to ${wc_path}." |
|
|
192 | fi |
|
|
193 | |
|
|
194 | einfo " working copy: ${wc_path}" |
|
|
195 | cd "${wc_path}" |
|
|
196 | rsync -rlpgo --exclude="BK/" . "${S}" || die "BK: can't export to ${S}." |
|
|
197 | |
|
|
198 | echo |
|
|
199 | popd |
|
|
200 | |
|
|
201 | } |
|
|
202 | |
|
|
203 | mysql_disable_test() { |
321 | mysql_disable_test() { |
|
|
322 | local rawtestname testname testsuite reason mysql_disable_file |
204 | local testname="${1}" ; shift |
323 | rawtestname="${1}" ; shift |
205 | local reason="${@}" |
324 | reason="${@}" |
|
|
325 | ewarn "test '${rawtestname}' disabled: '${reason}'" |
|
|
326 | |
|
|
327 | testsuite="${rawtestname/.*}" |
|
|
328 | testname="${rawtestname/*.}" |
206 | 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}" |
207 | echo ${testname} : ${reason} >> "${mysql_disable_file}" |
331 | echo ${testname} : ${reason} >> "${mysql_disable_file}" |
208 | ewarn "test \"${testname}\" disabled because: \"${reason}\"" |
|
|
209 | } |
|
|
210 | |
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 |
|
|
358 | } |
|
|
359 | |
|
|
360 | # @FUNCTION: mysql_init_vars |
|
|
361 | # @DESCRIPTION: |
211 | # void mysql_init_vars() |
362 | # void mysql_init_vars() |
212 | # |
|
|
213 | # Initialize global variables |
363 | # Initialize global variables |
214 | # 2005-11-19 <vivo@gentoo.org> |
364 | # 2005-11-19 <vivo@gentoo.org> |
215 | |
|
|
216 | mysql_init_vars() { |
365 | mysql_init_vars() { |
217 | if [[ ${SLOT} == "0" ]] ; then |
|
|
218 | MY_SUFFIX="" |
|
|
219 | else |
|
|
220 | MY_SUFFIX=${MY_SUFFIX:-"-${SLOT}"} |
|
|
221 | fi |
|
|
222 | MY_SHAREDSTATEDIR=${MY_SHAREDSTATEDIR:-"/usr/share/mysql${MY_SUFFIX}"} |
366 | MY_SHAREDSTATEDIR=${MY_SHAREDSTATEDIR="/usr/share/mysql"} |
223 | MY_SYSCONFDIR=${MY_SYSCONFDIR="/etc/mysql${MY_SUFFIX}"} |
367 | MY_SYSCONFDIR=${MY_SYSCONFDIR="/etc/mysql"} |
224 | MY_LIBDIR=${MY_LIBDIR="/usr/$(get_libdir)/mysql${MY_SUFFIX}"} |
368 | MY_LIBDIR=${MY_LIBDIR="/usr/$(get_libdir)/mysql"} |
225 | MY_LOCALSTATEDIR=${MY_LOCALSTATEDIR="/var/lib/mysql${MY_SUFFIX}"} |
369 | MY_LOCALSTATEDIR=${MY_LOCALSTATEDIR="/var/lib/mysql"} |
226 | MY_LOGDIR=${MY_LOGDIR="/var/log/mysql${MY_SUFFIX}"} |
370 | MY_LOGDIR=${MY_LOGDIR="/var/log/mysql"} |
227 | MY_INCLUDEDIR=${MY_INCLUDEDIR="/usr/include/mysql${MY_SUFFIX}"} |
371 | MY_INCLUDEDIR=${MY_INCLUDEDIR="/usr/include/mysql"} |
228 | |
372 | |
229 | if [[ -z "${DATADIR}" ]] ; then |
373 | if [[ -z "${MY_DATADIR}" ]] ; then |
230 | DATADIR="" |
374 | MY_DATADIR="" |
231 | if [[ -f "${MY_SYSCONFDIR}/my.cnf" ]] ; then |
375 | if [[ -f "${MY_SYSCONFDIR}/my.cnf" ]] ; then |
232 | DATADIR=`"my_print_defaults${MY_SUFFIX}" mysqld 2>/dev/null \ |
376 | MY_DATADIR=`"my_print_defaults" mysqld 2>/dev/null \ |
233 | | sed -ne '/datadir/s|^--datadir=||p' \ |
377 | | sed -ne '/datadir/s|^--datadir=||p' \ |
234 | | tail -n1` |
378 | | tail -n1` |
235 | if [[ -z "${DATADIR}" ]] ; then |
379 | if [[ -z "${MY_DATADIR}" ]] ; then |
236 | DATADIR=`grep ^datadir "${MY_SYSCONFDIR}/my.cnf" \ |
380 | MY_DATADIR=`grep ^datadir "${MY_SYSCONFDIR}/my.cnf" \ |
237 | | sed -e 's/.*=\s*//'` |
381 | | sed -e 's/.*=\s*//' \ |
|
|
382 | | tail -n1` |
238 | fi |
383 | fi |
239 | fi |
384 | fi |
240 | if [[ -z "${DATADIR}" ]] ; then |
385 | if [[ -z "${MY_DATADIR}" ]] ; then |
241 | DATADIR="${MY_LOCALSTATEDIR}" |
386 | MY_DATADIR="${MY_LOCALSTATEDIR}" |
242 | einfo "Using default DATADIR" |
387 | einfo "Using default MY_DATADIR" |
243 | fi |
388 | fi |
244 | elog "MySQL DATADIR is ${DATADIR}" |
389 | elog "MySQL MY_DATADIR is ${MY_DATADIR}" |
245 | |
390 | |
246 | if [[ -z "${PREVIOUS_DATADIR}" ]] ; then |
391 | if [[ -z "${PREVIOUS_DATADIR}" ]] ; then |
247 | if [[ -e "${DATADIR}" ]] ; then |
392 | if [[ -e "${MY_DATADIR}" ]] ; then |
248 | elog "Previous datadir found, it's YOUR job to change" |
393 | # If you get this and you're wondering about it, see bug #207636 |
249 | elog "ownership and take care of it" |
394 | elog "MySQL datadir found in ${MY_DATADIR}" |
|
|
395 | elog "A new one will not be created." |
250 | PREVIOUS_DATADIR="yes" |
396 | PREVIOUS_DATADIR="yes" |
251 | else |
397 | else |
252 | PREVIOUS_DATADIR="no" |
398 | PREVIOUS_DATADIR="no" |
253 | fi |
399 | fi |
254 | export PREVIOUS_DATADIR |
400 | export PREVIOUS_DATADIR |
255 | fi |
401 | fi |
|
|
402 | else |
|
|
403 | if [[ ${EBUILD_PHASE} == "config" ]]; then |
|
|
404 | local new_MY_DATADIR |
|
|
405 | new_MY_DATADIR=`"my_print_defaults" mysqld 2>/dev/null \ |
|
|
406 | | sed -ne '/datadir/s|^--datadir=||p' \ |
|
|
407 | | tail -n1` |
|
|
408 | |
|
|
409 | if [[ ( -n "${new_MY_DATADIR}" ) && ( "${new_MY_DATADIR}" != "${MY_DATADIR}" ) ]]; then |
|
|
410 | ewarn "MySQL MY_DATADIR has changed" |
|
|
411 | ewarn "from ${MY_DATADIR}" |
|
|
412 | ewarn "to ${new_MY_DATADIR}" |
|
|
413 | MY_DATADIR="${new_MY_DATADIR}" |
|
|
414 | fi |
256 | fi |
415 | fi |
|
|
416 | fi |
257 | |
417 | |
|
|
418 | if [ "${MY_SOURCEDIR:-unset}" == "unset" ]; then |
258 | MY_SOURCEDIR=${SERVER_URI##*/} |
419 | MY_SOURCEDIR=${SERVER_URI##*/} |
259 | MY_SOURCEDIR=${MY_SOURCEDIR%.tar*} |
420 | MY_SOURCEDIR=${MY_SOURCEDIR%.tar*} |
|
|
421 | fi |
260 | |
422 | |
261 | export MY_SUFFIX MY_SHAREDSTATEDIR MY_SYSCONFDIR |
423 | export MY_SHAREDSTATEDIR MY_SYSCONFDIR |
262 | export MY_LIBDIR MY_LOCALSTATEDIR MY_LOGDIR |
424 | export MY_LIBDIR MY_LOCALSTATEDIR MY_LOGDIR |
263 | export MY_INCLUDEDIR DATADIR MY_SOURCEDIR |
425 | export MY_INCLUDEDIR MY_DATADIR MY_SOURCEDIR |
264 | } |
426 | } |
265 | |
427 | |
266 | configure_minimal() { |
428 | configure_minimal() { |
267 | # These are things we exclude from a minimal build, please |
429 | # These are things we exclude from a minimal build, please |
268 | # note that the server actually does get built and installed, |
430 | # note that the server actually does get built and installed, |
269 | # but we then delete it before packaging. |
431 | # but we then delete it before packaging. |
270 | local minimal_exclude_list="server embedded-server extra-tools innodb bench berkeley-db row-based-replication" |
432 | local minimal_exclude_list="server embedded-server extra-tools innodb bench berkeley-db row-based-replication readline" |
271 | |
433 | |
272 | for i in ${minimal_exclude_list} ; do |
434 | for i in ${minimal_exclude_list} ; do |
273 | myconf="${myconf} --without-${i}" |
435 | myconf="${myconf} --without-${i}" |
274 | done |
436 | done |
275 | myconf="${myconf} --with-extra-charsets=none" |
437 | myconf="${myconf} --with-extra-charsets=none" |
276 | myconf="${myconf} --enable-local-infile" |
438 | myconf="${myconf} --enable-local-infile" |
277 | |
439 | |
278 | if useq "static" ; then |
440 | if use static ; then |
279 | myconf="${myconf} --with-client-ldflags=-all-static" |
441 | myconf="${myconf} --with-client-ldflags=-all-static" |
280 | myconf="${myconf} --disable-shared" |
442 | myconf="${myconf} --disable-shared --with-pic" |
281 | else |
443 | else |
282 | myconf="${myconf} --enable-shared --enable-static" |
444 | myconf="${myconf} --enable-shared --enable-static" |
283 | fi |
445 | fi |
284 | |
446 | |
285 | if mysql_version_is_at_least "4.01.00.00" && ! useq "latin1" ; then |
447 | if mysql_version_is_at_least "4.1" && ! use latin1 ; then |
286 | myconf="${myconf} --with-charset=utf8" |
448 | myconf="${myconf} --with-charset=utf8" |
287 | myconf="${myconf} --with-collation=utf8_general_ci" |
449 | myconf="${myconf} --with-collation=utf8_general_ci" |
288 | else |
450 | else |
289 | myconf="${myconf} --with-charset=latin1" |
451 | myconf="${myconf} --with-charset=latin1" |
290 | myconf="${myconf} --with-collation=latin1_swedish_ci" |
452 | myconf="${myconf} --with-collation=latin1_swedish_ci" |
… | |
… | |
298 | myconf="${myconf} --with-mysqld-user=mysql" |
460 | myconf="${myconf} --with-mysqld-user=mysql" |
299 | myconf="${myconf} --with-server" |
461 | myconf="${myconf} --with-server" |
300 | myconf="${myconf} --with-unix-socket-path=/var/run/mysqld/mysqld.sock" |
462 | myconf="${myconf} --with-unix-socket-path=/var/run/mysqld/mysqld.sock" |
301 | myconf="${myconf} --without-libwrap" |
463 | myconf="${myconf} --without-libwrap" |
302 | |
464 | |
303 | if useq "static" ; then |
465 | if use static ; then |
304 | myconf="${myconf} --with-mysqld-ldflags=-all-static" |
466 | myconf="${myconf} --with-mysqld-ldflags=-all-static" |
305 | myconf="${myconf} --with-client-ldflags=-all-static" |
467 | myconf="${myconf} --with-client-ldflags=-all-static" |
306 | myconf="${myconf} --disable-shared" |
468 | myconf="${myconf} --disable-shared --with-pic" |
307 | else |
469 | else |
308 | myconf="${myconf} --enable-shared --enable-static" |
470 | myconf="${myconf} --enable-shared --enable-static" |
309 | fi |
471 | fi |
310 | |
472 | |
311 | if useq "debug" ; then |
473 | if use debug ; then |
312 | myconf="${myconf} --with-debug=full" |
474 | myconf="${myconf} --with-debug=full" |
313 | else |
475 | else |
314 | myconf="${myconf} --without-debug" |
476 | myconf="${myconf} --without-debug" |
315 | mysql_version_is_at_least "4.1.3" \ |
477 | mysql_version_is_at_least "4.1.3" \ |
316 | && useq "cluster" \ |
478 | && ( use cluster || [[ "${PN}" == "mysql-cluster" ]] ) \ |
317 | && myconf="${myconf} --without-ndb-debug" |
479 | && myconf="${myconf} --without-ndb-debug" |
318 | fi |
480 | fi |
319 | |
481 | |
|
|
482 | if [ -n "${MYSQL_DEFAULT_CHARSET}" -a -n "${MYSQL_DEFAULT_COLLATION}" ]; then |
|
|
483 | ewarn "You are using a custom charset of ${MYSQL_DEFAULT_CHARSET}" |
|
|
484 | ewarn "and a collation of ${MYSQL_DEFAULT_COLLATION}." |
|
|
485 | ewarn "You MUST file bugs without these variables set." |
|
|
486 | myconf="${myconf} --with-charset=${MYSQL_DEFAULT_CHARSET}" |
|
|
487 | myconf="${myconf} --with-collation=${MYSQL_DEFAULT_COLLATION}" |
320 | if mysql_version_is_at_least "4.1" && ! useq "latin1" ; then |
488 | elif mysql_version_is_at_least "4.1" && ! use latin1 ; then |
321 | myconf="${myconf} --with-charset=utf8" |
489 | myconf="${myconf} --with-charset=utf8" |
322 | myconf="${myconf} --with-collation=utf8_general_ci" |
490 | myconf="${myconf} --with-collation=utf8_general_ci" |
323 | else |
491 | else |
324 | myconf="${myconf} --with-charset=latin1" |
492 | myconf="${myconf} --with-charset=latin1" |
325 | myconf="${myconf} --with-collation=latin1_swedish_ci" |
493 | myconf="${myconf} --with-collation=latin1_swedish_ci" |
326 | fi |
494 | fi |
327 | |
495 | |
328 | if useq "embedded" ; then |
496 | if use embedded ; then |
329 | myconf="${myconf} --with-embedded-privilege-control" |
497 | myconf="${myconf} --with-embedded-privilege-control" |
330 | myconf="${myconf} --with-embedded-server" |
498 | myconf="${myconf} --with-embedded-server" |
331 | else |
499 | else |
332 | myconf="${myconf} --without-embedded-privilege-control" |
500 | myconf="${myconf} --without-embedded-privilege-control" |
333 | myconf="${myconf} --without-embedded-server" |
501 | myconf="${myconf} --without-embedded-server" |
… | |
… | |
339 | myconf="${myconf} $(use_with perl bench)" |
507 | myconf="${myconf} $(use_with perl bench)" |
340 | myconf="${myconf} --enable-assembler" |
508 | myconf="${myconf} --enable-assembler" |
341 | myconf="${myconf} --with-extra-tools" |
509 | myconf="${myconf} --with-extra-tools" |
342 | myconf="${myconf} --with-innodb" |
510 | myconf="${myconf} --with-innodb" |
343 | myconf="${myconf} --without-readline" |
511 | myconf="${myconf} --without-readline" |
|
|
512 | myconf="${myconf} $(use_with ssl openssl)" |
344 | 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)" |
345 | |
514 | |
346 | if useq "ssl" ; then |
|
|
347 | # --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 |
348 | # has been removed from configure |
516 | # has been removed from configure |
|
|
517 | # Apply to 4.x and 5.0.[0-3] |
|
|
518 | if use ssl ; then |
349 | 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" |
350 | fi |
520 | fi |
351 | |
521 | |
352 | if mysql_version_is_at_least "5.1.11" ; then |
522 | if mysql_version_is_at_least "5.0.60" ; then |
353 | myconf="${myconf} $(use_with ssl)" |
523 | if use berkdb ; then |
|
|
524 | elog "Berkeley DB support was disabled due to build failures" |
|
|
525 | elog "on multiple arches, go to a version earlier than 5.0.60" |
|
|
526 | elog "if you want it again. Gentoo bug #224067." |
|
|
527 | fi |
|
|
528 | myconf="${myconf} --without-berkeley-db" |
|
|
529 | elif use berkdb ; then |
|
|
530 | # The following fix is due to a bug with bdb on SPARC's. See: |
|
|
531 | # http://www.geocrawler.com/mail/msg.php3?msg_id=4754814&list=8 |
|
|
532 | # It comes down to non-64-bit safety problems. |
|
|
533 | if use alpha || use amd64 || use hppa || use mips || use sparc ; then |
|
|
534 | elog "Berkeley DB support was disabled due to compatibility issues on this arch" |
|
|
535 | myconf="${myconf} --without-berkeley-db" |
|
|
536 | else |
|
|
537 | myconf="${myconf} --with-berkeley-db=./bdb" |
|
|
538 | fi |
354 | else |
539 | else |
355 | myconf="${myconf} $(use_with ssl openssl)" |
|
|
356 | fi |
|
|
357 | |
|
|
358 | # The following fix is due to a bug with bdb on SPARC's. See: |
|
|
359 | # http://www.geocrawler.com/mail/msg.php3?msg_id=4754814&list=8 |
|
|
360 | # It comes down to non-64-bit safety problems. |
|
|
361 | if useq "sparc" || useq "alpha" || useq "hppa" || useq "mips" || useq "amd64" ; then |
|
|
362 | elog "Berkeley DB support was disabled due to incompatible arch" |
|
|
363 | myconf="${myconf} --without-berkeley-db" |
540 | myconf="${myconf} --without-berkeley-db" |
364 | else |
|
|
365 | if useq "berkdb" ; then |
|
|
366 | myconf="${myconf} --with-berkeley-db=./bdb" |
|
|
367 | else |
|
|
368 | myconf="${myconf} --without-berkeley-db" |
|
|
369 | fi |
|
|
370 | fi |
541 | fi |
371 | |
542 | |
372 | if mysql_version_is_at_least "4.1.3" ; then |
543 | if mysql_version_is_at_least "4.1.3" ; then |
373 | myconf="${myconf} --with-geometry" |
544 | myconf="${myconf} --with-geometry" |
|
|
545 | if [[ "${PN}" != "mysql-cluster" ]] ; then |
374 | myconf="${myconf} $(use_with cluster ndbcluster)" |
546 | myconf="${myconf} $(use_with cluster ndbcluster)" |
375 | fi |
547 | fi |
|
|
548 | fi |
376 | |
549 | |
377 | if mysql_version_is_at_least "4.1.3" && useq "extraengine" ; then |
550 | if mysql_version_is_at_least "4.1.3" && use extraengine ; then |
378 | # http://dev.mysql.com/doc/mysql/en/archive-storage-engine.html |
551 | # http://dev.mysql.com/doc/mysql/en/archive-storage-engine.html |
379 | myconf="${myconf} --with-archive-storage-engine" |
552 | myconf="${myconf} --with-archive-storage-engine" |
380 | |
553 | |
381 | # http://dev.mysql.com/doc/mysql/en/csv-storage-engine.html |
554 | # http://dev.mysql.com/doc/mysql/en/csv-storage-engine.html |
382 | myconf="${myconf} --with-csv-storage-engine" |
555 | myconf="${myconf} --with-csv-storage-engine" |
… | |
… | |
392 | elog "http://dev.mysql.com/doc/mysql/en/federated-limitations.html" |
565 | elog "http://dev.mysql.com/doc/mysql/en/federated-limitations.html" |
393 | myconf="${myconf} --with-federated-storage-engine" |
566 | myconf="${myconf} --with-federated-storage-engine" |
394 | fi |
567 | fi |
395 | fi |
568 | fi |
396 | |
569 | |
|
|
570 | if [ "${MYSQL_COMMUNITY_FEATURES}" == "1" ]; then |
|
|
571 | myconf="${myconf} `use_enable community community-features`" |
|
|
572 | if use community; then |
|
|
573 | myconf="${myconf} `use_enable profiling`" |
|
|
574 | else |
|
|
575 | myconf="${myconf} --disable-profiling" |
|
|
576 | fi |
|
|
577 | fi |
|
|
578 | |
397 | mysql_version_is_at_least "5.0.18" \ |
579 | mysql_version_is_at_least "5.0.18" \ |
398 | && useq "max-idx-128" \ |
580 | && use max-idx-128 \ |
399 | && myconf="${myconf} --with-max-indexes=128" |
581 | && myconf="${myconf} --with-max-indexes=128" |
400 | } |
582 | } |
401 | |
583 | |
402 | configure_51() { |
584 | configure_51() { |
403 | # TODO: !!!! readd --without-readline |
585 | # TODO: !!!! readd --without-readline |
404 | # the failure depend upon config/ac-macros/readline.m4 checking into |
586 | # the failure depend upon config/ac-macros/readline.m4 checking into |
405 | # readline.h instead of history.h |
587 | # readline.h instead of history.h |
406 | myconf="${myconf} $(use_with ssl)" |
588 | myconf="${myconf} $(use_with ssl ssl /usr)" |
407 | myconf="${myconf} --enable-assembler" |
589 | myconf="${myconf} --enable-assembler" |
408 | myconf="${myconf} --with-geometry" |
590 | myconf="${myconf} --with-geometry" |
409 | myconf="${myconf} --with-readline" |
591 | myconf="${myconf} --with-readline" |
410 | myconf="${myconf} --with-row-based-replication" |
|
|
411 | myconf="${myconf} --with-zlib=/usr/$(get_libdir)" |
592 | myconf="${myconf} --with-zlib-dir=/usr/" |
412 | 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" |
413 | useq "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 | )" |
414 | |
626 | |
415 | # 5.1 introduces a new way to manage storage engines (plugins) |
627 | # 5.1 introduces a new way to manage storage engines (plugins) |
416 | # like configuration=none |
628 | # like configuration=none |
|
|
629 | # This base set are required, and will always be statically built. |
417 | 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 |
418 | if useq "extraengine" ; then |
642 | if use extraengine ; then |
419 | # 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 |
420 | 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" |
421 | |
647 | |
|
|
648 | if [[ "${PN}" != "mariadb" ]] ; then |
422 | 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" |
423 | 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" |
424 | fi |
656 | fi |
425 | |
657 | else |
426 | if useq "innodb" ; then |
658 | plugins_dis="${plugins_dis} partition federated" |
427 | plugins="${plugins},innobase" |
|
|
428 | fi |
659 | fi |
|
|
660 | |
|
|
661 | # Upstream specifically requests that InnoDB always be built: |
|
|
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 |
429 | |
670 | |
430 | # like configuration=max-no-ndb |
671 | # like configuration=max-no-ndb |
431 | if useq "cluster" ; then |
672 | if ( use cluster || [[ "${PN}" == "mysql-cluster" ]] ) ; then |
432 | plugins="${plugins},ndbcluster" |
673 | plugins_sta="${plugins_sta} ndbcluster partition" |
|
|
674 | plugins_dis="${plugins_dis//partition}" |
433 | 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" |
434 | fi |
691 | fi |
435 | |
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 | |
436 | if mysql_version_is_at_least "5.2" ; then |
702 | if mysql_version_is_at_least "5.2" ; then |
437 | 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 |
438 | fi |
710 | fi |
|
|
711 | fi |
439 | |
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 |
440 | 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 |
|
|
734 | } |
|
|
735 | |
|
|
736 | pbxt_src_configure() { |
|
|
737 | mysql_init_vars |
|
|
738 | |
|
|
739 | pushd "${WORKDIR}/pbxt-${PBXT_VERSION}" &>/dev/null |
|
|
740 | |
|
|
741 | einfo "Reconfiguring dir '${PWD}'" |
|
|
742 | eautoreconf |
|
|
743 | |
|
|
744 | local myconf="" |
|
|
745 | myconf="${myconf} --with-mysql=${S} --libdir=/usr/$(get_libdir)" |
|
|
746 | use debug && myconf="${myconf} --with-debug=full" |
|
|
747 | econf ${myconf} || die "Problem configuring PBXT storage engine" |
441 | } |
748 | } |
442 | |
749 | |
443 | pbxt_src_compile() { |
750 | pbxt_src_compile() { |
444 | mysql_init_vars |
|
|
445 | |
751 | |
446 | pushd "${WORKDIR}/pbxt-${PBXT_VERSION}" &>/dev/null |
752 | # Be backwards compatible for now |
447 | |
753 | if [[ $EAPI != 2 ]]; then |
448 | einfo "Reconfiguring dir '${PWD}'" |
754 | pbxt_src_configure |
449 | AT_GNUCONF_UPDATE="yes" eautoreconf |
755 | fi |
450 | |
|
|
451 | local myconf |
|
|
452 | myconf="${myconf} --with-mysql=${S}" |
|
|
453 | mkdir -p ${T}/lib |
|
|
454 | myconf="${myconf} --libdir=${D}/${MY_LIBDIR}" |
|
|
455 | useq "debug" && myconf="${myconf} --with-debug=full" |
|
|
456 | # TODO is safe/needed to use econf here ? |
|
|
457 | ./configure ${myconf} || die "problem configuring pbxt storage engine" |
|
|
458 | # TODO is safe/needed to use emake here ? |
756 | # TODO: is it safe/needed to use emake here ? |
459 | make || die "problem making pbxt storage engine (${myconf})" |
757 | make || die "Problem making PBXT storage engine (${myconf})" |
460 | |
758 | |
461 | popd |
759 | popd |
462 | # TODO: modify test suite |
760 | # TODO: modify test suite for PBXT |
463 | } |
761 | } |
464 | |
762 | |
465 | pbxt_src_install() { |
763 | pbxt_src_install() { |
466 | pushd "${WORKDIR}/pbxt-${PBXT_VERSION}" &>/dev/null |
764 | pushd "${WORKDIR}/pbxt-${PBXT_VERSION}" &>/dev/null |
467 | make install || die "failed pbxt install" |
765 | emake install DESTDIR="${D}" || die "Failed to install PBXT" |
468 | popd |
766 | popd |
469 | } |
767 | } |
470 | |
768 | |
471 | # |
769 | # |
472 | # EBUILD FUNCTIONS |
770 | # EBUILD FUNCTIONS |
473 | # |
771 | # |
474 | |
772 | # @FUNCTION: mysql_pkg_setup |
|
|
773 | # @DESCRIPTION: |
|
|
774 | # Perform some basic tests and tasks during pkg_setup phase: |
|
|
775 | # die if FEATURES="test", USE="-minimal" and not using FEATURES="userpriv" |
|
|
776 | # check for conflicting use flags |
|
|
777 | # create new user and group for mysql |
|
|
778 | # warn about deprecated features |
475 | mysql_pkg_setup() { |
779 | mysql_pkg_setup() { |
476 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
780 | if has test ${FEATURES} ; then |
477 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
781 | if ! use minimal ; then |
|
|
782 | if [[ $UID -eq 0 ]]; then |
|
|
783 | eerror "Testing with FEATURES=-userpriv is no longer supported by upstream. Tests MUST be run as non-root." |
|
|
784 | fi |
|
|
785 | fi |
|
|
786 | fi |
|
|
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 |
478 | |
796 | |
479 | # Check for USE flag problems in pkg_setup |
797 | # Check for USE flag problems in pkg_setup |
480 | if useq "static" && useq "ssl" ; then |
798 | if use static && use ssl ; then |
481 | eerror "MySQL does not support being built statically with SSL support enabled!" |
|
|
482 | die "MySQL does not support being built statically with SSL support enabled!" |
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" |
483 | fi |
809 | fi |
484 | |
810 | |
485 | if ! mysql_version_is_at_least "5.0" \ |
811 | if ! mysql_version_is_at_least "5.0" \ |
486 | && useq "raid" \ |
812 | && use raid \ |
487 | && useq "static" ; then |
813 | && use static ; then |
488 | eerror "USE flags 'raid' and 'static' conflict, you cannot build MySQL statically" |
814 | eerror "USE flags 'raid' and 'static' conflict, you cannot build MySQL statically" |
489 | eerror "with RAID support enabled." |
815 | eerror "with RAID support enabled." |
490 | die "USE flags 'raid' and 'static' conflict!" |
816 | die "USE flags 'raid' and 'static' conflict!" |
491 | fi |
817 | fi |
492 | |
818 | |
493 | if mysql_version_is_at_least "4.1.3" \ |
819 | if mysql_version_is_at_least "4.1.3" \ |
494 | && ( useq "cluster" || useq "extraengine" ) \ |
820 | && ( use cluster || use extraengine || use embedded ) \ |
495 | && useq "minimal" ; then |
821 | && use minimal ; then |
496 | eerror "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
|
|
497 | 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}" |
498 | fi |
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 |
|
|
848 | fi |
|
|
849 | |
|
|
850 | # This should come after all of the die statements |
|
|
851 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
|
|
852 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
499 | |
853 | |
500 | mysql_check_version_range "4.0 to 5.0.99.99" \ |
854 | mysql_check_version_range "4.0 to 5.0.99.99" \ |
501 | && useq "berkdb" \ |
855 | && use berkdb \ |
502 | && 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!" |
503 | } |
|
|
504 | |
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 |
|
|
867 | } |
|
|
868 | |
|
|
869 | # @FUNCTION: mysql_src_unpack |
|
|
870 | # @DESCRIPTION: |
|
|
871 | # Unpack the source code and call mysql_src_prepare for EAPI < 2. |
505 | mysql_src_unpack() { |
872 | mysql_src_unpack() { |
506 | # Initialize the proper variables first |
873 | # Initialize the proper variables first |
507 | mysql_init_vars |
874 | mysql_init_vars |
508 | |
875 | |
509 | unpack ${A} |
876 | unpack ${A} |
510 | if [[ ${IS_BITKEEPER} -eq 90 ]] ; then |
877 | # Grab the patches |
511 | if mysql_check_version_range "5.1 to 5.1.99" ; then |
878 | [[ "${MY_EXTRAS_VER}" == "live" ]] && S="${WORKDIR}/mysql-extras" git_src_unpack |
512 | bitkeeper_fetch "mysql-5.1-ndb" |
879 | |
513 | elif mysql_check_version_range "5.2.0 to 5.2.99" ; then |
|
|
514 | bitkeeper_fetch "mysql-5.2-falcon" |
|
|
515 | else |
|
|
516 | bitkeeper_fetch |
|
|
517 | fi |
|
|
518 | cd "${S}" |
|
|
519 | einfo "running upstream autorun on bk sources" |
|
|
520 | BUILD/autorun.sh |
|
|
521 | else |
|
|
522 | mv -f "${WORKDIR}/${MY_SOURCEDIR}" "${S}" |
880 | mv -f "${WORKDIR}/${MY_SOURCEDIR}" "${S}" |
|
|
881 | |
|
|
882 | # Be backwards compatible for now |
|
|
883 | case ${EAPI:-0} in |
|
|
884 | 2) : ;; |
|
|
885 | 0 | 1) mysql_src_prepare ;; |
|
|
886 | esac |
|
|
887 | } |
|
|
888 | |
|
|
889 | # @FUNCTION: mysql_src_prepare |
|
|
890 | # @DESCRIPTION: |
|
|
891 | # Apply patches to the source code and remove unneeded bundled libs. |
|
|
892 | mysql_src_prepare() { |
523 | cd "${S}" |
893 | cd "${S}" |
524 | fi |
|
|
525 | |
894 | |
526 | # Apply the patches for this MySQL version |
895 | # Apply the patches for this MySQL version |
527 | EPATCH_SUFFIX="patch" |
896 | EPATCH_SUFFIX="patch" |
528 | mkdir -p "${EPATCH_SOURCE}" || die "unable to create epatch directory" |
897 | mkdir -p "${EPATCH_SOURCE}" || die "Unable to create epatch directory" |
|
|
898 | # Clean out old items |
|
|
899 | rm -f "${EPATCH_SOURCE}"/* |
|
|
900 | # Now link in right patches |
529 | mysql_mv_patches |
901 | mysql_mv_patches |
530 | epatch || die "failed to apply all patches" |
902 | # And apply |
|
|
903 | epatch |
531 | |
904 | |
532 | # 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 |
533 | rm -f "${S}/zlib/"*.[ch] |
912 | rm -f "${S}/zlib/"*.[ch] |
534 | 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 |
535 | rm -f "scripts/mysqlbug" |
915 | rm -f "scripts/mysqlbug" |
536 | |
916 | |
537 | # Make charsets install in the right place |
917 | # Make charsets install in the right place |
538 | find . -name 'Makefile.am' \ |
918 | find . -name 'Makefile.am' \ |
539 | -exec sed --in-place -e 's!$(pkgdatadir)!'${MY_SHAREDSTATEDIR}'!g' {} \; |
919 | -exec sed --in-place -e 's!$(pkgdatadir)!'${MY_SHAREDSTATEDIR}'!g' {} \; |
540 | |
920 | |
541 | if mysql_version_is_at_least "4.1" ; then |
921 | if mysql_version_is_at_least "4.1" ; then |
542 | # Remove what needs to be recreated, so we're sure it's actually done |
922 | # Remove what needs to be recreated, so we're sure it's actually done |
|
|
923 | einfo "Cleaning up old buildscript files" |
543 | find . -name Makefile \ |
924 | find . -name Makefile \ |
544 | -o -name Makefile.in \ |
925 | -o -name Makefile.in \ |
545 | -o -name configure \ |
926 | -o -name configure \ |
546 | -exec rm -f {} \; |
927 | -exec rm -f {} \; |
547 | rm -f "ltmain.sh" |
928 | rm -f "ltmain.sh" |
548 | rm -f "scripts/mysqlbug" |
929 | rm -f "scripts/mysqlbug" |
549 | fi |
930 | fi |
550 | |
931 | |
551 | local rebuilddirlist d |
932 | local rebuilddirlist d |
552 | |
933 | |
|
|
934 | if xtradb_patch_available && use xtradb ; then |
|
|
935 | einfo "Adding storage engine: Percona XtraDB (replacing InnoDB)" |
|
|
936 | pushd "${S}"/storage >/dev/null |
|
|
937 | i="innobase" |
|
|
938 | o="${WORKDIR}/storage-${i}.mysql-upstream" |
|
|
939 | # Have we been here already? |
|
|
940 | [ -d "${o}" ] && rm -f "${i}" |
|
|
941 | # Or maybe we haven't |
|
|
942 | [ -d "${i}" -a ! -d "${o}" ] && mv "${i}" "${o}" |
|
|
943 | cp -ral "${WORKDIR}/${XTRADB_P}" "${i}" |
|
|
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 |
|
|
954 | fi |
|
|
955 | |
553 | if mysql_version_is_at_least "5.1.12" ; then |
956 | if mysql_version_is_at_least "5.1.12" ; then |
554 | rebuilddirlist="." |
957 | rebuilddirlist="." |
|
|
958 | # This does not seem to be needed presently. robbat2 2010/02/23 |
|
|
959 | #einfo "Updating innobase cmake" |
555 | # TODO IMPO! Check this with a cmake expert |
960 | ## TODO: check this with a cmake expert |
556 | useq "innodb" \ |
|
|
557 | && cmake \ |
961 | #cmake \ |
558 | -DCMAKE_C_COMPILER=$(which $(tc-getCC)) \ |
962 | # -DCMAKE_C_COMPILER=$(type -P $(tc-getCC)) \ |
559 | -DCMAKE_CXX_COMPILER=$(which $(tc-getCC)) \ |
963 | # -DCMAKE_CXX_COMPILER=$(type -P $(tc-getCXX)) \ |
560 | "storage/innobase" |
964 | # "storage/innobase" |
561 | else |
965 | else |
562 | rebuilddirlist=". innobase" |
966 | rebuilddirlist=". innobase" |
563 | fi |
967 | fi |
564 | |
968 | |
565 | for d in ${rebuilddirlist} ; do |
969 | for d in ${rebuilddirlist} ; do |
566 | einfo "Reconfiguring dir '${d}'" |
970 | einfo "Reconfiguring dir '${d}'" |
567 | pushd "${d}" &>/dev/null |
971 | pushd "${d}" &>/dev/null |
568 | AT_GNUCONF_UPDATE="yes" eautoreconf |
972 | eautoreconf |
569 | popd &>/dev/null |
973 | popd &>/dev/null |
570 | done |
974 | done |
571 | |
975 | |
572 | 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" \ |
573 | && useq "berkdb" ; then |
977 | && use berkdb ; then |
|
|
978 | einfo "Fixing up berkdb buildsystem" |
574 | [[ -w "bdb/dist/ltmain.sh" ]] && cp -f "ltmain.sh" "bdb/dist/ltmain.sh" |
979 | [[ -w "bdb/dist/ltmain.sh" ]] && cp -f "ltmain.sh" "bdb/dist/ltmain.sh" |
|
|
980 | cp -f "/usr/share/aclocal/libtool.m4" "bdb/dist/aclocal/libtool.ac" \ |
|
|
981 | || die "Could not copy libtool.m4 to bdb/dist/" |
|
|
982 | #These files exist only with libtool-2*, and need to be included. |
|
|
983 | if [ -f '/usr/share/aclocal/ltsugar.m4' ]; then |
|
|
984 | cat "/usr/share/aclocal/ltsugar.m4" >> "bdb/dist/aclocal/libtool.ac" |
|
|
985 | cat "/usr/share/aclocal/ltversion.m4" >> "bdb/dist/aclocal/libtool.ac" |
|
|
986 | cat "/usr/share/aclocal/lt~obsolete.m4" >> "bdb/dist/aclocal/libtool.ac" |
|
|
987 | cat "/usr/share/aclocal/ltoptions.m4" >> "bdb/dist/aclocal/libtool.ac" |
|
|
988 | fi |
575 | pushd "bdb/dist" \ |
989 | pushd "bdb/dist" &>/dev/null |
576 | && sh s_all \ |
990 | sh s_all \ |
577 | || die "Failed bdb reconfigure" \ |
991 | || die "Failed bdb reconfigure" |
578 | &>/dev/null |
|
|
579 | popd &>/dev/null |
992 | popd &>/dev/null |
580 | fi |
993 | fi |
581 | } |
994 | } |
582 | |
995 | |
|
|
996 | # @FUNCTION: mysql_src_configure |
|
|
997 | # @DESCRIPTION: |
|
|
998 | # Configure mysql to build the code for Gentoo respecting the use flags. |
583 | mysql_src_compile() { |
999 | mysql_src_configure() { |
584 | # Make sure the vars are correctly initialized |
1000 | # Make sure the vars are correctly initialized |
585 | mysql_init_vars |
1001 | mysql_init_vars |
586 | |
1002 | |
587 | # $myconf is modified by the configure_* functions |
1003 | # $myconf is modified by the configure_* functions |
588 | local myconf="" |
1004 | local myconf="" |
589 | |
1005 | |
590 | if useq "minimal" ; then |
1006 | if use minimal ; then |
591 | configure_minimal |
1007 | configure_minimal |
592 | else |
1008 | else |
593 | configure_common |
1009 | configure_common |
594 | if mysql_version_is_at_least "5.1.10" ; then |
1010 | if mysql_version_is_at_least "5.1.10" ; then |
595 | configure_51 |
1011 | configure_51 |
… | |
… | |
602 | filter-flags "-O" "-O[01]" |
1018 | filter-flags "-O" "-O[01]" |
603 | |
1019 | |
604 | # glib-2.3.2_pre fix, bug #16496 |
1020 | # glib-2.3.2_pre fix, bug #16496 |
605 | append-flags "-DHAVE_ERRNO_AS_DEFINE=1" |
1021 | append-flags "-DHAVE_ERRNO_AS_DEFINE=1" |
606 | |
1022 | |
|
|
1023 | # As discovered by bug #246652, doing a double-level of SSP causes NDB to |
|
|
1024 | # fail badly during cluster startup. |
|
|
1025 | if [[ $(gcc-major-version) -lt 4 ]]; then |
|
|
1026 | filter-flags "-fstack-protector-all" |
|
|
1027 | fi |
|
|
1028 | |
607 | CXXFLAGS="${CXXFLAGS} -fno-exceptions -fno-strict-aliasing" |
1029 | CXXFLAGS="${CXXFLAGS} -fno-exceptions -fno-strict-aliasing" |
608 | CXXFLAGS="${CXXFLAGS} -felide-constructors -fno-rtti" |
1030 | CXXFLAGS="${CXXFLAGS} -felide-constructors -fno-rtti" |
609 | mysql_version_is_at_least "5.0" \ |
1031 | mysql_version_is_at_least "5.0" \ |
610 | && CXXFLAGS="${CXXFLAGS} -fno-implicit-templates" |
1032 | && CXXFLAGS="${CXXFLAGS} -fno-implicit-templates" |
611 | export CXXFLAGS |
1033 | export CXXFLAGS |
612 | |
1034 | |
|
|
1035 | # bug #283926, with GCC4.4, this is required to get correct behavior. |
|
|
1036 | append-flags -fno-strict-aliasing |
|
|
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 | |
613 | econf \ |
1047 | econf \ |
614 | --program-suffix="${MY_SUFFIX}" \ |
|
|
615 | --libexecdir="/usr/sbin" \ |
1048 | --libexecdir="/usr/sbin" \ |
616 | --sysconfdir="${MY_SYSCONFDIR}" \ |
1049 | --sysconfdir="${MY_SYSCONFDIR}" \ |
617 | --localstatedir="${MY_LOCALSTATEDIR}" \ |
1050 | --localstatedir="${MY_LOCALSTATEDIR}" \ |
618 | --sharedstatedir="${MY_SHAREDSTATEDIR}" \ |
1051 | --sharedstatedir="${MY_SHAREDSTATEDIR}" \ |
619 | --libdir="${MY_LIBDIR}" \ |
1052 | --libdir="${MY_LIBDIR}" \ |
… | |
… | |
621 | --with-low-memory \ |
1054 | --with-low-memory \ |
622 | --with-client-ldflags=-lstdc++ \ |
1055 | --with-client-ldflags=-lstdc++ \ |
623 | --enable-thread-safe-client \ |
1056 | --enable-thread-safe-client \ |
624 | --with-comment="Gentoo Linux ${PF}" \ |
1057 | --with-comment="Gentoo Linux ${PF}" \ |
625 | --without-docs \ |
1058 | --without-docs \ |
|
|
1059 | --with-LIBDIR="$(get_libdir)" \ |
626 | ${myconf} || die "econf failed" |
1060 | ${myconf} || die "econf failed" |
627 | |
1061 | |
628 | # TODO: Move this before autoreconf !!! |
1062 | # TODO: Move this before autoreconf !!! |
629 | find . -type f -name Makefile -print0 \ |
1063 | find . -type f -name Makefile -print0 \ |
630 | | xargs -0 -n100 sed -i \ |
1064 | | xargs -0 -n100 sed -i \ |
631 | -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)|' |
632 | |
1066 | |
|
|
1067 | if [[ $EAPI == 2 ]] && [[ "${PBXT_NEWSTYLE}" != "1" ]]; then |
|
|
1068 | pbxt_patch_available && use pbxt && pbxt_src_configure |
|
|
1069 | fi |
|
|
1070 | } |
|
|
1071 | |
|
|
1072 | # @FUNCTION: mysql_src_compile |
|
|
1073 | # @DESCRIPTION: |
|
|
1074 | # Compile the mysql code. |
|
|
1075 | mysql_src_compile() { |
|
|
1076 | # Be backwards compatible for now |
|
|
1077 | case ${EAPI:-0} in |
|
|
1078 | 2) : ;; |
|
|
1079 | 0 | 1) mysql_src_configure ;; |
|
|
1080 | esac |
|
|
1081 | |
633 | emake || die "emake failed" |
1082 | emake || die "emake failed" |
634 | |
1083 | |
635 | mysql_version_is_at_least "5.1.1" && useq "pbxt" && pbxt_src_compile |
1084 | if [[ "${PBXT_NEWSTYLE}" != "1" ]]; then |
|
|
1085 | pbxt_patch_available && use pbxt && pbxt_src_compile |
|
|
1086 | fi |
636 | } |
1087 | } |
637 | |
1088 | |
|
|
1089 | # @FUNCTION: mysql_src_install |
|
|
1090 | # @DESCRIPTION: |
|
|
1091 | # Install mysql. |
638 | mysql_src_install() { |
1092 | mysql_src_install() { |
639 | # Make sure the vars are correctly initialized |
1093 | # Make sure the vars are correctly initialized |
640 | mysql_init_vars |
1094 | mysql_init_vars |
641 | |
1095 | |
642 | emake install DESTDIR="${D}" benchdir_root="${MY_SHAREDSTATEDIR}" || die |
1096 | emake install \ |
|
|
1097 | DESTDIR="${D}" \ |
|
|
1098 | benchdir_root="${MY_SHAREDSTATEDIR}" \ |
|
|
1099 | testroot="${MY_SHAREDSTATEDIR}" \ |
|
|
1100 | || die "emake install failed" |
643 | |
1101 | |
644 | mysql_version_is_at_least "5.1.12" && useq "pbxt" && pbxt_src_install |
1102 | if [[ "${PBXT_NEWSTYLE}" != "1" ]]; then |
645 | |
1103 | pbxt_patch_available && use pbxt && pbxt_src_install |
646 | insinto "${MY_INCLUDEDIR}" |
1104 | fi |
647 | doins "${MY_INCLUDEDIR}"/my_{config,dir}.h |
|
|
648 | |
1105 | |
649 | # Convenience links |
1106 | # Convenience links |
|
|
1107 | einfo "Making Convenience links for mysqlcheck multi-call binary" |
650 | dosym "/usr/bin/mysqlcheck${MY_SUFFIX}" "/usr/bin/mysqlanalyze${MY_SUFFIX}" |
1108 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlanalyze" |
651 | dosym "/usr/bin/mysqlcheck${MY_SUFFIX}" "/usr/bin/mysqlrepair${MY_SUFFIX}" |
1109 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlrepair" |
652 | dosym "/usr/bin/mysqlcheck${MY_SUFFIX}" "/usr/bin/mysqloptimize${MY_SUFFIX}" |
1110 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqloptimize" |
653 | |
1111 | |
654 | # Various junk (my-*.cnf moved elsewhere) |
1112 | # Various junk (my-*.cnf moved elsewhere) |
|
|
1113 | einfo "Removing duplicate /usr/share/mysql files" |
655 | rm -Rf "${D}/usr/share/info" |
1114 | rm -Rf "${D}/usr/share/info" |
656 | for removeme in "mysql-log-rotate" mysql.server* \ |
1115 | for removeme in "mysql-log-rotate" mysql.server* \ |
657 | binary-configure* my-*.cnf mi_test_all* |
1116 | binary-configure* my-*.cnf mi_test_all* |
658 | do |
1117 | do |
659 | rm -f "${D}"/usr/share/mysql/${removeme} |
1118 | rm -f "${D}"/${MY_SHAREDSTATEDIR}/${removeme} |
660 | done |
1119 | done |
661 | |
1120 | |
662 | # TODO change at Makefile-am level |
|
|
663 | if [[ ${PN} == "mysql-slotted" ]] ; then |
|
|
664 | for moveme in "mysql_fix_privilege_tables.sql" \ |
|
|
665 | "fill_help_tables.sql" "ndb-config-2-node.ini" |
|
|
666 | do |
|
|
667 | mv -f "${D}/usr/share/mysql/${moveme}" "${D}/usr/share/mysql${MY_SUFFIX}/" 2>/dev/null |
|
|
668 | done |
|
|
669 | fi |
|
|
670 | |
|
|
671 | # clean up stuff for a minimal build |
1121 | # Clean up stuff for a minimal build |
672 | if useq "minimal" ; then |
1122 | if use minimal ; then |
|
|
1123 | einfo "Remove all extra content for minimal build" |
673 | rm -Rf "${D}${MY_SHAREDSTATEDIR}"/{mysql-test,sql-bench} |
1124 | rm -Rf "${D}${MY_SHAREDSTATEDIR}"/{mysql-test,sql-bench} |
674 | rm -f "${D}"/usr/bin/{mysql{_install_db,manager*,_secure_installation,_fix_privilege_tables,hotcopy,_convert_table_format,d_multi,_fix_extensions,_zap,_explain_log,_tableinfo,d_safe,_install,_waitpid,binlog,test},myisam*,isam*,pack_isam} |
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} |
675 | rm -f "${D}/usr/sbin/mysqld" |
1126 | rm -f "${D}/usr/sbin/mysqld" |
676 | rm -f "${D}${MY_LIBDIR}"/lib{heap,merge,nisam,my{sys,strings,sqld,isammrg,isam},vio,dbug}.a |
1127 | rm -f "${D}${MY_LIBDIR}"/lib{heap,merge,nisam,my{sys,strings,sqld,isammrg,isam},vio,dbug}.a |
677 | fi |
1128 | fi |
678 | |
1129 | |
679 | if [[ ${PN} == "mysql-slotted" ]] ; then |
1130 | # Unless they explicitly specific USE=test, then do not install the |
680 | local notcatched=$(ls "${D}/usr/share/mysql"/*) |
1131 | # testsuite. It DOES have a use to be installed, esp. when you want to do a |
681 | if [[ -n "${notcatched}" ]] ; then |
1132 | # validation of your database configuration after tuning it. |
682 | ewarn "QA notice" |
1133 | if use !test ; then |
683 | ewarn "${notcatched} files in /usr/share/mysql" |
1134 | rm -rf "${D}"/${MY_SHAREDSTATEDIR}/mysql-test |
684 | ewarn "bug mysql-herd to manage them" |
|
|
685 | fi |
|
|
686 | rm -Rf "${D}/usr/share/mysql" |
|
|
687 | fi |
1135 | fi |
688 | |
1136 | |
689 | # Configuration stuff |
1137 | # Configuration stuff |
690 | if mysql_version_is_at_least "4.1" ; then |
1138 | case ${MYSQL_PV_MAJOR} in |
691 | mysql_mycnf_version="4.1" |
|
|
692 | else |
|
|
693 | mysql_mycnf_version="4.0" |
1139 | 3*|4.0) mysql_mycnf_version="4.0" ;; |
694 | fi |
1140 | 4.[1-9]|5.0) mysql_mycnf_version="4.1" ;; |
|
|
1141 | 5.[1-9]|6*|7*) mysql_mycnf_version="5.1" ;; |
|
|
1142 | esac |
|
|
1143 | einfo "Building default my.cnf (${mysql_mycnf_version})" |
695 | insinto "${MY_SYSCONFDIR}" |
1144 | insinto "${MY_SYSCONFDIR}" |
696 | doins scripts/mysqlaccess.conf |
1145 | doins scripts/mysqlaccess.conf |
697 | sed -e "s!@MY_SUFFIX@!${MY_SUFFIX}!g" \ |
1146 | mycnf_src="my.cnf-${mysql_mycnf_version}" |
698 | -e "s!@DATADIR@!${DATADIR}!g" \ |
1147 | sed -e "s!@DATADIR@!${MY_DATADIR}!g" \ |
699 | "${FILESDIR}/my.cnf-${mysql_mycnf_version}" \ |
1148 | "${FILESDIR}/${mycnf_src}" \ |
700 | > "${TMPDIR}/my.cnf.ok" |
1149 | > "${TMPDIR}/my.cnf.ok" |
701 | if mysql_version_is_at_least "4.1" && useq "latin1" ; then |
1150 | if use latin1 ; then |
702 | 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" |
703 | fi |
1154 | fi |
704 | newins "${TMPDIR}/my.cnf.ok" my.cnf |
1155 | newins "${TMPDIR}/my.cnf.ok" my.cnf |
705 | |
1156 | |
706 | # Minimal builds don't have the MySQL server |
1157 | # Minimal builds don't have the MySQL server |
707 | if ! useq "minimal" ; then |
1158 | if ! use minimal ; then |
|
|
1159 | einfo "Creating initial directories" |
708 | # Empty directories ... |
1160 | # Empty directories ... |
709 | diropts "-m0750" |
1161 | diropts "-m0750" |
710 | if [[ "${PREVIOUS_DATADIR}" != "yes" ]] ; then |
1162 | if [[ "${PREVIOUS_DATADIR}" != "yes" ]] ; then |
711 | dodir "${DATADIR}" |
1163 | dodir "${MY_DATADIR}" |
712 | keepdir "${DATADIR}" |
1164 | keepdir "${MY_DATADIR}" |
713 | chown -R mysql:mysql "${D}/${DATADIR}" |
1165 | chown -R mysql:mysql "${D}/${MY_DATADIR}" |
714 | fi |
1166 | fi |
715 | |
1167 | |
716 | diropts "-m0755" |
1168 | diropts "-m0755" |
717 | for folder in "${MY_LOGDIR}" "/var/run/mysqld" ; do |
1169 | for folder in "${MY_LOGDIR}" "/var/run/mysqld" ; do |
718 | dodir "${folder}" |
1170 | dodir "${folder}" |
… | |
… | |
720 | chown -R mysql:mysql "${D}/${folder}" |
1172 | chown -R mysql:mysql "${D}/${folder}" |
721 | done |
1173 | done |
722 | fi |
1174 | fi |
723 | |
1175 | |
724 | # Docs |
1176 | # Docs |
|
|
1177 | einfo "Installing docs" |
725 | 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 |
|
|
1181 | doinfo "${S}"/Docs/mysql.info |
726 | |
1182 | |
727 | # Minimal builds don't have the MySQL server |
1183 | # Minimal builds don't have the MySQL server |
728 | if ! useq "minimal" ; then |
1184 | if ! use minimal ; then |
|
|
1185 | einfo "Including support files and sample configurations" |
|
|
1186 | docinto "support-files" |
|
|
1187 | for script in \ |
|
|
1188 | "${S}"/support-files/my-*.cnf \ |
|
|
1189 | "${S}"/support-files/magic \ |
|
|
1190 | "${S}"/support-files/ndb-config-2-node.ini |
|
|
1191 | do |
|
|
1192 | [[ -f "$script" ]] && dodoc "${script}" |
|
|
1193 | done |
|
|
1194 | |
|
|
1195 | docinto "scripts" |
|
|
1196 | for script in "${S}"/scripts/mysql* ; do |
|
|
1197 | [[ -f "$script" ]] && [[ "${script%.sh}" == "${script}" ]] && dodoc "${script}" |
|
|
1198 | done |
|
|
1199 | |
|
|
1200 | fi |
|
|
1201 | |
|
|
1202 | mysql_lib_symlinks "${D}" |
|
|
1203 | } |
|
|
1204 | |
|
|
1205 | # @FUNCTION: mysql_pkg_preinst |
|
|
1206 | # @DESCRIPTION: |
|
|
1207 | # Create the user and groups for mysql - die if that fails. |
|
|
1208 | mysql_pkg_preinst() { |
|
|
1209 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
|
|
1210 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
|
|
1211 | } |
|
|
1212 | |
|
|
1213 | # @FUNCTION: mysql_pkg_postinst |
|
|
1214 | # @DESCRIPTION: |
|
|
1215 | # Run post-installation tasks: |
|
|
1216 | # create the dir for logfiles if non-existant |
|
|
1217 | # touch the logfiles and secure them |
|
|
1218 | # install scripts |
|
|
1219 | # issue required steps for optional features |
|
|
1220 | # issue deprecation warnings |
|
|
1221 | mysql_pkg_postinst() { |
|
|
1222 | # Make sure the vars are correctly initialized |
|
|
1223 | mysql_init_vars |
|
|
1224 | |
|
|
1225 | # Check FEATURES="collision-protect" before removing this |
|
|
1226 | [[ -d "${ROOT}/var/log/mysql" ]] || install -d -m0750 -o mysql -g mysql "${ROOT}${MY_LOGDIR}" |
|
|
1227 | |
|
|
1228 | # Secure the logfiles |
|
|
1229 | touch "${ROOT}${MY_LOGDIR}"/mysql.{log,err} |
|
|
1230 | chown mysql:mysql "${ROOT}${MY_LOGDIR}"/mysql* |
|
|
1231 | chmod 0660 "${ROOT}${MY_LOGDIR}"/mysql* |
|
|
1232 | |
|
|
1233 | # Minimal builds don't have the MySQL server |
|
|
1234 | if ! use minimal ; then |
729 | docinto "support-files" |
1235 | docinto "support-files" |
730 | for script in \ |
1236 | for script in \ |
731 | support-files/my-*.cnf \ |
1237 | support-files/my-*.cnf \ |
732 | support-files/magic \ |
1238 | support-files/magic \ |
733 | support-files/ndb-config-2-node.ini |
1239 | support-files/ndb-config-2-node.ini |
734 | do |
1240 | do |
|
|
1241 | [[ -f "${script}" ]] \ |
735 | dodoc "${script}" |
1242 | && dodoc "${script}" |
736 | done |
1243 | done |
737 | |
1244 | |
738 | docinto "scripts" |
1245 | docinto "scripts" |
739 | for script in scripts/mysql* ; do |
1246 | for script in scripts/mysql* ; do |
|
|
1247 | [[ -f "${script}" ]] \ |
740 | [[ "${script%.sh}" == "${script}" ]] && dodoc "${script}" |
1248 | && [[ "${script%.sh}" == "${script}" ]] \ |
|
|
1249 | && dodoc "${script}" |
741 | done |
1250 | done |
742 | fi |
|
|
743 | |
1251 | |
744 | if [[ ${PN} == "mysql-slotted" ]] ; then |
1252 | einfo |
745 | # MOVED HERE DUE TO BUG #121445 |
1253 | elog "You might want to run:" |
746 | # create a list of files, to be used |
1254 | elog "\"emerge --config =${CATEGORY}/${PF}\"" |
747 | # by external utilities |
1255 | elog "if this is a new install." |
748 | mkdir -p "${D}/var/lib/eselect/mysql/" |
1256 | einfo |
749 | local filelist="${D}/var/lib/eselect/mysql/mysql${MY_SUFFIX}.filelist" |
|
|
750 | pushd "${D}/" &>/dev/null |
|
|
751 | find usr/bin/ usr/sbin/ \ |
|
|
752 | -type f -name "*${MY_SUFFIX}*" \ |
|
|
753 | -and -not -name "mysql_config${MY_SUFFIX}" \ |
|
|
754 | > "${filelist}" |
|
|
755 | find usr/share/man \ |
|
|
756 | -type f -name "*${MY_SUFFIX}*" \ |
|
|
757 | | sed -e 's/$/.gz/' \ |
|
|
758 | >> "${filelist}" |
|
|
759 | echo "${MY_SYSCONFDIR#"/"}" >> "${filelist}" |
|
|
760 | echo "${MY_LIBDIR#"/"}" >> "${filelist}" |
|
|
761 | echo "${MY_SHAREDSTATEDIR#"/"}" >> "${filelist}" |
|
|
762 | popd &>/dev/null |
|
|
763 | fi |
|
|
764 | |
1257 | |
765 | mysql_lib_symlinks "${D}" |
1258 | einfo |
766 | } |
1259 | elog "If you are upgrading major versions, you should run the" |
|
|
1260 | elog "mysql_upgrade tool." |
|
|
1261 | einfo |
|
|
1262 | fi |
767 | |
1263 | |
768 | mysql_pkg_preinst() { |
1264 | if pbxt_available && use pbxt ; then |
769 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
1265 | # TODO: explain it better |
770 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
1266 | elog " mysql> INSTALL PLUGIN pbxt SONAME 'libpbxt.so';" |
771 | } |
1267 | elog " mysql> CREATE TABLE t1 (c1 int, c2 text) ENGINE=pbxt;" |
|
|
1268 | elog "if, after that, you cannot start the MySQL server," |
|
|
1269 | elog "remove the ${MY_DATADIR}/mysql/plugin.* files, then" |
|
|
1270 | elog "use the MySQL upgrade script to restore the table" |
|
|
1271 | elog "or execute the following SQL command:" |
|
|
1272 | elog " CREATE TABLE IF NOT EXISTS plugin (" |
|
|
1273 | elog " name char(64) binary DEFAULT '' NOT NULL," |
|
|
1274 | elog " dl char(128) DEFAULT '' NOT NULL," |
|
|
1275 | elog " PRIMARY KEY (name)" |
|
|
1276 | elog " ) CHARACTER SET utf8 COLLATE utf8_bin;" |
|
|
1277 | fi |
772 | |
1278 | |
|
|
1279 | mysql_check_version_range "4.0 to 5.0.99.99" \ |
|
|
1280 | && use berkdb \ |
|
|
1281 | && elog "Berkeley DB support is deprecated and will be removed in future versions!" |
|
|
1282 | } |
|
|
1283 | |
|
|
1284 | # @FUNCTION: mysql_pkg_config |
|
|
1285 | # @DESCRIPTION: |
|
|
1286 | # Configure mysql environment. |
773 | mysql_pkg_postinst() { |
1287 | mysql_pkg_config() { |
|
|
1288 | local old_MY_DATADIR="${MY_DATADIR}" |
|
|
1289 | |
774 | # Make sure the vars are correctly initialized |
1290 | # Make sure the vars are correctly initialized |
775 | mysql_init_vars |
1291 | mysql_init_vars |
776 | |
1292 | |
777 | # Check FEATURES="collision-protect" before removing this |
|
|
778 | [[ -d "${ROOT}/var/log/mysql" ]] \ |
|
|
779 | || install -d -m0750 -o mysql -g mysql "${ROOT}${MY_LOGDIR}" |
|
|
780 | |
|
|
781 | # Secure the logfiles |
|
|
782 | touch "${ROOT}${MY_LOGDIR}"/mysql.{log,err} |
|
|
783 | chown mysql:mysql "${ROOT}${MY_LOGDIR}"/mysql* |
|
|
784 | chmod 0660 "${ROOT}${MY_LOGDIR}"/mysql* |
|
|
785 | |
|
|
786 | # Minimal builds don't have the MySQL server |
|
|
787 | if ! useq "minimal" ; then |
|
|
788 | docinto "support-files" |
|
|
789 | for script in \ |
|
|
790 | support-files/my-*.cnf \ |
|
|
791 | support-files/magic \ |
|
|
792 | support-files/ndb-config-2-node.ini |
|
|
793 | do |
|
|
794 | dodoc "${script}" |
|
|
795 | done |
|
|
796 | |
|
|
797 | docinto "scripts" |
|
|
798 | for script in scripts/mysql* ; do |
|
|
799 | [[ "${script%.sh}" == "${script}" ]] && dodoc "${script}" |
|
|
800 | done |
|
|
801 | fi |
|
|
802 | |
|
|
803 | #einfo "you may want to read slotting upgrade documents in the overlay" |
|
|
804 | if useq "pbxt" && mysql_version_is_at_least "5.1" ; then |
|
|
805 | # TODO tell it better ;-) |
|
|
806 | elog "mysql> INSTALL PLUGIN pbxt SONAME 'libpbxt.so';" |
|
|
807 | elog "CREATE TABLE t1 (c1 int, c2 text) ENGINE=pbxt;" |
|
|
808 | elog "if, after that you cannot start the mysql server" |
|
|
809 | elog "remove the ${MY_DATADIR}/mysql/plugin.* files, then" |
|
|
810 | elog "use the mysql upgrade script to restore the table" |
|
|
811 | elog " or " |
|
|
812 | elog "CREATE TABLE IF NOT EXISTS plugin (" |
|
|
813 | elog " name char(64) binary DEFAULT '' NOT NULL," |
|
|
814 | elog " dl char(128) DEFAULT '' NOT NULL," |
|
|
815 | elog " PRIMARY KEY (name)" |
|
|
816 | elog ") CHARACTER SET utf8 COLLATE utf8_bin;" |
|
|
817 | fi |
|
|
818 | mysql_check_version_range "4.0 to 5.0.99.99" \ |
|
|
819 | && useq "berkdb" \ |
|
|
820 | && elog "Berkeley DB support is deprecated and will be removed in future versions!" |
|
|
821 | } |
|
|
822 | |
|
|
823 | mysql_pkg_config() { |
|
|
824 | # Make sure the vars are correctly initialized |
|
|
825 | mysql_init_vars |
|
|
826 | |
|
|
827 | [[ -z "${DATADIR}" ]] && die "Sorry, unable to find DATADIR" |
1293 | [[ -z "${MY_DATADIR}" ]] && die "Sorry, unable to find MY_DATADIR" |
828 | |
1294 | |
829 | if built_with_use ${CATEGORY}/${PN} minimal ; then |
1295 | if built_with_use ${CATEGORY}/${PN} minimal ; then |
830 | die "Minimal builds do NOT include the MySQL server" |
1296 | die "Minimal builds do NOT include the MySQL server" |
831 | fi |
1297 | fi |
832 | |
1298 | |
|
|
1299 | if [[ ( -n "${MY_DATADIR}" ) && ( "${MY_DATADIR}" != "${old_MY_DATADIR}" ) ]]; then |
|
|
1300 | local MY_DATADIR_s="$(strip_duplicate_slashes ${ROOT}/${MY_DATADIR})" |
|
|
1301 | local old_MY_DATADIR_s="$(strip_duplicate_slashes ${ROOT}/${old_MY_DATADIR})" |
|
|
1302 | |
|
|
1303 | if [[ -d "${old_MY_DATADIR_s}" ]]; then |
|
|
1304 | if [[ -d "${MY_DATADIR_s}" ]]; then |
|
|
1305 | ewarn "Both ${old_MY_DATADIR_s} and ${MY_DATADIR_s} exist" |
|
|
1306 | ewarn "Attempting to use ${MY_DATADIR_s} and preserving ${old_MY_DATADIR_s}" |
|
|
1307 | else |
|
|
1308 | elog "Moving MY_DATADIR from ${old_MY_DATADIR_s} to ${MY_DATADIR_s}" |
|
|
1309 | mv --strip-trailing-slashes -T "${old_MY_DATADIR_s}" "${MY_DATADIR_s}" \ |
|
|
1310 | || die "Moving MY_DATADIR failed" |
|
|
1311 | fi |
|
|
1312 | else |
|
|
1313 | ewarn "Previous MY_DATADIR (${old_MY_DATADIR_s}) does not exist" |
|
|
1314 | if [[ -d "${MY_DATADIR_s}" ]]; then |
|
|
1315 | ewarn "Attempting to use ${MY_DATADIR_s}" |
|
|
1316 | else |
|
|
1317 | eerror "New MY_DATADIR (${MY_DATADIR_s}) does not exist" |
|
|
1318 | die "Configuration Failed! Please reinstall ${CATEGORY}/${PN}" |
|
|
1319 | fi |
|
|
1320 | fi |
|
|
1321 | fi |
|
|
1322 | |
833 | local pwd1="a" |
1323 | local pwd1="a" |
834 | local pwd2="b" |
1324 | local pwd2="b" |
835 | local maxtry=5 |
1325 | local maxtry=15 |
836 | |
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 |
|
|
1330 | |
837 | if [[ -d "${ROOT}/${DATADIR}/mysql" ]] ; then |
1331 | if [[ -d "${ROOT}/${MY_DATADIR}/mysql" ]] ; then |
838 | ewarn "You have already a MySQL database in place." |
1332 | ewarn "You have already a MySQL database in place." |
839 | ewarn "(${ROOT}/${DATADIR}/*)" |
1333 | ewarn "(${ROOT}/${MY_DATADIR}/*)" |
840 | 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." |
841 | die "MySQL database already exists!" |
1335 | die "MySQL database already exists!" |
842 | fi |
1336 | fi |
843 | |
1337 | |
844 | einfo "Creating the mysql database and setting proper" |
1338 | # Bug #213475 - MySQL _will_ object strenously if your machine is named |
845 | einfo "permissions on it ..." |
1339 | # localhost. Also causes weird failures. |
|
|
1340 | [[ "${HOSTNAME}" == "localhost" ]] && die "Your machine must NOT be named localhost" |
846 | |
1341 | |
|
|
1342 | if [ -z "${MYSQL_ROOT_PASSWORD}" ]; then |
|
|
1343 | |
847 | 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." |
848 | ewarn "Avoid [\"'\\_%] characters in the password" |
1346 | ewarn "Avoid [\"'\\_%] characters in the password" |
849 | read -rsp " >" pwd1 ; echo |
1347 | read -rsp " >" pwd1 ; echo |
850 | |
1348 | |
851 | einfo "Retype the password" |
1349 | einfo "Retype the password" |
852 | read -rsp " >" pwd2 ; echo |
1350 | read -rsp " >" pwd2 ; echo |
853 | |
1351 | |
854 | if [[ "x$pwd1" != "x$pwd2" ]] ; then |
1352 | if [[ "x$pwd1" != "x$pwd2" ]] ; then |
855 | die "Passwords are not the same" |
1353 | die "Passwords are not the same" |
|
|
1354 | fi |
|
|
1355 | MYSQL_ROOT_PASSWORD="${pwd1}" |
|
|
1356 | unset pwd1 pwd2 |
856 | fi |
1357 | fi |
857 | |
1358 | |
858 | local options="" |
1359 | local options="" |
859 | local sqltmp="$(emktemp)" |
1360 | local sqltmp="$(emktemp)" |
860 | |
1361 | |
… | |
… | |
863 | && cp "${help_tables}" "${TMPDIR}/fill_help_tables.sql" \ |
1364 | && cp "${help_tables}" "${TMPDIR}/fill_help_tables.sql" \ |
864 | || touch "${TMPDIR}/fill_help_tables.sql" |
1365 | || touch "${TMPDIR}/fill_help_tables.sql" |
865 | help_tables="${TMPDIR}/fill_help_tables.sql" |
1366 | help_tables="${TMPDIR}/fill_help_tables.sql" |
866 | |
1367 | |
867 | pushd "${TMPDIR}" &>/dev/null |
1368 | pushd "${TMPDIR}" &>/dev/null |
868 | "${ROOT}/usr/bin/mysql_install_db" | grep -B5 -A999 -i "ERROR" |
1369 | "${ROOT}/usr/bin/mysql_install_db" >"${TMPDIR}"/mysql_install_db.log 2>&1 |
|
|
1370 | if [ $? -ne 0 ]; then |
|
|
1371 | grep -B5 -A999 -i "ERROR" "${TMPDIR}"/mysql_install_db.log 1>&2 |
|
|
1372 | die "Failed to run mysql_install_db. Please review /var/log/mysql/mysqld.err AND ${TMPDIR}/mysql_install_db.log" |
|
|
1373 | fi |
869 | popd &>/dev/null |
1374 | popd &>/dev/null |
870 | [[ -f "${ROOT}/${DATADIR}/mysql/user.frm" ]] \ |
1375 | [[ -f "${ROOT}/${MY_DATADIR}/mysql/user.frm" ]] \ |
871 | || die "MySQL databases not installed" |
1376 | || die "MySQL databases not installed" |
872 | chown -R mysql:mysql "${ROOT}/${DATADIR}" 2> /dev/null |
1377 | chown -R mysql:mysql "${ROOT}/${MY_DATADIR}" 2>/dev/null |
873 | chmod 0750 "${ROOT}/${DATADIR}" 2> /dev/null |
1378 | chmod 0750 "${ROOT}/${MY_DATADIR}" 2>/dev/null |
|
|
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}" |
874 | |
1393 | |
875 | if mysql_version_is_at_least "4.1.3" ; then |
1394 | if mysql_version_is_at_least "4.1.3" ; then |
876 | options="--skip-ndbcluster" |
|
|
877 | |
|
|
878 | # Filling timezones, see |
1395 | # Filling timezones, see |
879 | # http://dev.mysql.com/doc/mysql/en/time-zone-support.html |
1396 | # http://dev.mysql.com/doc/mysql/en/time-zone-support.html |
880 | "${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 |
881 | |
1398 | |
882 | if [[ -r "${help_tables}" ]] ; then |
1399 | if [[ -r "${help_tables}" ]] ; then |
883 | cat "${help_tables}" >> "${sqltmp}" |
1400 | cat "${help_tables}" >> "${sqltmp}" |
884 | fi |
1401 | fi |
885 | fi |
1402 | fi |
|
|
1403 | |
|
|
1404 | einfo "Creating the mysql database and setting proper" |
|
|
1405 | einfo "permissions on it ..." |
886 | |
1406 | |
887 | local socket="${ROOT}/var/run/mysqld/mysqld${RANDOM}.sock" |
1407 | local socket="${ROOT}/var/run/mysqld/mysqld${RANDOM}.sock" |
888 | local pidfile="${ROOT}/var/run/mysqld/mysqld${RANDOM}.pid" |
1408 | local pidfile="${ROOT}/var/run/mysqld/mysqld${RANDOM}.pid" |
889 | local mysqld="${ROOT}/usr/sbin/mysqld \ |
1409 | local mysqld="${ROOT}/usr/sbin/mysqld \ |
890 | ${options} \ |
1410 | ${options} \ |
891 | --user=mysql \ |
1411 | --user=mysql \ |
892 | --skip-grant-tables \ |
|
|
893 | --basedir=${ROOT}/usr \ |
1412 | --basedir=${ROOT}/usr \ |
894 | --datadir=${ROOT}/${DATADIR} \ |
1413 | --datadir=${ROOT}/${MY_DATADIR} \ |
895 | --skip-innodb \ |
|
|
896 | --skip-bdb \ |
|
|
897 | --skip-networking \ |
|
|
898 | --max_allowed_packet=8M \ |
1414 | --max_allowed_packet=8M \ |
899 | --net_buffer_length=16K \ |
1415 | --net_buffer_length=16K \ |
|
|
1416 | --default-storage-engine=MyISAM \ |
900 | --socket=${socket} \ |
1417 | --socket=${socket} \ |
901 | --pid-file=${pidfile}" |
1418 | --pid-file=${pidfile}" |
|
|
1419 | #einfo "About to start mysqld: ${mysqld}" |
|
|
1420 | ebegin "Starting mysqld" |
902 | ${mysqld} & |
1421 | ${mysqld} & |
|
|
1422 | rc=$? |
903 | while ! [[ -S "${socket}" || "${maxtry}" -lt 1 ]] ; do |
1423 | while ! [[ -S "${socket}" || "${maxtry}" -lt 1 ]] ; do |
904 | maxtry=$((${maxtry}-1)) |
1424 | maxtry=$((${maxtry}-1)) |
905 | echo -n "." |
1425 | echo -n "." |
906 | sleep 1 |
1426 | sleep 1 |
907 | done |
1427 | done |
|
|
1428 | eend $rc |
908 | |
1429 | |
|
|
1430 | if ! [[ -S "${socket}" ]]; then |
|
|
1431 | die "Completely failed to start up mysqld with: ${mysqld}" |
|
|
1432 | fi |
|
|
1433 | |
|
|
1434 | ebegin "Setting root password" |
909 | # 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 |
910 | 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'" |
911 | "${ROOT}/usr/bin/mysql" \ |
1437 | "${ROOT}/usr/bin/mysql" \ |
912 | --socket=${socket} \ |
1438 | --socket=${socket} \ |
913 | -hlocalhost \ |
1439 | -hlocalhost \ |
914 | -e "${sql}" |
1440 | -e "${sql}" |
|
|
1441 | eend $? |
915 | |
1442 | |
916 | einfo "Loading \"zoneinfo\", this step may require a few seconds ..." |
1443 | ebegin "Loading \"zoneinfo\", this step may require a few seconds ..." |
917 | |
|
|
918 | "${ROOT}/usr/bin/mysql" \ |
1444 | "${ROOT}/usr/bin/mysql" \ |
919 | --socket=${socket} \ |
1445 | --socket=${socket} \ |
920 | -hlocalhost \ |
1446 | -hlocalhost \ |
921 | -uroot \ |
1447 | -uroot \ |
922 | -p"${pwd1}" \ |
1448 | -p"${MYSQL_ROOT_PASSWORD}" \ |
923 | mysql < "${sqltmp}" |
1449 | mysql < "${sqltmp}" |
|
|
1450 | rc=$? |
|
|
1451 | eend $? |
|
|
1452 | [ $rc -ne 0 ] && ewarn "Failed to load zoneinfo!" |
924 | |
1453 | |
925 | # Stop the server and cleanup |
1454 | # Stop the server and cleanup |
|
|
1455 | einfo "Stopping the server ..." |
926 | kill $(< "${pidfile}" ) |
1456 | kill $(< "${pidfile}" ) |
927 | rm -f "${sqltmp}" |
1457 | rm -f "${sqltmp}" |
928 | einfo "Stopping the server ..." |
|
|
929 | wait %1 |
1458 | wait %1 |
930 | einfo "Done" |
1459 | einfo "Done" |
931 | } |
1460 | } |
932 | |
1461 | |
|
|
1462 | # @FUNCTION: mysql_pkg_postrm |
|
|
1463 | # @DESCRIPTION: |
|
|
1464 | # Remove mysql symlinks. |
933 | mysql_pkg_postrm() { |
1465 | mysql_pkg_postrm() { |
934 | if [[ ${PN} == "mysql-slotted" ]] ; then |
|
|
935 | mysql_lib_symlinks |
1466 | : # mysql_lib_symlinks "${D}" |
936 | mysql_clients_link_to_best_version |
|
|
937 | fi |
|
|
938 | } |
1467 | } |