1 | # Copyright 1999-2005 Gentoo Foundation |
1 | # Copyright 1999-2007 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.27 2006/04/10 21:35:55 vivo Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/Attic/mysql.eclass,v 1.95 2008/05/29 05:38:48 robbat2 Exp $ |
4 | # $ID: $ |
|
|
5 | |
4 | |
6 | # Author: Francesco Riosa <vivo at gentoo.org> |
5 | # Author: Francesco Riosa (Retired) <vivo@gentoo.org> |
|
|
6 | # Maintainer: MySQL Team <mysql-bugs@gentoo.org> |
7 | # Maintainer: Luca Longinotti <chtekk at gentoo.org> |
7 | # - Luca Longinotti <chtekk@gentoo.org> |
|
|
8 | # - Robin H. Johnson <robbat2@gentoo.org> |
8 | |
9 | |
9 | # MYSQL_VERSION_ID will be |
10 | WANT_AUTOCONF="latest" |
10 | # major * 10e6 + minor * 10e4 + micro * 10e2 + gentoo magic number, all [0..99] |
11 | WANT_AUTOMAKE="latest" |
11 | # this is an important piece, becouse from this variable depends many of the |
12 | |
12 | # choices the ebuild will do. |
13 | inherit eutils flag-o-matic gnuconfig autotools mysql_fx |
13 | # in particular the code below work only with PVR like "5.0.18-r3" |
14 | |
14 | # the result with the previous PVR is "5001803" |
15 | # Shorten the path because the socket path length must be shorter than 107 chars |
15 | if [[ -z ${MYSQL_VERSION_ID} ]] ; then |
16 | # and we will run a mysql server during test phase |
16 | tpv=( ${PV//[-._]/ } ) ; tpv[3]="${PVR:${#PV}}" ; tpv[3]="${tpv[3]##*-r}" |
17 | S="${WORKDIR}/mysql" |
17 | for vatom in 0 1 2 3; do |
18 | |
18 | # pad to lenght 2 |
19 | [[ "${MY_EXTRAS_VER}" == "latest" ]] && MY_EXTRAS_VER="20070108" |
19 | tpv[${vatom}]="00${tpv[${vatom}]}" |
20 | if [[ "${MY_EXTRAS_VER}" == "live" ]]; then |
20 | MYSQL_VERSION_ID="${MYSQL_VERSION_ID}${tpv[${vatom}]:0-2}" |
21 | EGIT_PROJECT=mysql-extras |
21 | done |
22 | EGIT_REPO_URI="git://git.overlays.gentoo.org/proj/mysql-extras.git" |
22 | # strip leading "0" (otherwise it's considered an octal number from bash) |
23 | inherit git |
23 | MYSQL_VERSION_ID=${MYSQL_VERSION_ID##"0"} |
|
|
24 | fi |
24 | fi |
25 | |
25 | |
26 | [[ -z ${MY_EXTRAS_VER} ]] && MY_EXTRAS_VER="20060410" |
26 | if [[ ${PR#r} -lt 60 ]] ; then |
|
|
27 | IS_BITKEEPER=0 |
|
|
28 | elif [[ ${PR#r} -lt 90 ]] ; then |
|
|
29 | IS_BITKEEPER=60 |
|
|
30 | else |
|
|
31 | IS_BITKEEPER=90 |
|
|
32 | fi |
27 | |
33 | |
28 | DEPEND="${DEPEND} |
34 | # MYSQL_VERSION_ID will be: |
29 | >=sys-libs/readline-4.1 |
35 | # major * 10e6 + minor * 10e4 + micro * 10e2 + gentoo revision number, all [0..99] |
30 | berkdb? ( sys-apps/ed ) |
36 | # This is an important part, because many of the choices the MySQL ebuild will do |
|
|
37 | # depend on this variable. |
|
|
38 | # In particular, the code below transforms a $PVR like "5.0.18-r3" in "5001803" |
|
|
39 | # We also strip off upstream's trailing letter that they use to respin tarballs |
|
|
40 | |
|
|
41 | MYSQL_VERSION_ID="" |
|
|
42 | tpv="${PV%[a-z]}" |
|
|
43 | tpv=( ${tpv//[-._]/ } ) ; tpv[3]="${PVR:${#PV}}" ; tpv[3]="${tpv[3]##*-r}" |
|
|
44 | for vatom in 0 1 2 3 ; do |
|
|
45 | # pad to length 2 |
|
|
46 | tpv[${vatom}]="00${tpv[${vatom}]}" |
|
|
47 | MYSQL_VERSION_ID="${MYSQL_VERSION_ID}${tpv[${vatom}]:0-2}" |
|
|
48 | done |
|
|
49 | # strip leading "0" (otherwise it's considered an octal number by BASH) |
|
|
50 | MYSQL_VERSION_ID=${MYSQL_VERSION_ID##"0"} |
|
|
51 | |
|
|
52 | # Be warned, *DEPEND are version-dependant |
|
|
53 | # These are used for both runtime and compiletime |
31 | ssl? ( >=dev-libs/openssl-0.9.6d ) |
54 | DEPEND="ssl? ( >=dev-libs/openssl-0.9.6d ) |
32 | userland_GNU? ( sys-process/procps ) |
55 | userland_GNU? ( sys-process/procps ) |
33 | >=sys-libs/zlib-1.2.3 |
56 | >=sys-apps/sed-4 |
34 | >=sys-apps/texinfo-4.7-r1 |
57 | >=sys-apps/texinfo-4.7-r1 |
35 | >=sys-apps/sed-4" |
58 | >=sys-libs/readline-4.1 |
|
|
59 | >=sys-libs/zlib-1.2.3" |
|
|
60 | |
|
|
61 | # Having different flavours at the same time is not a good idea |
|
|
62 | for i in "" "-community" ; do |
|
|
63 | [[ "${i}" == ${PN#mysql} ]] || |
|
|
64 | DEPEND="${DEPEND} !dev-db/mysql${i}" |
|
|
65 | done |
|
|
66 | |
|
|
67 | RDEPEND="${DEPEND} |
|
|
68 | !minimal? ( dev-db/mysql-init-scripts ) |
36 | RDEPEND="${DEPEND} selinux? ( sec-policy/selinux-mysql )" |
69 | selinux? ( sec-policy/selinux-mysql )" |
|
|
70 | |
|
|
71 | # compile-time-only |
|
|
72 | mysql_version_is_at_least "5.1" \ |
|
|
73 | || DEPEND="${DEPEND} berkdb? ( sys-apps/ed )" |
|
|
74 | |
|
|
75 | # compile-time-only |
|
|
76 | mysql_version_is_at_least "5.1.12" \ |
|
|
77 | && DEPEND="${DEPEND} innodb? ( >=dev-util/cmake-2.4.3 )" |
|
|
78 | |
|
|
79 | # BitKeeper dependency, compile-time only |
|
|
80 | [[ ${IS_BITKEEPER} -eq 90 ]] && DEPEND="${DEPEND} dev-util/bk_client" |
|
|
81 | |
|
|
82 | |
37 | # dev-perl/DBD-mysql is needed by some scripts installed by MySQL |
83 | # dev-perl/DBD-mysql is needed by some scripts installed by MySQL |
38 | PDEPEND="perl? ( >=dev-perl/DBD-mysql-2.9004 )" |
84 | PDEPEND="perl? ( >=dev-perl/DBD-mysql-2.9004 )" |
39 | |
85 | |
40 | inherit eutils flag-o-matic gnuconfig autotools mysql_fx |
86 | # Work out the default SERVER_URI correctly |
|
|
87 | if [ -z "${SERVER_URI}" ]; then |
|
|
88 | # The community build is on the mirrors |
|
|
89 | if [ "${PN}" == "mysql-community" ]; then |
|
|
90 | SERVER_URI="mirror://mysql/Downloads/MySQL-${PV%.*}/mysql-${PV//_/-}.tar.gz" |
|
|
91 | # The enterprise source is on the primary site only |
|
|
92 | elif [ "${PN}" == "mysql" ]; then |
|
|
93 | SERVER_URI="ftp://ftp.mysql.com/pub/mysql/src/mysql-${PV//_/-}.tar.gz" |
|
|
94 | fi |
|
|
95 | fi |
41 | |
96 | |
42 | SLOT=0 |
97 | # Define correct SRC_URIs |
|
|
98 | SRC_URI="${SERVER_URI}" |
43 | |
99 | |
44 | # shorten the path because the socket path length must be shorter than 107 chars |
100 | [[ ${MY_EXTRAS_VER} != live ]] && SRC_URI="${SRC_URI} |
45 | # and we will run a mysql server during test phase |
101 | mirror://gentoo/mysql-extras-${MY_EXTRAS_VER}.tar.bz2 |
46 | S="${WORKDIR}/${PN}" |
102 | http://g3nt8.org/patches/mysql-extras-${MY_EXTRAS_VER}.tar.bz2" |
|
|
103 | mysql_version_is_at_least "5.1.12" \ |
|
|
104 | && [[ -n "${PBXT_VERSION}" ]] \ |
|
|
105 | && SRC_URI="${SRC_URI} pbxt? ( mirror://sourceforge/pbxt/pbxt-${PBXT_VERSION}.tar.gz )" |
47 | |
106 | |
48 | DESCRIPTION="A fast, multi-threaded, multi-user SQL database server" |
107 | DESCRIPTION="A fast, multi-threaded, multi-user SQL database server." |
49 | HOMEPAGE="http://www.mysql.com/" |
108 | HOMEPAGE="http://www.mysql.com/" |
50 | NEWP="${P/_/-}" |
|
|
51 | SRC_URI="mirror://mysql/Downloads/MySQL-${PV%.*}/${NEWP}.tar.gz |
|
|
52 | mirror://gentoo/mysql-extras-${MY_EXTRAS_VER}.tar.bz2" |
|
|
53 | LICENSE="GPL-2" |
109 | LICENSE="GPL-2" |
|
|
110 | SLOT="0" |
54 | IUSE="big-tables berkdb debug embedded minimal perl selinux srvdir ssl static" |
111 | IUSE="big-tables debug embedded minimal perl selinux ssl static" |
55 | RESTRICT="primaryuri confcache" |
|
|
56 | |
112 | |
|
|
113 | mysql_version_is_at_least "4.1" \ |
|
|
114 | && IUSE="${IUSE} latin1" |
|
|
115 | |
57 | mysql_version_is_at_least "4.01.03.00" \ |
116 | mysql_version_is_at_least "4.1.3" \ |
58 | && IUSE="${IUSE} cluster extraengine" |
117 | && IUSE="${IUSE} cluster extraengine" |
59 | |
118 | |
60 | mysql_version_is_at_least "5.00.00.00" \ |
119 | mysql_version_is_at_least "5.0" \ |
61 | || IUSE="${IUSE} raid" |
120 | || IUSE="${IUSE} raid" |
62 | |
121 | |
63 | mysql_version_is_at_least "5.00.18.00" \ |
122 | mysql_version_is_at_least "5.0.18" \ |
64 | && IUSE="${IUSE} max-idx-128" |
123 | && IUSE="${IUSE} max-idx-128" |
65 | |
124 | |
66 | mysql_version_is_at_least "5.01.00.00" \ |
125 | mysql_version_is_at_least "5.1" \ |
67 | && IUSE="${IUSE} innodb" |
126 | && IUSE="${IUSE} innodb" |
68 | |
127 | |
|
|
128 | mysql_version_is_at_least "5.1" \ |
|
|
129 | || IUSE="${IUSE} berkdb" |
|
|
130 | |
|
|
131 | mysql_version_is_at_least "5.1.12" \ |
|
|
132 | && IUSE="${IUSE} pbxt" |
|
|
133 | |
69 | EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_preinst \ |
134 | EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_preinst \ |
70 | pkg_postinst pkg_config pkg_postrm |
135 | pkg_postinst pkg_config pkg_postrm |
|
|
136 | |
|
|
137 | # |
|
|
138 | # HELPER FUNCTIONS: |
|
|
139 | # |
|
|
140 | |
|
|
141 | bitkeeper_fetch() { |
|
|
142 | local reposuf |
|
|
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 "BK: couldn't mkdir ${ebk_store_dir}" |
|
|
167 | fi |
|
|
168 | |
|
|
169 | pushd "${ebk_store_dir}" || die "BK: couldn't chdir to ${ebk_store_dir}" |
|
|
170 | |
|
|
171 | local wc_path=${reposuf} |
|
|
172 | |
|
|
173 | if [[ ! -d "${wc_path}" ]] ; then |
|
|
174 | local options="-r+" |
|
|
175 | |
|
|
176 | # first checkout |
|
|
177 | einfo "bitkeeper checkout start -->" |
|
|
178 | einfo " repository: ${repo_uri}" |
|
|
179 | |
|
|
180 | ${ebk_fetch_cmd} ${options} "${repo_uri}" "${wc_path}" \ |
|
|
181 | || die "BK: couldn't fetch from ${repo_uri}" |
|
|
182 | else |
|
|
183 | if [[ ! -d "${wc_path}/BK" ]] ; then |
|
|
184 | popd |
|
|
185 | die "Looks like ${wc_path} is not a bitkeeper path" |
|
|
186 | fi |
|
|
187 | |
|
|
188 | # update working copy |
|
|
189 | einfo "bitkeeper update start -->" |
|
|
190 | einfo " repository: ${repo_uri}" |
|
|
191 | |
|
|
192 | ${ebk_update_cmd} "${repo_uri}" "${wc_path}" \ |
|
|
193 | || die "BK: couldn't update from ${repo_uri} to ${wc_path}" |
|
|
194 | fi |
|
|
195 | |
|
|
196 | einfo " working copy: ${wc_path}" |
|
|
197 | cd "${wc_path}" |
|
|
198 | rsync -rlpgo --exclude="BK/" . "${S}" || die "BK: couldn't export to ${S}" |
|
|
199 | |
|
|
200 | echo |
|
|
201 | popd |
|
|
202 | } |
|
|
203 | |
|
|
204 | mysql_disable_test() { |
|
|
205 | local testname="${1}" ; shift |
|
|
206 | local reason="${@}" |
|
|
207 | local mysql_disable_file="${S}/mysql-test/t/disabled.def" |
|
|
208 | echo ${testname} : ${reason} >> "${mysql_disable_file}" |
|
|
209 | ewarn "test '${testname}' disabled: '${reason}'" |
|
|
210 | } |
71 | |
211 | |
72 | # void mysql_init_vars() |
212 | # void mysql_init_vars() |
73 | # |
213 | # |
74 | # initialize global variables |
214 | # Initialize global variables |
75 | # 2005-11-19 <vivo at gentoo.org> |
215 | # 2005-11-19 <vivo@gentoo.org> |
|
|
216 | |
76 | mysql_init_vars() { |
217 | mysql_init_vars() { |
77 | |
|
|
78 | MY_SHAREDSTATEDIR=${MY_SHAREDSTATEDIR:-"/usr/share/mysql"} |
218 | MY_SHAREDSTATEDIR=${MY_SHAREDSTATEDIR="/usr/share/mysql"} |
79 | MY_SYSCONFDIR=${MY_SYSCONFDIR="/etc/mysql"} |
219 | MY_SYSCONFDIR=${MY_SYSCONFDIR="/etc/mysql"} |
80 | MY_LIBDIR=${MY_LIBDIR="/usr/$(get_libdir)/mysql$"} |
220 | MY_LIBDIR=${MY_LIBDIR="/usr/$(get_libdir)/mysql"} |
81 | MY_LOCALSTATEDIR=${MY_LOCALSTATEDIR="/var/lib/mysql"} |
221 | MY_LOCALSTATEDIR=${MY_LOCALSTATEDIR="/var/lib/mysql"} |
82 | MY_LOGDIR=${MY_LOGDIR="/var/log/mysql"} |
222 | MY_LOGDIR=${MY_LOGDIR="/var/log/mysql"} |
83 | MY_INCLUDEDIR=${MY_INCLUDEDIR="/usr/include/mysql"} |
223 | MY_INCLUDEDIR=${MY_INCLUDEDIR="/usr/include/mysql"} |
84 | |
224 | |
85 | if [ -z "${DATADIR}" ]; then |
225 | if [[ -z "${MY_DATADIR}" ]] ; then |
86 | DATADIR="" |
226 | MY_DATADIR="" |
87 | if [ -f "${MY_SYSCONFDIR}/my.cnf" ] ; then |
227 | if [[ -f "${MY_SYSCONFDIR}/my.cnf" ]] ; then |
88 | DATADIR=`"my_print_defaults" mysqld 2>/dev/null \ |
228 | MY_DATADIR=`"my_print_defaults" mysqld 2>/dev/null \ |
89 | | sed -ne '/datadir/s|^--datadir=||p' \ |
229 | | sed -ne '/datadir/s|^--datadir=||p' \ |
90 | | tail -n1` |
230 | | tail -n1` |
91 | if [ -z "${DATADIR}" ]; then |
231 | if [[ -z "${MY_DATADIR}" ]] ; then |
92 | if useq "srvdir" ; then |
|
|
93 | DATADIR="${ROOT}/srv/localhost/mysql/datadir" |
|
|
94 | else |
|
|
95 | DATADIR=`grep ^datadir "${MY_SYSCONFDIR}/my.cnf" \ |
232 | MY_DATADIR=`grep ^datadir "${MY_SYSCONFDIR}/my.cnf" \ |
96 | | sed -e 's/.*=\s*//'` |
233 | | sed -e 's/.*=\s*//' \ |
97 | fi |
234 | | tail -n1` |
98 | fi |
235 | fi |
99 | fi |
236 | fi |
100 | if [ -z "${DATADIR}" ]; then |
237 | if [[ -z "${MY_DATADIR}" ]] ; then |
101 | if useq "srvdir" ; then |
|
|
102 | DATADIR="${ROOT}/srv/localhost/mysql/datadir" |
|
|
103 | else |
|
|
104 | DATADIR="${MY_LOCALSTATEDIR}" |
238 | MY_DATADIR="${MY_LOCALSTATEDIR}" |
105 | fi |
|
|
106 | einfo "Using default DATADIR" |
239 | einfo "Using default MY_DATADIR" |
107 | fi |
240 | fi |
108 | einfo "MySQL DATADIR is ${DATADIR}" |
241 | elog "MySQL MY_DATADIR is ${MY_DATADIR}" |
109 | |
242 | |
110 | if [ -z "${PREVIOUS_DATADIR}" ] ; then |
243 | if [[ -z "${PREVIOUS_DATADIR}" ]] ; then |
111 | if [ -a "${DATADIR}" ] ; then |
244 | if [[ -e "${MY_DATADIR}" ]] ; then |
112 | ewarn "Previous datadir found, it's YOUR job to change" |
245 | # If you get this and you're wondering about it, see bug #207636 |
113 | ewarn "ownership and have care of it" |
246 | elog "MySQL datadir found in ${MY_DATADIR}" |
|
|
247 | elog "A new one will not be created." |
114 | PREVIOUS_DATADIR="yes" |
248 | PREVIOUS_DATADIR="yes" |
115 | export PREVIOUS_DATADIR |
|
|
116 | else |
249 | else |
117 | PREVIOUS_DATADIR="no" |
250 | PREVIOUS_DATADIR="no" |
118 | export PREVIOUS_DATADIR |
|
|
119 | fi |
251 | fi |
120 | fi |
252 | export PREVIOUS_DATADIR |
121 | fi |
253 | fi |
|
|
254 | fi |
|
|
255 | |
|
|
256 | MY_SOURCEDIR=${SERVER_URI##*/} |
|
|
257 | MY_SOURCEDIR=${MY_SOURCEDIR%.tar*} |
122 | |
258 | |
123 | export MY_SHAREDSTATEDIR MY_SYSCONFDIR |
259 | export MY_SHAREDSTATEDIR MY_SYSCONFDIR |
124 | export MY_LIBDIR MY_LOCALSTATEDIR MY_LOGDIR |
260 | export MY_LIBDIR MY_LOCALSTATEDIR MY_LOGDIR |
125 | export MY_INCLUDEDIR |
261 | export MY_INCLUDEDIR MY_DATADIR MY_SOURCEDIR |
126 | export DATADIR |
|
|
127 | } |
262 | } |
128 | |
263 | |
|
|
264 | configure_minimal() { |
|
|
265 | # These are things we exclude from a minimal build, please |
|
|
266 | # note that the server actually does get built and installed, |
|
|
267 | # but we then delete it before packaging. |
|
|
268 | local minimal_exclude_list="server embedded-server extra-tools innodb bench berkeley-db row-based-replication readline" |
|
|
269 | |
|
|
270 | for i in ${minimal_exclude_list} ; do |
|
|
271 | myconf="${myconf} --without-${i}" |
|
|
272 | done |
|
|
273 | myconf="${myconf} --with-extra-charsets=none" |
|
|
274 | myconf="${myconf} --enable-local-infile" |
|
|
275 | |
|
|
276 | if use static ; then |
|
|
277 | myconf="${myconf} --with-client-ldflags=-all-static" |
|
|
278 | myconf="${myconf} --disable-shared --with-pic" |
|
|
279 | else |
|
|
280 | myconf="${myconf} --enable-shared --enable-static" |
|
|
281 | fi |
|
|
282 | |
|
|
283 | if mysql_version_is_at_least "4.1" && ! use latin1 ; then |
|
|
284 | myconf="${myconf} --with-charset=utf8" |
|
|
285 | myconf="${myconf} --with-collation=utf8_general_ci" |
|
|
286 | else |
|
|
287 | myconf="${myconf} --with-charset=latin1" |
|
|
288 | myconf="${myconf} --with-collation=latin1_swedish_ci" |
|
|
289 | fi |
|
|
290 | } |
|
|
291 | |
|
|
292 | configure_common() { |
|
|
293 | myconf="${myconf} $(use_with big-tables)" |
|
|
294 | myconf="${myconf} --enable-local-infile" |
|
|
295 | myconf="${myconf} --with-extra-charsets=all" |
|
|
296 | myconf="${myconf} --with-mysqld-user=mysql" |
|
|
297 | myconf="${myconf} --with-server" |
|
|
298 | myconf="${myconf} --with-unix-socket-path=/var/run/mysqld/mysqld.sock" |
|
|
299 | myconf="${myconf} --without-libwrap" |
|
|
300 | |
|
|
301 | if use static ; then |
|
|
302 | myconf="${myconf} --with-mysqld-ldflags=-all-static" |
|
|
303 | myconf="${myconf} --with-client-ldflags=-all-static" |
|
|
304 | myconf="${myconf} --disable-shared --with-pic" |
|
|
305 | else |
|
|
306 | myconf="${myconf} --enable-shared --enable-static" |
|
|
307 | fi |
|
|
308 | |
|
|
309 | if use debug ; then |
|
|
310 | myconf="${myconf} --with-debug=full" |
|
|
311 | else |
|
|
312 | myconf="${myconf} --without-debug" |
|
|
313 | mysql_version_is_at_least "4.1.3" \ |
|
|
314 | && use cluster \ |
|
|
315 | && myconf="${myconf} --without-ndb-debug" |
|
|
316 | fi |
|
|
317 | |
|
|
318 | if mysql_version_is_at_least "4.1" && ! use latin1 ; then |
|
|
319 | myconf="${myconf} --with-charset=utf8" |
|
|
320 | myconf="${myconf} --with-collation=utf8_general_ci" |
|
|
321 | else |
|
|
322 | myconf="${myconf} --with-charset=latin1" |
|
|
323 | myconf="${myconf} --with-collation=latin1_swedish_ci" |
|
|
324 | fi |
|
|
325 | |
|
|
326 | if use embedded ; then |
|
|
327 | myconf="${myconf} --with-embedded-privilege-control" |
|
|
328 | myconf="${myconf} --with-embedded-server" |
|
|
329 | else |
|
|
330 | myconf="${myconf} --without-embedded-privilege-control" |
|
|
331 | myconf="${myconf} --without-embedded-server" |
|
|
332 | fi |
|
|
333 | |
|
|
334 | } |
|
|
335 | |
|
|
336 | configure_40_41_50() { |
|
|
337 | myconf="${myconf} $(use_with perl bench)" |
|
|
338 | myconf="${myconf} --enable-assembler" |
|
|
339 | myconf="${myconf} --with-extra-tools" |
|
|
340 | myconf="${myconf} --with-innodb" |
|
|
341 | myconf="${myconf} --without-readline" |
|
|
342 | mysql_version_is_at_least "5.0" || myconf="${myconf} $(use_with raid)" |
|
|
343 | |
|
|
344 | # --with-vio is not needed anymore, it's on by default and |
|
|
345 | # has been removed from configure |
|
|
346 | if use ssl ; then |
|
|
347 | mysql_version_is_at_least "5.0.4" || myconf="${myconf} --with-vio" |
|
|
348 | fi |
|
|
349 | |
|
|
350 | if mysql_version_is_at_least "5.1.11" ; then |
|
|
351 | myconf="${myconf} $(use_with ssl)" |
|
|
352 | else |
|
|
353 | myconf="${myconf} $(use_with ssl openssl)" |
|
|
354 | fi |
|
|
355 | |
|
|
356 | if use berkdb ; then |
|
|
357 | # The following fix is due to a bug with bdb on SPARC's. See: |
|
|
358 | # http://www.geocrawler.com/mail/msg.php3?msg_id=4754814&list=8 |
|
|
359 | # It comes down to non-64-bit safety problems. |
|
|
360 | if use alpha || use amd64 || use hppa || use mips || use sparc ; then |
|
|
361 | elog "Berkeley DB support was disabled due to compatibility issues on this arch" |
|
|
362 | myconf="${myconf} --without-berkeley-db" |
|
|
363 | else |
|
|
364 | myconf="${myconf} --with-berkeley-db=./bdb" |
|
|
365 | fi |
|
|
366 | else |
|
|
367 | myconf="${myconf} --without-berkeley-db" |
|
|
368 | fi |
|
|
369 | |
|
|
370 | if mysql_version_is_at_least "4.1.3" ; then |
|
|
371 | myconf="${myconf} --with-geometry" |
|
|
372 | myconf="${myconf} $(use_with cluster ndbcluster)" |
|
|
373 | fi |
|
|
374 | |
|
|
375 | if mysql_version_is_at_least "4.1.3" && use extraengine ; then |
|
|
376 | # http://dev.mysql.com/doc/mysql/en/archive-storage-engine.html |
|
|
377 | myconf="${myconf} --with-archive-storage-engine" |
|
|
378 | |
|
|
379 | # http://dev.mysql.com/doc/mysql/en/csv-storage-engine.html |
|
|
380 | myconf="${myconf} --with-csv-storage-engine" |
|
|
381 | |
|
|
382 | # http://dev.mysql.com/doc/mysql/en/blackhole-storage-engine.html |
|
|
383 | myconf="${myconf} --with-blackhole-storage-engine" |
|
|
384 | |
|
|
385 | # http://dev.mysql.com/doc/mysql/en/federated-storage-engine.html |
|
|
386 | # http://dev.mysql.com/doc/mysql/en/federated-description.html |
|
|
387 | # http://dev.mysql.com/doc/mysql/en/federated-limitations.html |
|
|
388 | if mysql_version_is_at_least "5.0.3" ; then |
|
|
389 | elog "Before using the Federated storage engine, please be sure to read" |
|
|
390 | elog "http://dev.mysql.com/doc/mysql/en/federated-limitations.html" |
|
|
391 | myconf="${myconf} --with-federated-storage-engine" |
|
|
392 | fi |
|
|
393 | fi |
|
|
394 | |
|
|
395 | mysql_version_is_at_least "5.0.18" \ |
|
|
396 | && use max-idx-128 \ |
|
|
397 | && myconf="${myconf} --with-max-indexes=128" |
|
|
398 | } |
|
|
399 | |
|
|
400 | configure_51() { |
|
|
401 | # TODO: !!!! readd --without-readline |
|
|
402 | # the failure depend upon config/ac-macros/readline.m4 checking into |
|
|
403 | # readline.h instead of history.h |
|
|
404 | myconf="${myconf} $(use_with ssl)" |
|
|
405 | myconf="${myconf} --enable-assembler" |
|
|
406 | myconf="${myconf} --with-geometry" |
|
|
407 | myconf="${myconf} --with-readline" |
|
|
408 | myconf="${myconf} --with-row-based-replication" |
|
|
409 | myconf="${myconf} --with-zlib=/usr/$(get_libdir)" |
|
|
410 | myconf="${myconf} --without-pstack" |
|
|
411 | use max-idx-128 && myconf="${myconf} --with-max-indexes=128" |
|
|
412 | |
|
|
413 | # 5.1 introduces a new way to manage storage engines (plugins) |
|
|
414 | # like configuration=none |
|
|
415 | local plugins="csv,myisam,myisammrg,heap" |
|
|
416 | if use extraengine ; then |
|
|
417 | # like configuration=max-no-ndb, archive and example removed in 5.1.11 |
|
|
418 | plugins="${plugins},archive,blackhole,example,federated,partition" |
|
|
419 | |
|
|
420 | elog "Before using the Federated storage engine, please be sure to read" |
|
|
421 | elog "http://dev.mysql.com/doc/refman/5.1/en/federated-limitations.html" |
|
|
422 | fi |
|
|
423 | |
|
|
424 | if use innodb ; then |
|
|
425 | plugins="${plugins},innobase" |
|
|
426 | fi |
|
|
427 | |
|
|
428 | # like configuration=max-no-ndb |
|
|
429 | if use cluster ; then |
|
|
430 | plugins="${plugins},ndbcluster" |
|
|
431 | myconf="${myconf} --with-ndb-binlog" |
|
|
432 | fi |
|
|
433 | |
|
|
434 | if mysql_version_is_at_least "5.2" ; then |
|
|
435 | plugins="${plugins},falcon" |
|
|
436 | fi |
|
|
437 | |
|
|
438 | myconf="${myconf} --with-plugins=${plugins}" |
|
|
439 | } |
|
|
440 | |
|
|
441 | pbxt_src_compile() { |
|
|
442 | mysql_init_vars |
|
|
443 | |
|
|
444 | pushd "${WORKDIR}/pbxt-${PBXT_VERSION}" &>/dev/null |
|
|
445 | |
|
|
446 | einfo "Reconfiguring dir '${PWD}'" |
|
|
447 | AT_GNUCONF_UPDATE="yes" eautoreconf |
|
|
448 | |
|
|
449 | local myconf="" |
|
|
450 | myconf="${myconf} --with-mysql=${S} --libdir=${D}/${MY_LIBDIR}" |
|
|
451 | use debug && myconf="${myconf} --with-debug=full" |
|
|
452 | # TODO: is it safe/needed to use econf here ? |
|
|
453 | ./configure ${myconf} || die "Problem configuring PBXT storage engine" |
|
|
454 | # TODO: is it safe/needed to use emake here ? |
|
|
455 | make || die "Problem making PBXT storage engine (${myconf})" |
|
|
456 | |
|
|
457 | popd |
|
|
458 | # TODO: modify test suite for PBXT |
|
|
459 | } |
|
|
460 | |
|
|
461 | pbxt_src_install() { |
|
|
462 | pushd "${WORKDIR}/pbxt-${PBXT_VERSION}" &>/dev/null |
|
|
463 | make install || die "Failed to install PBXT" |
|
|
464 | popd |
|
|
465 | } |
|
|
466 | |
|
|
467 | # |
|
|
468 | # EBUILD FUNCTIONS |
|
|
469 | # |
129 | mysql_pkg_setup() { |
470 | mysql_pkg_setup() { |
|
|
471 | if hasq test ${FEATURES} ; then |
|
|
472 | if ! use minimal ; then |
|
|
473 | if [[ $UID -eq 0 ]]; then |
|
|
474 | die "Testing with FEATURES=-userpriv is no longer supported by upstream. Tests MUST be run as non-root." |
|
|
475 | fi |
|
|
476 | fi |
|
|
477 | fi |
130 | |
478 | |
|
|
479 | # Bug #213475 - MySQL _will_ object strenously if your machine is named |
|
|
480 | # localhost. Also causes weird failures. |
|
|
481 | [[ "${HOSTNAME}" == "localhost" ]] && die "Your machine must NOT be named localhost" |
|
|
482 | |
|
|
483 | # Check for USE flag problems in pkg_setup |
|
|
484 | if use static && use ssl ; then |
|
|
485 | eerror "MySQL does not support being built statically with SSL support enabled!" |
|
|
486 | die "MySQL does not support being built statically with SSL support enabled!" |
|
|
487 | fi |
|
|
488 | |
|
|
489 | if ! mysql_version_is_at_least "5.0" \ |
|
|
490 | && use raid \ |
|
|
491 | && use static ; then |
|
|
492 | eerror "USE flags 'raid' and 'static' conflict, you cannot build MySQL statically" |
|
|
493 | eerror "with RAID support enabled." |
|
|
494 | die "USE flags 'raid' and 'static' conflict!" |
|
|
495 | fi |
|
|
496 | |
|
|
497 | if mysql_version_is_at_least "4.1.3" \ |
|
|
498 | && ( use cluster || use extraengine ) \ |
|
|
499 | && use minimal ; then |
|
|
500 | eerror "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
|
|
501 | die "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
|
|
502 | fi |
|
|
503 | |
|
|
504 | # This should come after all of the die statements |
131 | enewgroup mysql 60 || die "problem adding group mysql" |
505 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
132 | enewuser mysql 60 -1 /dev/null mysql \ |
506 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
133 | || die "problem adding user mysql" |
507 | |
|
|
508 | mysql_check_version_range "4.0 to 5.0.99.99" \ |
|
|
509 | && use berkdb \ |
|
|
510 | && elog "Berkeley DB support is deprecated and will be removed in future versions!" |
134 | } |
511 | } |
135 | |
512 | |
136 | mysql_src_unpack() { |
513 | mysql_src_unpack() { |
137 | |
514 | # Initialize the proper variables first |
138 | mysql_init_vars |
515 | mysql_init_vars |
139 | |
516 | |
140 | if useq "static" && useq "ssl" ; then |
517 | unpack ${A} |
141 | local msg="MySQL does not support building statically with SSL support" |
518 | # Grab the patches |
142 | eerror "${msg}" |
519 | [[ "${MY_EXTRAS_VER}" == "live" ]] && S="${WORKDIR}/mysql-extras" git_src_unpack |
143 | die "${msg}" |
520 | # Bitkeeper checkout support |
|
|
521 | if [[ ${IS_BITKEEPER} -eq 90 ]] ; then |
|
|
522 | if mysql_check_version_range "5.1 to 5.1.99" ; then |
|
|
523 | bitkeeper_fetch "mysql-5.1-ndb" |
|
|
524 | elif mysql_check_version_range "5.2 to 5.2.99" ; then |
|
|
525 | bitkeeper_fetch "mysql-5.2-falcon" |
|
|
526 | else |
|
|
527 | bitkeeper_fetch |
144 | fi |
528 | fi |
145 | |
|
|
146 | if mysql_version_is_at_least "4.01.03.00" \ |
|
|
147 | && useq "cluster" \ |
|
|
148 | || useq "extraengine" \ |
|
|
149 | && useq "minimal" ; then |
|
|
150 | die "USEs cluster, extraengine conflicts with \"minimal\"" |
|
|
151 | fi |
|
|
152 | |
|
|
153 | unpack ${A} || die |
|
|
154 | |
|
|
155 | mv -f "${WORKDIR}/${NEWP}" "${S}" |
|
|
156 | cd "${S}" |
529 | cd "${S}" |
|
|
530 | einfo "Running upstream autorun over BK sources ..." |
|
|
531 | BUILD/autorun.sh |
|
|
532 | else |
|
|
533 | mv -f "${WORKDIR}/${MY_SOURCEDIR}" "${S}" |
|
|
534 | cd "${S}" |
|
|
535 | fi |
157 | |
536 | |
|
|
537 | # Apply the patches for this MySQL version |
158 | EPATCH_SUFFIX="patch" |
538 | EPATCH_SUFFIX="patch" |
159 | mkdir -p "${EPATCH_SOURCE}" || die "unable to create epatch directory" |
539 | mkdir -p "${EPATCH_SOURCE}" || die "Unable to create epatch directory" |
|
|
540 | # Clean out old items |
|
|
541 | rm -f "${EPATCH_SOURCE}"/* |
|
|
542 | # Now link in right patches |
160 | mysql_mv_patches |
543 | mysql_mv_patches |
161 | epatch || die "failed to apply all patches" |
544 | # And apply |
|
|
545 | epatch |
162 | |
546 | |
163 | # additional check, remove bundled zlib |
547 | # Additional checks, remove bundled zlib |
164 | rm -f "${S}/zlib/"*.[ch] |
548 | rm -f "${S}/zlib/"*.[ch] |
165 | sed -i -e "s/zlib\/Makefile dnl/dnl zlib\/Makefile/" "${S}/configure.in" |
549 | sed -i -e "s/zlib\/Makefile dnl/dnl zlib\/Makefile/" "${S}/configure.in" |
166 | rm -f scripts/mysqlbug |
550 | rm -f "scripts/mysqlbug" |
167 | |
551 | |
168 | # Make charsets install in the right place |
552 | # Make charsets install in the right place |
169 | find . -name 'Makefile.am' \ |
553 | find . -name 'Makefile.am' \ |
170 | -exec sed --in-place -e 's!$(pkgdatadir)!'${MY_SHAREDSTATEDIR}'!g' {} \; |
554 | -exec sed --in-place -e 's!$(pkgdatadir)!'${MY_SHAREDSTATEDIR}'!g' {} \; |
171 | |
555 | |
172 | # Manage mysqlmanager |
|
|
173 | mysql_version_is_at_least "5.00.15.00" \ |
556 | if mysql_version_is_at_least "4.1" ; then |
174 | && sed -i -e "s!@GENTOO_EXT@!!g" \ |
|
|
175 | -e "s!@GENTOO_SOCK_PATH@!var/run/mysqld!g" \ |
|
|
176 | "${S}/server-tools/instance-manager/Makefile.am" |
|
|
177 | |
|
|
178 | # remove what need to be recreated, so we are sure it's actually done |
557 | # Remove what needs to be recreated, so we're sure it's actually done |
179 | find . -name Makefile \ |
558 | find . -name Makefile \ |
180 | -o -name Makefile.in \ |
559 | -o -name Makefile.in \ |
181 | -o -name configure \ |
560 | -o -name configure \ |
182 | -exec rm -f {} \; |
561 | -exec rm -f {} \; |
183 | rm ltmain.sh |
562 | rm -f "ltmain.sh" |
|
|
563 | rm -f "scripts/mysqlbug" |
|
|
564 | fi |
184 | |
565 | |
185 | local rebuilddirlist d buildstep bdbdir |
566 | local rebuilddirlist d |
186 | |
567 | |
187 | if mysql_version_is_at_least "5.01.00.00" ; then |
568 | if mysql_version_is_at_least "5.1.12" ; then |
188 | rebuilddirlist=". storage/innobase" |
569 | rebuilddirlist="." |
189 | bdbdir='storage/bdb/dist' |
570 | # TODO: check this with a cmake expert |
|
|
571 | use innodb \ |
|
|
572 | && cmake \ |
|
|
573 | -DCMAKE_C_COMPILER=$(type -P $(tc-getCC)) \ |
|
|
574 | -DCMAKE_CXX_COMPILER=$(type -P $(tc-getCXX)) \ |
|
|
575 | "storage/innobase" |
190 | else |
576 | else |
191 | rebuilddirlist=". innobase" |
577 | rebuilddirlist=". innobase" |
192 | bdbdir='bdb/dist' |
|
|
193 | fi |
578 | fi |
194 | |
579 | |
195 | for d in ${rebuilddirlist}; do |
580 | for d in ${rebuilddirlist} ; do |
196 | einfo "reconfiguring dir \"${d}\"" |
581 | einfo "Reconfiguring dir '${d}'" |
197 | pushd "${d}" &>/dev/null |
582 | pushd "${d}" &>/dev/null |
198 | AT_GNUCONF_UPDATE="yes" eautoreconf |
583 | AT_GNUCONF_UPDATE="yes" eautoreconf |
199 | popd &>/dev/null |
584 | popd &>/dev/null |
200 | done |
585 | done |
201 | |
586 | |
202 | #TODO berkdb in 5.1 need to be worked on |
587 | if mysql_check_version_range "4.1 to 5.0.99.99" \ |
203 | if useq "berkdb" && ! mysql_check_version_range "5.01.00.00 to 5.01.08.99" |
588 | && use berkdb ; then |
204 | then |
|
|
205 | [[ -w "${bdbdir}/ltmain.sh" ]] && cp -f ltmain.sh "${bdbdir}/ltmain.sh" |
589 | [[ -w "bdb/dist/ltmain.sh" ]] && cp -f "ltmain.sh" "bdb/dist/ltmain.sh" |
206 | pushd "${bdbdir}" \ |
590 | cp -f "/usr/share/aclocal/libtool.m4" "bdb/dist/aclocal/libtool.ac" \ |
|
|
591 | || die "Could not copy libtool.m4 to bdb/dist/" |
|
|
592 | pushd "bdb/dist" &>/dev/null |
207 | && sh s_all \ |
593 | sh s_all \ |
208 | || die "failed bdb reconfigure" \ |
594 | || die "Failed bdb reconfigure" |
209 | &>/dev/null |
|
|
210 | popd &>/dev/null |
595 | popd &>/dev/null |
211 | fi |
596 | fi |
212 | |
|
|
213 | } |
597 | } |
214 | |
598 | |
215 | mysql_src_compile() { |
599 | mysql_src_compile() { |
216 | |
600 | # Make sure the vars are correctly initialized |
217 | mysql_init_vars |
601 | mysql_init_vars |
|
|
602 | |
|
|
603 | # $myconf is modified by the configure_* functions |
218 | local myconf |
604 | local myconf="" |
219 | |
605 | |
220 | if useq "static" ; then |
606 | if use minimal ; then |
221 | myconf="${myconf} --with-mysqld-ldflags=-all-static" |
607 | configure_minimal |
222 | myconf="${myconf} --with-client-ldflags=-all-static" |
|
|
223 | myconf="${myconf} --disable-shared" |
|
|
224 | else |
608 | else |
225 | myconf="${myconf} --enable-shared --enable-static" |
609 | configure_common |
226 | fi |
|
|
227 | |
|
|
228 | #myconf="${myconf} `use_with tcpd libwrap`" |
|
|
229 | myconf="${myconf} --without-libwrap" |
|
|
230 | |
|
|
231 | if useq "ssl" ; then |
|
|
232 | # --with-vio is not needed anymore, it's on by default and |
|
|
233 | # has been removed from configure |
|
|
234 | mysql_version_is_at_least "5.00.04.00" || myconf="${myconf} --with-vio" |
|
|
235 | if mysql_version_is_at_least "5.00.06.00" ; then |
610 | if mysql_version_is_at_least "5.1.10" ; then |
236 | # yassl-0.96 is young break with gcc-4.0 || amd64 |
611 | configure_51 |
237 | #myconf="${myconf} --with-yassl" |
|
|
238 | myconf="${myconf} --with-openssl" |
|
|
239 | else |
612 | else |
240 | myconf="${myconf} --with-openssl" |
613 | configure_40_41_50 |
241 | fi |
|
|
242 | else |
|
|
243 | myconf="${myconf} --without-openssl" |
|
|
244 | fi |
|
|
245 | |
|
|
246 | if useq "debug"; then |
|
|
247 | myconf="${myconf} --with-debug=full" |
|
|
248 | else |
|
|
249 | myconf="${myconf} --without-debug" |
|
|
250 | mysql_version_is_at_least "4.01.03.00" \ |
|
|
251 | && useq "cluster" \ |
|
|
252 | && myconf="${myconf} --without-ndb-debug" |
|
|
253 | fi |
|
|
254 | |
|
|
255 | # these are things we exclude from a minimal build |
|
|
256 | # note that the server actually does get built and installed |
|
|
257 | # but we then delete it before packaging. |
|
|
258 | local minimal_exclude_list="server embedded-server extra-tools innodb bench" |
|
|
259 | |
|
|
260 | if ! useq "minimal" ; then |
|
|
261 | myconf="${myconf} --with-server" |
|
|
262 | myconf="${myconf} --with-extra-tools" |
|
|
263 | |
|
|
264 | if useq "static" ; then |
|
|
265 | myconf="${myconf} --without-raid" |
|
|
266 | ewarn "disabling raid support, has problem with static" |
|
|
267 | else |
|
|
268 | if mysql_version_is_at_least "5.00.00.00" ; then |
|
|
269 | myconf="${myconf} --without-raid" |
|
|
270 | else |
|
|
271 | myconf="${myconf} `use_with raid`" |
|
|
272 | fi |
614 | fi |
273 | fi |
615 | fi |
274 | |
616 | |
275 | if ! mysql_version_is_at_least "5.00.00.00" ; then |
|
|
276 | if mysql_version_is_at_least "4.01.00.00" ; then |
|
|
277 | myconf="${myconf} --with-charset=utf8" |
|
|
278 | myconf="${myconf} --with-collation=utf8_general_ci" |
|
|
279 | else |
|
|
280 | myconf="${myconf} --with-charset=latin1" |
|
|
281 | myconf="${myconf} --with-collation=latin1_swedish_ci" |
|
|
282 | fi |
|
|
283 | fi |
|
|
284 | |
|
|
285 | # optional again from 2005-12-05 |
|
|
286 | if mysql_version_is_at_least "5.01.00.00" ; then |
|
|
287 | myconf="${myconf} $(use_with innodb)" |
|
|
288 | else |
|
|
289 | myconf="${myconf} --with-innodb" |
|
|
290 | fi |
|
|
291 | |
|
|
292 | # lots of chars |
|
|
293 | myconf="${myconf} --with-extra-charsets=all" |
|
|
294 | |
|
|
295 | #The following fix is due to a bug with bdb on sparc's. See: |
|
|
296 | #http://www.geocrawler.com/mail/msg.php3?msg_id=4754814&list=8 |
|
|
297 | # it comes down to non-64-bit safety problems |
|
|
298 | if useq "sparc" || useq "alpha" || useq "hppa" || useq "mips" \ |
|
|
299 | || useq "amd64" || mysql_check_version_range "5.01.00.00 to 5.01.06.99" |
|
|
300 | then |
|
|
301 | ewarn "bdb berkeley-db disabled due to arch or version" |
|
|
302 | myconf="${myconf} --without-berkeley-db" |
|
|
303 | else |
|
|
304 | #TODO berkdb in 5.1 need to be worked on |
|
|
305 | useq "berkdb" && \ |
|
|
306 | ! mysql_check_version_range "5.01.00.00 to 5.01.08.99" \ |
|
|
307 | && myconf="${myconf} --with-berkeley-db=./bdb" \ |
|
|
308 | || myconf="${myconf} --without-berkeley-db" |
|
|
309 | fi |
|
|
310 | |
|
|
311 | if mysql_version_is_at_least "4.01.03.00" ; then |
|
|
312 | #myconf="${myconf} $(use_with geometry)" |
|
|
313 | myconf="${myconf} --with-geometry" |
|
|
314 | myconf="${myconf} $(use_with cluster ndbcluster)" |
|
|
315 | fi |
|
|
316 | |
|
|
317 | mysql_version_is_at_least "4.01.11.00" \ |
|
|
318 | && myconf="${myconf} `use_with big-tables`" |
|
|
319 | |
|
|
320 | mysql_version_is_at_least "5.01.06.00" \ |
|
|
321 | && myconf="${myconf} --with-ndb-binlog" |
|
|
322 | |
|
|
323 | if useq "embedded" ; then |
|
|
324 | #REMIND, need the privilege control enabled ? |
|
|
325 | myconf="${myconf} --without-embedded-privilege-control" |
|
|
326 | myconf="${myconf} --with-embedded-server" |
|
|
327 | else |
|
|
328 | myconf="${myconf} --without-embedded-privilege-control" |
|
|
329 | myconf="${myconf} --without-embedded-server" |
|
|
330 | fi |
|
|
331 | |
|
|
332 | # benchmarking stuff needs perl |
|
|
333 | if useq "perl" ; then |
|
|
334 | myconf="${myconf} --with-bench" |
|
|
335 | else |
|
|
336 | myconf="${myconf} --without-bench" |
|
|
337 | fi |
|
|
338 | else |
|
|
339 | for i in ${minimal_exclude_list}; do |
|
|
340 | myconf="${myconf} --without-${i}" |
|
|
341 | done |
|
|
342 | myconf="${myconf} --without-berkeley-db" |
|
|
343 | myconf="${myconf} --with-extra-charsets=none" |
|
|
344 | fi |
|
|
345 | |
|
|
346 | if mysql_version_is_at_least "4.01.03.00" && useq "extraengine"; then |
|
|
347 | # http://dev.mysql.com/doc/mysql/en/archive-storage-engine.html |
|
|
348 | myconf="${myconf} --with-archive-storage-engine" |
|
|
349 | # http://dev.mysql.com/doc/mysql/en/csv-storage-engine.html |
|
|
350 | |
|
|
351 | mysql_version_is_at_least "4.01.04.00" \ |
|
|
352 | && myconf="${myconf} --with-csv-storage-engine" |
|
|
353 | |
|
|
354 | mysql_version_is_at_least "4.01.11.00" \ |
|
|
355 | && myconf="${myconf} --with-blackhole-storage-engine" |
|
|
356 | |
|
|
357 | # http://dev.mysql.com/doc/mysql/en/federated-description.html |
|
|
358 | # http://dev.mysql.com/doc/mysql/en/federated-limitations.html |
|
|
359 | if mysql_version_is_at_least "5.00.03.00" ; then |
|
|
360 | einfo "before to use federated engine be sure to read" |
|
|
361 | einfo "http://dev.mysql.com/doc/refman/5.0/en/federated-limitations.html" |
|
|
362 | myconf="${myconf} --with-federated-storage-engine" |
|
|
363 | |
|
|
364 | # http://dev.mysql.com/doc/refman/5.1/en/partitioning-overview.html |
|
|
365 | if mysql_version_is_at_least "5.01.00.00" ; then |
|
|
366 | myconf="${myconf} --with-partition" |
|
|
367 | fi |
|
|
368 | fi |
|
|
369 | |
|
|
370 | fi |
|
|
371 | |
|
|
372 | mysql_version_is_at_least "5.00.18.00" \ |
|
|
373 | && useq "max-idx-128" \ |
|
|
374 | && myconf="${myconf} --with-max-indexes=128" |
|
|
375 | |
|
|
376 | if mysql_version_is_at_least "5.01.05.00" ; then |
|
|
377 | myconf="${myconf} --with-row-based-replication" |
|
|
378 | fi |
|
|
379 | |
|
|
380 | #TODO rechek again later, had problem with assembler enabled |
|
|
381 | # and some combination of use-flags with 5.1 |
|
|
382 | if mysql_check_version_range "5.01.00.00 to 5.01.08.99" ; then |
|
|
383 | myconf="${myconf} --disable-assembler" |
|
|
384 | else |
|
|
385 | myconf="${myconf} --enable-assembler" |
|
|
386 | fi |
|
|
387 | |
|
|
388 | #Bug #114895,Bug #110149 |
617 | # Bug #114895, bug #110149 |
389 | filter-flags "-O" "-O[01]" |
618 | filter-flags "-O" "-O[01]" |
|
|
619 | |
390 | #glibc-2.3.2_pre fix; bug #16496 |
620 | # glib-2.3.2_pre fix, bug #16496 |
391 | append-flags "-DHAVE_ERRNO_AS_DEFINE=1" |
621 | append-flags "-DHAVE_ERRNO_AS_DEFINE=1" |
392 | |
622 | |
393 | #the compiler flags are as per their "official" spec ;) |
623 | CXXFLAGS="${CXXFLAGS} -fno-exceptions -fno-strict-aliasing" |
394 | #CFLAGS="${CFLAGS/-O?/} -O3" \ |
|
|
395 | export CXXFLAGS="${CXXFLAGS} -felide-constructors -fno-exceptions -fno-rtti" |
624 | CXXFLAGS="${CXXFLAGS} -felide-constructors -fno-rtti" |
396 | mysql_version_is_at_least "5.00.00.00" \ |
625 | mysql_version_is_at_least "5.0" \ |
397 | && export CXXFLAGS="${CXXFLAGS} -fno-implicit-templates" |
626 | && CXXFLAGS="${CXXFLAGS} -fno-implicit-templates" |
|
|
627 | export CXXFLAGS |
398 | |
628 | |
399 | econf \ |
629 | econf \ |
400 | --libexecdir="/usr/sbin" \ |
630 | --libexecdir="/usr/sbin" \ |
401 | --sysconfdir="${MY_SYSCONFDIR}" \ |
631 | --sysconfdir="${MY_SYSCONFDIR}" \ |
402 | --localstatedir="${MY_LOCALSTATEDIR}" \ |
632 | --localstatedir="${MY_LOCALSTATEDIR}" \ |
403 | --sharedstatedir="${MY_SHAREDSTATEDIR}" \ |
633 | --sharedstatedir="${MY_SHAREDSTATEDIR}" \ |
404 | --libdir="${MY_LIBDIR}" \ |
634 | --libdir="${MY_LIBDIR}" \ |
405 | --includedir="${MY_INCLUDEDIR}" \ |
635 | --includedir="${MY_INCLUDEDIR}" \ |
406 | --with-low-memory \ |
636 | --with-low-memory \ |
407 | --enable-local-infile \ |
|
|
408 | --with-mysqld-user=mysql \ |
|
|
409 | --with-client-ldflags=-lstdc++ \ |
637 | --with-client-ldflags=-lstdc++ \ |
410 | --enable-thread-safe-client \ |
638 | --enable-thread-safe-client \ |
411 | --with-comment="Gentoo Linux ${PF}" \ |
639 | --with-comment="Gentoo Linux ${PF}" \ |
412 | --with-unix-socket-path="/var/run/mysqld/mysqld.sock" \ |
|
|
413 | --without-readline \ |
|
|
414 | --without-docs \ |
640 | --without-docs \ |
415 | ${myconf} || die "bad ./configure" |
641 | ${myconf} || die "econf failed" |
416 | |
642 | |
417 | # TODO Move this before autoreconf !!! |
643 | # TODO: Move this before autoreconf !!! |
418 | find . -type f -name Makefile -print0 \ |
644 | find . -type f -name Makefile -print0 \ |
419 | | xargs -0 -n100 sed -i \ |
645 | | xargs -0 -n100 sed -i \ |
420 | -e 's|^pkglibdir *= *$(libdir)/mysql|pkglibdir = $(libdir)|;s|^pkgincludedir *= *$(includedir)/mysql|pkgincludedir = $(includedir)|' |
646 | -e 's|^pkglibdir *= *$(libdir)/mysql|pkglibdir = $(libdir)|;s|^pkgincludedir *= *$(includedir)/mysql|pkgincludedir = $(includedir)|' |
421 | |
647 | |
422 | emake || die "compile problem" |
648 | emake || die "emake failed" |
|
|
649 | |
|
|
650 | mysql_version_is_at_least "5.1.12" && use pbxt && pbxt_src_compile |
423 | } |
651 | } |
424 | |
652 | |
425 | mysql_src_install() { |
653 | mysql_src_install() { |
426 | |
654 | # Make sure the vars are correctly initialized |
427 | mysql_init_vars |
655 | mysql_init_vars |
|
|
656 | |
428 | make install DESTDIR="${D}" benchdir_root="${MY_SHAREDSTATEDIR}" || die |
657 | emake install DESTDIR="${D}" benchdir_root="${MY_SHAREDSTATEDIR}" || die "emake install failed" |
|
|
658 | |
|
|
659 | mysql_version_is_at_least "5.1.12" && use pbxt && pbxt_src_install |
429 | |
660 | |
430 | insinto "${MY_INCLUDEDIR}" |
661 | insinto "${MY_INCLUDEDIR}" |
431 | doins "${MY_INCLUDEDIR}"/my_{config,dir}.h |
662 | doins "${MY_INCLUDEDIR}"/my_{config,dir}.h |
432 | |
663 | |
433 | # convenience links |
664 | # Convenience links |
434 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlanalyze" |
665 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlanalyze" |
435 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlrepair" |
666 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlrepair" |
436 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqloptimize" |
667 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqloptimize" |
437 | |
668 | |
438 | # various junk (my-*.cnf moved elsewhere) |
669 | # Various junk (my-*.cnf moved elsewhere) |
439 | rm -rf "${D}/usr/share/info" |
670 | rm -Rf "${D}/usr/share/info" |
440 | for removeme in "mysql-log-rotate" mysql.server* \ |
671 | for removeme in "mysql-log-rotate" mysql.server* \ |
441 | binary-configure* my-*.cnf mi_test_all* |
672 | binary-configure* my-*.cnf mi_test_all* |
442 | do |
673 | do |
443 | rm -f ${D}/usr/share/mysql/${removeme} |
674 | rm -f "${D}"/usr/share/mysql/${removeme} |
444 | done |
675 | done |
445 | |
676 | |
446 | # clean up stuff for a minimal build |
677 | # Clean up stuff for a minimal build |
447 | # this is anything server-specific |
|
|
448 | if useq "minimal" ; then |
678 | if use minimal ; then |
449 | rm -rf ${D}${MY_SHAREDSTATEDIR}/{mysql-test,sql-bench} |
679 | rm -Rf "${D}${MY_SHAREDSTATEDIR}"/{mysql-test,sql-bench} |
450 | 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} |
680 | 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} |
451 | rm -f "${D}/usr/sbin/mysqld" |
681 | rm -f "${D}/usr/sbin/mysqld" |
452 | rm -f ${D}${MY_LIBDIR}/lib{heap,merge,nisam,my{sys,strings,sqld,isammrg,isam},vio,dbug}.a |
682 | rm -f "${D}${MY_LIBDIR}"/lib{heap,merge,nisam,my{sys,strings,sqld,isammrg,isam},vio,dbug}.a |
453 | fi |
683 | fi |
454 | |
684 | |
455 | # config stuff |
685 | # Configuration stuff |
|
|
686 | if mysql_version_is_at_least "4.1" ; then |
|
|
687 | mysql_mycnf_version="4.1" |
|
|
688 | else |
|
|
689 | mysql_mycnf_version="4.0" |
|
|
690 | fi |
456 | insinto "${MY_SYSCONFDIR}" |
691 | insinto "${MY_SYSCONFDIR}" |
457 | doins scripts/mysqlaccess.conf |
692 | doins scripts/mysqlaccess.conf |
458 | sed -e "s!@MY_SUFFIX@!!g" \ |
|
|
459 | -e "s!@DATADIR@!${DATADIR}!g" \ |
693 | sed -e "s!@DATADIR@!${MY_DATADIR}!g" \ |
460 | "${FILESDIR}/my.cnf-4.1-r1" \ |
694 | "${FILESDIR}/my.cnf-${mysql_mycnf_version}" \ |
461 | > "${TMPDIR}/my.cnf.ok" |
695 | > "${TMPDIR}/my.cnf.ok" |
|
|
696 | if mysql_version_is_at_least "4.1" && use latin1 ; then |
|
|
697 | sed -e "s|utf8|latin1|g" -i "${TMPDIR}/my.cnf.ok" |
|
|
698 | fi |
462 | newins "${TMPDIR}/my.cnf.ok" my.cnf |
699 | newins "${TMPDIR}/my.cnf.ok" my.cnf |
463 | |
700 | |
464 | insinto "/etc/conf.d" |
|
|
465 | newins "${FILESDIR}/mysql.conf.d-r1" "mysql" |
|
|
466 | mysql_version_is_at_least "5.00.11.00" \ |
|
|
467 | && newins "${FILESDIR}/mysqlmanager.conf.d" "mysqlmanager" |
|
|
468 | |
|
|
469 | # minimal builds don't have the server |
701 | # Minimal builds don't have the MySQL server |
470 | if ! useq "minimal" ; then |
702 | if ! use minimal ; then |
471 | exeinto /etc/init.d |
703 | # Empty directories ... |
472 | newexe "${FILESDIR}/mysql.rc6-r3" "mysql" |
|
|
473 | |
|
|
474 | mysql_version_is_at_least "5.00.11.00" \ |
|
|
475 | && newexe "${FILESDIR}/mysqlmanager.rc6" "mysqlmanager" |
|
|
476 | insinto /etc/logrotate.d |
|
|
477 | newins "${FILESDIR}/logrotate.mysql" "mysql" |
|
|
478 | |
|
|
479 | #empty dirs... |
|
|
480 | diropts "-m0750" |
704 | diropts "-m0750" |
481 | if [[ "${PREVIOUS_DATADIR}" != "yes" ]] ; then |
705 | if [[ "${PREVIOUS_DATADIR}" != "yes" ]] ; then |
482 | dodir "${DATADIR}" |
706 | dodir "${MY_DATADIR}" |
483 | keepdir "${DATADIR}" |
707 | keepdir "${MY_DATADIR}" |
484 | chown -R mysql:mysql "${D}/${DATADIR}" |
708 | chown -R mysql:mysql "${D}/${MY_DATADIR}" |
485 | fi |
709 | fi |
486 | |
710 | |
487 | diropts "-m0755" |
711 | diropts "-m0755" |
488 | for folder in "${MY_LOGDIR}" "/var/run/mysqld" ; do |
712 | for folder in "${MY_LOGDIR}" "/var/run/mysqld" ; do |
489 | dodir "${folder}" |
713 | dodir "${folder}" |
490 | keepdir "${folder}" |
714 | keepdir "${folder}" |
491 | chown -R mysql:mysql "${D}/${folder}" |
715 | chown -R mysql:mysql "${D}/${folder}" |
492 | done |
716 | done |
493 | fi |
717 | fi |
494 | |
718 | |
495 | # docs |
719 | # Docs |
496 | dodoc README COPYING ChangeLog EXCEPTIONS-CLIENT INSTALL-SOURCE |
720 | dodoc README COPYING ChangeLog EXCEPTIONS-CLIENT INSTALL-SOURCE |
|
|
721 | doinfo "${S}"/Docs/mysql.info |
|
|
722 | |
497 | # minimal builds don't have the server |
723 | # Minimal builds don't have the MySQL server |
498 | if ! useq "minimal" ; then |
724 | if ! use minimal ; then |
|
|
725 | docinto "support-files" |
|
|
726 | for script in \ |
|
|
727 | "${S}"/support-files/my-*.cnf \ |
|
|
728 | "${S}"/support-files/magic \ |
|
|
729 | "${S}"/support-files/ndb-config-2-node.ini |
|
|
730 | do |
|
|
731 | dodoc "${script}" |
|
|
732 | done |
|
|
733 | |
|
|
734 | docinto "scripts" |
|
|
735 | for script in "${S}"/scripts/mysql* ; do |
|
|
736 | [[ "${script%.sh}" == "${script}" ]] && dodoc "${script}" |
|
|
737 | done |
|
|
738 | |
|
|
739 | fi |
|
|
740 | |
|
|
741 | mysql_lib_symlinks "${D}" |
|
|
742 | } |
|
|
743 | |
|
|
744 | mysql_pkg_preinst() { |
|
|
745 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
|
|
746 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
|
|
747 | } |
|
|
748 | |
|
|
749 | mysql_pkg_postinst() { |
|
|
750 | # Make sure the vars are correctly initialized |
|
|
751 | mysql_init_vars |
|
|
752 | |
|
|
753 | # Check FEATURES="collision-protect" before removing this |
|
|
754 | [[ -d "${ROOT}/var/log/mysql" ]] || install -d -m0750 -o mysql -g mysql "${ROOT}${MY_LOGDIR}" |
|
|
755 | |
|
|
756 | # Secure the logfiles |
|
|
757 | touch "${ROOT}${MY_LOGDIR}"/mysql.{log,err} |
|
|
758 | chown mysql:mysql "${ROOT}${MY_LOGDIR}"/mysql* |
|
|
759 | chmod 0660 "${ROOT}${MY_LOGDIR}"/mysql* |
|
|
760 | |
|
|
761 | # Minimal builds don't have the MySQL server |
|
|
762 | if ! use minimal ; then |
499 | docinto "support-files" |
763 | docinto "support-files" |
500 | for script in \ |
764 | for script in \ |
501 | support-files/my-*.cnf \ |
765 | support-files/my-*.cnf \ |
502 | support-files/magic \ |
766 | support-files/magic \ |
503 | support-files/ndb-config-2-node.ini |
767 | support-files/ndb-config-2-node.ini |
… | |
… | |
507 | |
771 | |
508 | docinto "scripts" |
772 | docinto "scripts" |
509 | for script in scripts/mysql* ; do |
773 | for script in scripts/mysql* ; do |
510 | [[ "${script%.sh}" == "${script}" ]] && dodoc "${script}" |
774 | [[ "${script%.sh}" == "${script}" ]] && dodoc "${script}" |
511 | done |
775 | done |
512 | fi |
|
|
513 | |
776 | |
514 | ROOT="${D}" mysql_lib_symlinks |
777 | einfo |
515 | } |
778 | elog "You might want to run:" |
|
|
779 | elog "\"emerge --config =${CATEGORY}/${PF}\"" |
|
|
780 | elog "if this is a new install." |
|
|
781 | einfo |
|
|
782 | fi |
516 | |
783 | |
517 | mysql_pkg_preinst() { |
784 | if mysql_version_is_at_least "5.1.12" && use pbxt ; then |
|
|
785 | # TODO: explain it better |
|
|
786 | elog " mysql> INSTALL PLUGIN pbxt SONAME 'libpbxt.so';" |
|
|
787 | elog " mysql> CREATE TABLE t1 (c1 int, c2 text) ENGINE=pbxt;" |
|
|
788 | elog "if, after that, you cannot start the MySQL server," |
|
|
789 | elog "remove the ${MY_DATADIR}/mysql/plugin.* files, then" |
|
|
790 | elog "use the MySQL upgrade script to restore the table" |
|
|
791 | elog "or execute the following SQL command:" |
|
|
792 | elog " CREATE TABLE IF NOT EXISTS plugin (" |
|
|
793 | elog " name char(64) binary DEFAULT '' NOT NULL," |
|
|
794 | elog " dl char(128) DEFAULT '' NOT NULL," |
|
|
795 | elog " PRIMARY KEY (name)" |
|
|
796 | elog " ) CHARACTER SET utf8 COLLATE utf8_bin;" |
|
|
797 | fi |
518 | |
798 | |
519 | enewgroup mysql 60 || die "problem adding group mysql" |
799 | mysql_check_version_range "4.0 to 5.0.99.99" \ |
520 | enewuser mysql 60 -1 /dev/null mysql \ |
800 | && use berkdb \ |
521 | || die "problem adding user mysql" |
801 | && elog "Berkeley DB support is deprecated and will be removed in future versions!" |
522 | } |
802 | } |
523 | |
803 | |
524 | mysql_pkg_postinst() { |
804 | mysql_pkg_config() { |
525 | |
805 | # Make sure the vars are correctly initialized |
526 | mysql_init_vars |
806 | mysql_init_vars |
527 | |
807 | |
528 | # mind at FEATURES=collision-protect before to remove this |
|
|
529 | [ -d "${ROOT}/var/log/mysql" ] \ |
|
|
530 | || install -d -m0750 -o mysql -g mysql "${ROOT}${MY_LOGDIR}" |
|
|
531 | |
|
|
532 | #secure the logfiles... does this bother anybody? |
|
|
533 | touch "${ROOT}${MY_LOGDIR}"/mysql.{log,err} |
|
|
534 | chown mysql:mysql "${ROOT}${MY_LOGDIR}"/mysql* |
|
|
535 | chmod 0660 "${ROOT}${MY_LOGDIR}"/mysql* |
|
|
536 | |
|
|
537 | if ! useq "minimal" ; then |
|
|
538 | # your friendly public service announcement... |
|
|
539 | einfo |
|
|
540 | einfo "You might want to run:" |
|
|
541 | einfo "\"emerge --config =${CATEGORY}/${PF}\"" |
|
|
542 | einfo "if this is a new install." |
|
|
543 | einfo |
|
|
544 | mysql_version_is_at_least "5.01.00.00" \ |
|
|
545 | || einfo "InnoDB is not optional as of MySQL-4.0.24, at the request of upstream." |
|
|
546 | fi |
|
|
547 | } |
|
|
548 | |
|
|
549 | mysql_pkg_config() { |
|
|
550 | mysql_init_vars |
|
|
551 | [[ -z "${DATADIR}" ]] && die "sorry, unable to find DATADIR" |
808 | [[ -z "${MY_DATADIR}" ]] && die "Sorry, unable to find MY_DATADIR" |
552 | |
809 | |
553 | if built_with_use dev-db/mysql minimal; then |
810 | if built_with_use ${CATEGORY}/${PN} minimal ; then |
554 | die "Minimal builds do NOT include the MySQL server" |
811 | die "Minimal builds do NOT include the MySQL server" |
555 | fi |
812 | fi |
556 | |
813 | |
557 | local pwd1="a" |
814 | local pwd1="a" |
558 | local pwd2="b" |
815 | local pwd2="b" |
559 | local maxtry=5 |
816 | local maxtry=5 |
560 | |
817 | |
561 | if [[ -d "${ROOT}/${DATADIR}/mysql" ]] ; then |
818 | if [[ -d "${ROOT}/${MY_DATADIR}/mysql" ]] ; then |
562 | ewarn "You have already a MySQL database in place." |
819 | ewarn "You have already a MySQL database in place." |
563 | ewarn "(${ROOT}/${DATADIR}/*)" |
820 | ewarn "(${ROOT}/${MY_DATADIR}/*)" |
564 | ewarn "Please rename or delete it if you wish to replace it." |
821 | ewarn "Please rename or delete it if you wish to replace it." |
565 | die "MySQL database already exists!" |
822 | die "MySQL database already exists!" |
566 | fi |
823 | fi |
567 | |
824 | |
568 | einfo "Creating the mysql database and setting proper" |
825 | einfo "Creating the mysql database and setting proper" |
569 | einfo "permissions on it..." |
826 | einfo "permissions on it ..." |
570 | |
827 | |
571 | einfo "Insert a password for the mysql 'root' user" |
828 | einfo "Insert a password for the mysql 'root' user" |
572 | ewarn "Avoid [\"'\\_%] characters in the password" |
829 | ewarn "Avoid [\"'\\_%] characters in the password" |
573 | |
|
|
574 | read -rsp " >" pwd1 ; echo |
830 | read -rsp " >" pwd1 ; echo |
|
|
831 | |
575 | einfo "Check the password" |
832 | einfo "Retype the password" |
576 | read -rsp " >" pwd2 ; echo |
833 | read -rsp " >" pwd2 ; echo |
577 | |
834 | |
578 | if [[ "x$pwd1" != "x$pwd2" ]] ; then |
835 | if [[ "x$pwd1" != "x$pwd2" ]] ; then |
579 | die "Passwords are not the same" |
836 | die "Passwords are not the same" |
580 | fi |
837 | fi |
581 | |
838 | |
582 | local options="" |
839 | local options="" |
583 | local sqltmp="$(emktemp)" |
840 | local sqltmp="$(emktemp)" |
584 | |
841 | |
585 | local help_tables="${MY_SHAREDSTATEDIR}/fill_help_tables.sql" |
842 | local help_tables="${ROOT}${MY_SHAREDSTATEDIR}/fill_help_tables.sql" |
586 | [[ -r "${help_tables}" ]] \ |
843 | [[ -r "${help_tables}" ]] \ |
587 | && cp "${help_tables}" "${TMPDIR}/fill_help_tables.sql" \ |
844 | && cp "${help_tables}" "${TMPDIR}/fill_help_tables.sql" \ |
588 | || touch "${TMPDIR}/fill_help_tables.sql" |
845 | || touch "${TMPDIR}/fill_help_tables.sql" |
589 | help_tables="${TMPDIR}/fill_help_tables.sql" |
846 | help_tables="${TMPDIR}/fill_help_tables.sql" |
590 | |
847 | |
591 | pushd "${TMPDIR}" &>/dev/null |
848 | pushd "${TMPDIR}" &>/dev/null |
592 | ${ROOT}/usr/bin/mysql_install_db | grep -B5 -A999 -i "ERROR" |
849 | "${ROOT}/usr/bin/mysql_install_db" >"${TMPDIR}"/mysql_install_db.log 2>&1 |
|
|
850 | if [ $? -ne 0 ]; then |
|
|
851 | grep -B5 -A999 -i "ERROR" "${TMPDIR}"/mysql_install_db.log 1>&2 |
|
|
852 | die "Failed to run mysql_install_db. Please review /var/log/mysql/mysqld.err AND ${TMPDIR}/mysql_install_db.log" |
|
|
853 | fi |
593 | popd &>/dev/null |
854 | popd &>/dev/null |
594 | [[ -f ${ROOT}/${DATADIR}/mysql/user.frm ]] \ |
855 | [[ -f "${ROOT}/${MY_DATADIR}/mysql/user.frm" ]] \ |
595 | || die "MySQL databases not installed" |
856 | || die "MySQL databases not installed" |
596 | chown -R mysql:mysql ${ROOT}/${DATADIR} 2> /dev/null |
857 | chown -R mysql:mysql "${ROOT}/${MY_DATADIR}" 2>/dev/null |
597 | chmod 0750 ${ROOT}/${DATADIR} 2> /dev/null |
858 | chmod 0750 "${ROOT}/${MY_DATADIR}" 2>/dev/null |
598 | |
859 | |
599 | if mysql_version_is_at_least "4.01.03.00" ; then |
860 | if mysql_version_is_at_least "4.1.3" ; then |
600 | options="--skip-ndbcluster" |
861 | options="--skip-ndbcluster" |
601 | |
862 | |
602 | # Filling timezones, see |
863 | # Filling timezones, see |
603 | # http://dev.mysql.com/doc/mysql/en/time-zone-support.html |
864 | # http://dev.mysql.com/doc/mysql/en/time-zone-support.html |
604 | ${ROOT}/usr/bin/mysql_tzinfo_to_sql ${ROOT}/usr/share/zoneinfo \ |
865 | "${ROOT}/usr/bin/mysql_tzinfo_to_sql" "${ROOT}/usr/share/zoneinfo" > "${sqltmp}" 2>/dev/null |
605 | > "${sqltmp}" 2>/dev/null |
|
|
606 | |
866 | |
607 | if [[ -r "${help_tables}" ]] ; then |
867 | if [[ -r "${help_tables}" ]] ; then |
608 | cat "${help_tables}" >> "${sqltmp}" |
868 | cat "${help_tables}" >> "${sqltmp}" |
609 | fi |
869 | fi |
610 | fi |
870 | fi |
611 | |
871 | |
612 | local socket=${ROOT}/var/run/mysqld/mysqld${RANDOM}.sock |
872 | local socket="${ROOT}/var/run/mysqld/mysqld${RANDOM}.sock" |
613 | local pidfile=${ROOT}/var/run/mysqld/mysqld${RANDOM}.pid |
873 | local pidfile="${ROOT}/var/run/mysqld/mysqld${RANDOM}.pid" |
614 | local mysqld="${ROOT}/usr/sbin/mysqld \ |
874 | local mysqld="${ROOT}/usr/sbin/mysqld \ |
615 | ${options} \ |
875 | ${options} \ |
616 | --user=mysql \ |
876 | --user=mysql \ |
617 | --skip-grant-tables \ |
877 | --skip-grant-tables \ |
618 | --basedir=${ROOT}/usr \ |
878 | --basedir=${ROOT}/usr \ |
619 | --datadir=${ROOT}/${DATADIR} \ |
879 | --datadir=${ROOT}/${MY_DATADIR} \ |
620 | --skip-innodb \ |
880 | --skip-innodb \ |
621 | --skip-bdb \ |
881 | --skip-bdb \ |
622 | --skip-networking \ |
882 | --skip-networking \ |
623 | --max_allowed_packet=8M \ |
883 | --max_allowed_packet=8M \ |
624 | --net_buffer_length=16K \ |
884 | --net_buffer_length=16K \ |
625 | --socket=${socket} \ |
885 | --socket=${socket} \ |
626 | --pid-file=${pidfile}" |
886 | --pid-file=${pidfile}" |
627 | $mysqld & |
887 | ${mysqld} & |
628 | while ! [[ -S "${socket}" || "${maxtry}" -lt 1 ]] ; do |
888 | while ! [[ -S "${socket}" || "${maxtry}" -lt 1 ]] ; do |
629 | maxtry=$(($maxtry-1)) |
889 | maxtry=$((${maxtry}-1)) |
630 | echo -n "." |
890 | echo -n "." |
631 | sleep 1 |
891 | sleep 1 |
632 | done |
892 | done |
633 | |
893 | |
634 | # do this from memory we don't want clear text password in temp files |
894 | # Do this from memory, as we don't want clear text passwords in temp files |
635 | local sql="UPDATE mysql.user SET Password = PASSWORD('${pwd1}') WHERE USER='root'" |
895 | local sql="UPDATE mysql.user SET Password = PASSWORD('${pwd1}') WHERE USER='root'" |
636 | ${ROOT}/usr/bin/mysql \ |
896 | "${ROOT}/usr/bin/mysql" \ |
637 | --socket=${socket} \ |
897 | --socket=${socket} \ |
638 | -hlocalhost \ |
898 | -hlocalhost \ |
639 | -e "${sql}" |
899 | -e "${sql}" |
640 | |
900 | |
641 | einfo "Loading \"zoneinfo\" this step may require few seconds" |
901 | einfo "Loading \"zoneinfo\", this step may require a few seconds ..." |
642 | |
902 | |
643 | ${ROOT}/usr/bin/mysql \ |
903 | "${ROOT}/usr/bin/mysql" \ |
644 | --socket=${socket} \ |
904 | --socket=${socket} \ |
645 | -hlocalhost \ |
905 | -hlocalhost \ |
646 | -uroot \ |
906 | -uroot \ |
647 | -p"${pwd1}" \ |
907 | -p"${pwd1}" \ |
648 | mysql < "${sqltmp}" |
908 | mysql < "${sqltmp}" |
649 | |
909 | |
650 | # server stop and cleanup |
910 | # Stop the server and cleanup |
651 | kill $(< "${pidfile}" ) |
911 | kill $(< "${pidfile}" ) |
652 | rm "${sqltmp}" |
912 | rm -f "${sqltmp}" |
653 | einfo "stopping the server," |
913 | einfo "Stopping the server ..." |
654 | wait %1 |
914 | wait %1 |
655 | einfo "done" |
915 | einfo "Done" |
656 | } |
916 | } |
657 | |
917 | |
658 | mysql_pkg_postrm() { |
918 | mysql_pkg_postrm() { |
659 | mysql_lib_symlinks |
919 | : # mysql_lib_symlinks "${D}" |
660 | } |
920 | } |