1 | # Copyright 1999-2006 Gentoo Foundation |
1 | # Copyright 1999-2006 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.38 2006/10/20 13:14:21 chtekk Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/Attic/mysql.eclass,v 1.66 2007/01/08 20:38:58 vivo 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; |
4 | |
7 | |
5 | # Author: Francesco Riosa <vivo@gentoo.org> |
8 | # Author: Francesco Riosa (Retired) <vivo@gentoo.org> |
6 | # Maintainer: Luca Longinotti <chtekk@gentoo.org> |
9 | # Maintainer: Luca Longinotti <chtekk@gentoo.org> |
7 | |
10 | |
8 | # Both MYSQL_VERSION_ID and MYSQL_PATCHSET_REV must be set in the ebuild too |
|
|
9 | # Note that MYSQL_VERSION_ID must be empty !!! |
11 | # Note that MYSQL_VERSION_ID must be empty !!! |
|
|
12 | |
|
|
13 | ECLASS="mysql" |
|
|
14 | INHERITED="$INHERITED $ECLASS" |
|
|
15 | WANT_AUTOCONF="latest" |
|
|
16 | WANT_AUTOMAKE="latest" |
|
|
17 | inherit eutils flag-o-matic gnuconfig autotools mysql_fx |
|
|
18 | |
|
|
19 | # 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 |
|
|
21 | S="${WORKDIR}/mysql" |
|
|
22 | |
|
|
23 | [[ "${MY_EXTRAS_VER}" == "latest" ]] && MY_EXTRAS_VER="20070108" |
|
|
24 | |
|
|
25 | if [[ ${PR#r} -lt 60 ]] ; then |
|
|
26 | IS_BITKEEPER=0 |
|
|
27 | elif [[ ${PR#r} -lt 90 ]] ; then |
|
|
28 | IS_BITKEEPER=60 |
|
|
29 | else |
|
|
30 | IS_BITKEEPER=90 |
|
|
31 | fi |
10 | |
32 | |
11 | # MYSQL_VERSION_ID will be: |
33 | # MYSQL_VERSION_ID will be: |
12 | # major * 10e6 + minor * 10e4 + micro * 10e2 + gentoo revision number, all [0..99] |
34 | # major * 10e6 + minor * 10e4 + micro * 10e2 + gentoo revision number, all [0..99] |
13 | # This is an important part, because many of the choices the MySQL ebuild will do |
35 | # This is an important part, because many of the choices the MySQL ebuild will do |
14 | # depend on this variable. |
36 | # depend on this variable. |
15 | # In particular, the code below transforms a $PVR like "5.0.18-r3" in "5001803" |
37 | # In particular, the code below transforms a $PVR like "5.0.18-r3" in "5001803" |
16 | |
38 | MYSQL_VERSION_ID="" |
17 | if [[ -z "${MYSQL_VERSION_ID}" ]] ; then |
|
|
18 | tpv=( ${PV//[-._]/ } ) ; tpv[3]="${PVR:${#PV}}" ; tpv[3]="${tpv[3]##*-r}" |
39 | tpv=( ${PV//[-._]/ } ) ; tpv[3]="${PVR:${#PV}}" ; tpv[3]="${tpv[3]##*-r}" |
19 | for vatom in 0 1 2 3 ; do |
40 | for vatom in 0 1 2 3 ; do |
20 | # pad to length 2 |
41 | # pad to length 2 |
21 | tpv[${vatom}]="00${tpv[${vatom}]}" |
42 | tpv[${vatom}]="00${tpv[${vatom}]}" |
22 | MYSQL_VERSION_ID="${MYSQL_VERSION_ID}${tpv[${vatom}]:0-2}" |
43 | MYSQL_VERSION_ID="${MYSQL_VERSION_ID}${tpv[${vatom}]:0-2}" |
23 | done |
44 | done |
24 | # strip leading "0" (otherwise it's considered an octal number by BASH) |
45 | # strip leading "0" (otherwise it's considered an octal number by BASH) |
25 | MYSQL_VERSION_ID=${MYSQL_VERSION_ID##"0"} |
46 | MYSQL_VERSION_ID=${MYSQL_VERSION_ID##"0"} |
26 | fi |
|
|
27 | |
47 | |
28 | DEPEND="${DEPEND} |
48 | # Be warned, *DEPEND are version-dependant |
|
|
49 | DEPEND="ssl? ( >=dev-libs/openssl-0.9.6d ) |
|
|
50 | userland_GNU? ( sys-process/procps ) |
|
|
51 | >=sys-apps/sed-4 |
|
|
52 | >=sys-apps/texinfo-4.7-r1 |
29 | >=sys-libs/readline-4.1 |
53 | >=sys-libs/readline-4.1 |
30 | berkdb? ( sys-apps/ed ) |
|
|
31 | ssl? ( >=dev-libs/openssl-0.9.6d ) |
|
|
32 | userland_GNU? ( sys-process/procps ) |
|
|
33 | >=sys-libs/zlib-1.2.3 |
54 | >=sys-libs/zlib-1.2.3 |
34 | >=sys-apps/texinfo-4.7-r1 |
55 | " |
35 | >=sys-apps/sed-4" |
|
|
36 | |
56 | |
37 | RDEPEND="${DEPEND} selinux? ( sec-policy/selinux-mysql )" |
57 | # having different flavours at the same time is not a good idea |
|
|
58 | for i in "" "-community" "-slotted" ; do |
|
|
59 | [[ "${i}" == ${PN#mysql} ]] || |
|
|
60 | DEPEND="${DEPEND} !dev-db/mysql${i}" |
|
|
61 | done |
|
|
62 | |
|
|
63 | mysql_version_is_at_least "5.1" \ |
|
|
64 | || DEPEND="${DEPEND} berkdb? ( sys-apps/ed )" |
38 | |
65 | |
39 | # dev-perl/DBD-mysql is needed by some scripts installed by MySQL |
66 | # dev-perl/DBD-mysql is needed by some scripts installed by MySQL |
40 | PDEPEND="perl? ( >=dev-perl/DBD-mysql-2.9004 )" |
67 | PDEPEND="perl? ( >=dev-perl/DBD-mysql-2.9004 )" |
41 | |
68 | |
42 | inherit eutils flag-o-matic gnuconfig autotools mysql_fx |
69 | if mysql_version_is_at_least "5.1.12" ; then |
|
|
70 | DEPEND="${DEPEND} innodb? ( >=dev-util/cmake-2.4.3 )" |
|
|
71 | fi |
43 | |
72 | |
44 | # Shorten the path because the socket path length must be shorter than 107 chars |
73 | # BitKeeper dependency, compile-time only |
45 | # and we will run a mysql server during test phase |
74 | [[ ${IS_BITKEEPER} -eq 90 ]] && DEPEND="${DEPEND} dev-util/bk_client" |
46 | S="${WORKDIR}/${PN}" |
|
|
47 | |
75 | |
48 | # Define $MY_FIXED_PV for MySQL patchsets |
76 | if [[ ${PN} == "mysql-slotted" ]] ; then |
49 | MY_FIXED_PV="${PV/_alpha/}" |
77 | DEPEND="${DEPEND} app-admin/eselect-mysql" |
50 | #MY_FIXED_PV="${MY_FIXED_PV/_beta/}" |
78 | fi |
51 | #MY_FIXED_PV="${MY_FIXED_PV/_rc/}" |
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 |
52 | |
91 | |
53 | # Define correct SRC_URIs |
92 | # Define correct SRC_URIs |
54 | SRC_URI="mirror://mysql/Downloads/MySQL-${PV%.*}/${P/_/-}${MYSQL_RERELEASE}.tar.gz" |
93 | SRC_URI=" |
55 | if [[ -n "${MYSQL_PATCHSET_REV}" ]] ; then |
94 | ${SERVER_URI} |
56 | MYSQL_PATCHSET_FILENAME="${PN}-patchset-${MY_FIXED_PV}-r${MYSQL_PATCHSET_REV}.tar.bz2" |
95 | http://g3nt8.org/patches/mysql-extras-${MY_EXTRAS_VER}.tar.bz2 |
57 | # We add the Gentoo mirror here, as we only use primaryuri for the MySQL tarball |
96 | " |
58 | SRC_URI="${SRC_URI} http://gentoo.longitekk.com/${MYSQL_PATCHSET_FILENAME}" |
97 | mysql_version_is_at_least "5.1.12" \ |
59 | fi |
98 | && [[ -n "${PBXT_VERSION}" ]] \ |
|
|
99 | && SRC_URI="${SRC_URI} pbxt? ( mirror://sourceforge/pbxt/pbxt-${PBXT_VERSION}.tar.gz )" |
60 | |
100 | |
61 | DESCRIPTION="A fast, multi-threaded, multi-user SQL database server." |
101 | DESCRIPTION="A fast, multi-threaded, multi-user SQL database server." |
62 | HOMEPAGE="http://www.mysql.com/" |
102 | HOMEPAGE="http://www.mysql.com/" |
63 | SLOT="0" |
|
|
64 | LICENSE="GPL-2" |
103 | LICENSE="GPL-2" |
65 | IUSE="big-tables berkdb debug embedded minimal perl selinux srvdir ssl static" |
104 | IUSE="big-tables debug embedded minimal perl selinux ssl static" |
66 | RESTRICT="confcache" |
105 | RESTRICT="confcache" |
67 | |
106 | |
68 | mysql_version_is_at_least "4.01.00.00" \ |
107 | mysql_version_is_at_least "4.1" \ |
69 | && IUSE="${IUSE} latin1" |
108 | && IUSE="${IUSE} latin1" |
70 | |
109 | |
71 | mysql_version_is_at_least "4.01.03.00" \ |
110 | mysql_version_is_at_least "4.1.3" \ |
72 | && IUSE="${IUSE} cluster extraengine" |
111 | && IUSE="${IUSE} cluster extraengine" |
73 | |
112 | |
74 | mysql_version_is_at_least "5.00.00.00" \ |
113 | mysql_version_is_at_least "5.0" \ |
75 | || IUSE="${IUSE} raid" |
114 | || IUSE="${IUSE} raid" |
76 | |
115 | |
77 | mysql_version_is_at_least "5.00.18.00" \ |
116 | mysql_version_is_at_least "5.0.18" \ |
78 | && IUSE="${IUSE} max-idx-128" |
117 | && IUSE="${IUSE} max-idx-128" |
79 | |
118 | |
80 | mysql_version_is_at_least "5.01.00.00" \ |
119 | mysql_version_is_at_least "5.1" \ |
81 | && IUSE="${IUSE} innodb" |
120 | && IUSE="${IUSE} innodb" |
|
|
121 | |
|
|
122 | mysql_version_is_at_least "5.1" \ |
|
|
123 | || IUSE="${IUSE} berkdb" |
|
|
124 | |
|
|
125 | mysql_version_is_at_least "5.1.12" \ |
|
|
126 | && IUSE="${IUSE} pbxt" |
|
|
127 | |
|
|
128 | RDEPEND="${DEPEND} |
|
|
129 | !minimal? ( sys-apps/mysql ) |
|
|
130 | selinux? ( sec-policy/selinux-mysql ) |
|
|
131 | " |
82 | |
132 | |
83 | EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_preinst \ |
133 | EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_preinst \ |
84 | pkg_postinst pkg_config pkg_postrm |
134 | pkg_postinst pkg_config pkg_postrm |
85 | |
135 | |
86 | # |
136 | # |
87 | # HELPER FUNCTIONS: |
137 | # HELPER FUNCTIONS: |
88 | # |
138 | # |
|
|
139 | |
|
|
140 | bitkeeper_fetch() { |
|
|
141 | |
|
|
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 "${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() { |
|
|
204 | local testname="${1}" ; shift |
|
|
205 | local reason="${@}" |
|
|
206 | local mysql_disable_file="${S}/mysql-test/t/disabled.def" |
|
|
207 | echo ${testname} : ${reason} >> "${mysql_disable_file}" |
|
|
208 | ewarn "test \"${testname}\" disabled because: \"${reason}\"" |
|
|
209 | } |
89 | |
210 | |
90 | # void mysql_init_vars() |
211 | # void mysql_init_vars() |
91 | # |
212 | # |
92 | # Initialize global variables |
213 | # Initialize global variables |
93 | # 2005-11-19 <vivo@gentoo.org> |
214 | # 2005-11-19 <vivo@gentoo.org> |
94 | |
215 | |
95 | mysql_init_vars() { |
216 | mysql_init_vars() { |
|
|
217 | if [[ ${SLOT} == "0" ]] ; then |
|
|
218 | MY_SUFFIX="" |
|
|
219 | else |
|
|
220 | MY_SUFFIX=${MY_SUFFIX:-"-${SLOT}"} |
|
|
221 | fi |
96 | MY_SHAREDSTATEDIR=${MY_SHAREDSTATEDIR="/usr/share/mysql"} |
222 | MY_SHAREDSTATEDIR=${MY_SHAREDSTATEDIR:-"/usr/share/mysql${MY_SUFFIX}"} |
97 | MY_SYSCONFDIR=${MY_SYSCONFDIR="/etc/mysql"} |
223 | MY_SYSCONFDIR=${MY_SYSCONFDIR="/etc/mysql${MY_SUFFIX}"} |
98 | MY_LIBDIR=${MY_LIBDIR="/usr/$(get_libdir)/mysql"} |
224 | MY_LIBDIR=${MY_LIBDIR="/usr/$(get_libdir)/mysql${MY_SUFFIX}"} |
99 | MY_LOCALSTATEDIR=${MY_LOCALSTATEDIR="/var/lib/mysql"} |
225 | MY_LOCALSTATEDIR=${MY_LOCALSTATEDIR="/var/lib/mysql${MY_SUFFIX}"} |
100 | MY_LOGDIR=${MY_LOGDIR="/var/log/mysql"} |
226 | MY_LOGDIR=${MY_LOGDIR="/var/log/mysql${MY_SUFFIX}"} |
101 | MY_INCLUDEDIR=${MY_INCLUDEDIR="/usr/include/mysql"} |
227 | MY_INCLUDEDIR=${MY_INCLUDEDIR="/usr/include/mysql${MY_SUFFIX}"} |
102 | |
228 | |
103 | if [[ -z "${DATADIR}" ]] ; then |
229 | if [[ -z "${DATADIR}" ]] ; then |
104 | DATADIR="" |
230 | DATADIR="" |
105 | if [[ -f "${MY_SYSCONFDIR}/my.cnf" ]] ; then |
231 | if [[ -f "${MY_SYSCONFDIR}/my.cnf" ]] ; then |
106 | DATADIR=`"my_print_defaults" mysqld 2>/dev/null \ |
232 | DATADIR=`"my_print_defaults${MY_SUFFIX}" mysqld 2>/dev/null \ |
107 | | sed -ne '/datadir/s|^--datadir=||p' \ |
233 | | sed -ne '/datadir/s|^--datadir=||p' \ |
108 | | tail -n1` |
234 | | tail -n1` |
109 | if [[ -z "${DATADIR}" ]] ; then |
235 | if [[ -z "${DATADIR}" ]] ; then |
110 | if useq "srvdir" ; then |
|
|
111 | DATADIR="${ROOT}/srv/localhost/mysql/datadir" |
|
|
112 | else |
|
|
113 | DATADIR=`grep ^datadir "${MY_SYSCONFDIR}/my.cnf" \ |
236 | DATADIR=`grep ^datadir "${MY_SYSCONFDIR}/my.cnf" \ |
114 | | sed -e 's/.*=\s*//'` |
237 | | sed -e 's/.*=\s*//'` |
115 | fi |
|
|
116 | fi |
238 | fi |
117 | fi |
239 | fi |
118 | if [[ -z "${DATADIR}" ]] ; then |
240 | if [[ -z "${DATADIR}" ]] ; then |
119 | if useq "srvdir" ; then |
|
|
120 | DATADIR="${ROOT}/srv/localhost/mysql/datadir" |
|
|
121 | else |
|
|
122 | DATADIR="${MY_LOCALSTATEDIR}" |
241 | DATADIR="${MY_LOCALSTATEDIR}" |
123 | fi |
|
|
124 | einfo "Using default DATADIR" |
242 | einfo "Using default DATADIR" |
125 | fi |
243 | fi |
126 | einfo "MySQL DATADIR is ${DATADIR}" |
244 | elog "MySQL DATADIR is ${DATADIR}" |
127 | |
245 | |
128 | if [[ -z "${PREVIOUS_DATADIR}" ]] ; then |
246 | if [[ -z "${PREVIOUS_DATADIR}" ]] ; then |
129 | if [[ -e "${DATADIR}" ]] ; then |
247 | if [[ -e "${DATADIR}" ]] ; then |
130 | ewarn "Previous datadir found, it's YOUR job to change" |
248 | elog "Previous datadir found, it's YOUR job to change" |
131 | ewarn "ownership and take care of it" |
249 | elog "ownership and take care of it" |
132 | PREVIOUS_DATADIR="yes" |
250 | PREVIOUS_DATADIR="yes" |
133 | else |
251 | else |
134 | PREVIOUS_DATADIR="no" |
252 | PREVIOUS_DATADIR="no" |
135 | fi |
253 | fi |
136 | export PREVIOUS_DATADIR |
254 | export PREVIOUS_DATADIR |
137 | fi |
255 | fi |
138 | fi |
256 | fi |
139 | |
257 | |
|
|
258 | MY_SOURCEDIR=${SERVER_URI##*/} |
|
|
259 | MY_SOURCEDIR=${MY_SOURCEDIR%.tar*} |
|
|
260 | |
140 | export MY_SHAREDSTATEDIR MY_SYSCONFDIR |
261 | export MY_SUFFIX MY_SHAREDSTATEDIR MY_SYSCONFDIR |
141 | export MY_LIBDIR MY_LOCALSTATEDIR MY_LOGDIR |
262 | export MY_LIBDIR MY_LOCALSTATEDIR MY_LOGDIR |
142 | export MY_INCLUDEDIR |
263 | export MY_INCLUDEDIR DATADIR MY_SOURCEDIR |
143 | export DATADIR |
|
|
144 | } |
264 | } |
145 | |
265 | |
146 | configure_minimal() { |
266 | configure_minimal() { |
147 | # these are things we exclude from a minimal build |
267 | # These are things we exclude from a minimal build, please |
148 | # note that the server actually does get built and installed |
268 | # note that the server actually does get built and installed, |
149 | # but we then delete it before packaging. |
269 | # but we then delete it before packaging. |
150 | local minimal_exclude_list="server embedded-server extra-tools innodb bench berkeley-db row-based-replication" |
270 | local minimal_exclude_list="server embedded-server extra-tools innodb bench berkeley-db row-based-replication" |
151 | |
271 | |
152 | for i in ${minimal_exclude_list}; do |
272 | for i in ${minimal_exclude_list} ; do |
153 | myconf="${myconf} --without-${i}" |
273 | myconf="${myconf} --without-${i}" |
154 | done |
274 | done |
155 | myconf="${myconf} --with-extra-charsets=none" |
275 | myconf="${myconf} --with-extra-charsets=none" |
|
|
276 | myconf="${myconf} --enable-local-infile" |
|
|
277 | |
|
|
278 | if useq "static" ; then |
|
|
279 | myconf="${myconf} --with-client-ldflags=-all-static" |
|
|
280 | myconf="${myconf} --disable-shared" |
|
|
281 | else |
|
|
282 | myconf="${myconf} --enable-shared --enable-static" |
|
|
283 | fi |
|
|
284 | |
|
|
285 | if mysql_version_is_at_least "4.01.00.00" && ! useq "latin1" ; then |
|
|
286 | myconf="${myconf} --with-charset=utf8" |
|
|
287 | myconf="${myconf} --with-collation=utf8_general_ci" |
|
|
288 | else |
|
|
289 | myconf="${myconf} --with-charset=latin1" |
|
|
290 | myconf="${myconf} --with-collation=latin1_swedish_ci" |
|
|
291 | fi |
156 | } |
292 | } |
157 | |
293 | |
158 | configure_common() { |
294 | configure_common() { |
|
|
295 | myconf="${myconf} $(use_with big-tables)" |
159 | myconf="${myconf} --enable-local-infile" |
296 | myconf="${myconf} --enable-local-infile" |
160 | myconf="${myconf} --with-extra-charsets=all" |
297 | myconf="${myconf} --with-extra-charsets=all" |
161 | myconf="${myconf} --with-mysqld-user=mysql" |
298 | myconf="${myconf} --with-mysqld-user=mysql" |
|
|
299 | myconf="${myconf} --with-server" |
162 | myconf="${myconf} --with-unix-socket-path='/var/run/mysqld/mysqld.sock'" |
300 | myconf="${myconf} --with-unix-socket-path=/var/run/mysqld/mysqld.sock" |
163 | myconf="${myconf} --without-libwrap" |
301 | myconf="${myconf} --without-libwrap" |
164 | |
302 | |
165 | if useq "static" ; then |
303 | if useq "static" ; then |
166 | myconf="${myconf} --with-mysqld-ldflags=-all-static" |
304 | myconf="${myconf} --with-mysqld-ldflags=-all-static" |
167 | myconf="${myconf} --with-client-ldflags=-all-static" |
305 | myconf="${myconf} --with-client-ldflags=-all-static" |
168 | myconf="${myconf} --disable-shared" |
306 | myconf="${myconf} --disable-shared" |
169 | else |
307 | else |
… | |
… | |
172 | |
310 | |
173 | if useq "debug" ; then |
311 | if useq "debug" ; then |
174 | myconf="${myconf} --with-debug=full" |
312 | myconf="${myconf} --with-debug=full" |
175 | else |
313 | else |
176 | myconf="${myconf} --without-debug" |
314 | myconf="${myconf} --without-debug" |
177 | mysql_version_is_at_least "4.01.03.00" \ |
315 | mysql_version_is_at_least "4.1.3" \ |
178 | && useq "cluster" \ |
316 | && useq "cluster" \ |
179 | && myconf="${myconf} --without-ndb-debug" |
317 | && myconf="${myconf} --without-ndb-debug" |
180 | fi |
318 | fi |
181 | |
319 | |
182 | if mysql_version_is_at_least "4.01.00.00" && ! useq "latin1" ; then |
320 | if mysql_version_is_at_least "4.1" && ! useq "latin1" ; then |
183 | myconf="${myconf} --with-charset=utf8" |
321 | myconf="${myconf} --with-charset=utf8" |
184 | myconf="${myconf} --with-collation=utf8_general_ci" |
322 | myconf="${myconf} --with-collation=utf8_general_ci" |
185 | else |
323 | else |
186 | myconf="${myconf} --with-charset=latin1" |
324 | myconf="${myconf} --with-charset=latin1" |
187 | myconf="${myconf} --with-collation=latin1_swedish_ci" |
325 | myconf="${myconf} --with-collation=latin1_swedish_ci" |
188 | fi |
326 | fi |
189 | |
327 | |
190 | if useq "embedded" ; then |
328 | if useq "embedded" ; then |
191 | myconf="${myconf} --with-embedded-privilege-control" |
329 | myconf="${myconf} --with-embedded-privilege-control" |
192 | myconf="${myconf} --with-embedded-server" |
330 | myconf="${myconf} --with-embedded-server" |
193 | else |
331 | else |
194 | myconf="${myconf} --without-embedded-privilege-control" |
332 | myconf="${myconf} --without-embedded-privilege-control" |
… | |
… | |
201 | myconf="${myconf} $(use_with perl bench)" |
339 | myconf="${myconf} $(use_with perl bench)" |
202 | myconf="${myconf} --enable-assembler" |
340 | myconf="${myconf} --enable-assembler" |
203 | myconf="${myconf} --with-extra-tools" |
341 | myconf="${myconf} --with-extra-tools" |
204 | myconf="${myconf} --with-innodb" |
342 | myconf="${myconf} --with-innodb" |
205 | myconf="${myconf} --without-readline" |
343 | myconf="${myconf} --without-readline" |
206 | mysql_version_is_at_least "5.00.00.00" || myconf="${myconf} $(use_with raid)" |
344 | mysql_version_is_at_least "5.0" || myconf="${myconf} $(use_with raid)" |
207 | |
345 | |
208 | if useq "ssl" ; then |
346 | if useq "ssl" ; then |
209 | # --with-vio is not needed anymore, it's on by default and |
347 | # --with-vio is not needed anymore, it's on by default and |
210 | # has been removed from configure |
348 | # has been removed from configure |
211 | mysql_version_is_at_least "5.00.04.00" || myconf="${myconf} --with-vio" |
349 | mysql_version_is_at_least "5.0.4" || myconf="${myconf} --with-vio" |
|
|
350 | fi |
|
|
351 | |
212 | if mysql_version_is_at_least "5.00.06.00" ; then |
352 | if mysql_version_is_at_least "5.1.11" ; then |
213 | # myconf="${myconf} --with-yassl" |
353 | myconf="${myconf} $(use_with ssl)" |
214 | myconf="${myconf} --with-openssl" |
|
|
215 | else |
354 | else |
216 | myconf="${myconf} --with-openssl" |
355 | myconf="${myconf} $(use_with ssl openssl)" |
217 | fi |
|
|
218 | else |
|
|
219 | myconf="${myconf} --without-openssl" |
|
|
220 | fi |
356 | fi |
221 | |
357 | |
222 | # The following fix is due to a bug with bdb on SPARC's. See: |
358 | # The following fix is due to a bug with bdb on SPARC's. See: |
223 | # http://www.geocrawler.com/mail/msg.php3?msg_id=4754814&list=8 |
359 | # http://www.geocrawler.com/mail/msg.php3?msg_id=4754814&list=8 |
224 | # It comes down to non-64-bit safety problems. |
360 | # It comes down to non-64-bit safety problems. |
225 | if useq "sparc" || useq "alpha" || useq "hppa" || useq "mips" || useq "amd64" ; then |
361 | if useq "sparc" || useq "alpha" || useq "hppa" || useq "mips" || useq "amd64" ; then |
226 | ewarn "bdb berkeley-db disabled due to incompatible arch" |
362 | elog "Berkeley DB support was disabled due to incompatible arch" |
227 | myconf="${myconf} --without-berkeley-db" |
363 | myconf="${myconf} --without-berkeley-db" |
228 | else |
364 | else |
|
|
365 | if useq "berkdb" ; then |
229 | useq "berkdb" && myconf="${myconf} --with-berkeley-db=./bdb" |
366 | myconf="${myconf} --with-berkeley-db=./bdb" |
|
|
367 | else |
|
|
368 | myconf="${myconf} --without-berkeley-db" |
230 | fi |
369 | fi |
|
|
370 | fi |
231 | |
371 | |
232 | if mysql_version_is_at_least "4.01.03.00" ; then |
372 | if mysql_version_is_at_least "4.1.3" ; then |
233 | myconf="${myconf} --with-geometry" |
373 | myconf="${myconf} --with-geometry" |
234 | myconf="${myconf} $(use_with cluster ndbcluster)" |
374 | myconf="${myconf} $(use_with cluster ndbcluster)" |
235 | fi |
375 | fi |
236 | |
376 | |
237 | mysql_version_is_at_least "4.01.11.00" \ |
|
|
238 | && myconf="${myconf} $(use_with big-tables)" |
|
|
239 | |
|
|
240 | if mysql_version_is_at_least "4.01.03.00" && useq "extraengine" ; then |
377 | if mysql_version_is_at_least "4.1.3" && useq "extraengine" ; then |
241 | # http://dev.mysql.com/doc/mysql/en/archive-storage-engine.html |
378 | # http://dev.mysql.com/doc/mysql/en/archive-storage-engine.html |
242 | myconf="${myconf} --with-archive-storage-engine" |
379 | myconf="${myconf} --with-archive-storage-engine" |
243 | |
380 | |
244 | # http://dev.mysql.com/doc/mysql/en/csv-storage-engine.html |
381 | # http://dev.mysql.com/doc/mysql/en/csv-storage-engine.html |
245 | myconf="${myconf} --with-csv-storage-engine" |
382 | myconf="${myconf} --with-csv-storage-engine" |
… | |
… | |
248 | myconf="${myconf} --with-blackhole-storage-engine" |
385 | myconf="${myconf} --with-blackhole-storage-engine" |
249 | |
386 | |
250 | # http://dev.mysql.com/doc/mysql/en/federated-storage-engine.html |
387 | # http://dev.mysql.com/doc/mysql/en/federated-storage-engine.html |
251 | # http://dev.mysql.com/doc/mysql/en/federated-description.html |
388 | # http://dev.mysql.com/doc/mysql/en/federated-description.html |
252 | # http://dev.mysql.com/doc/mysql/en/federated-limitations.html |
389 | # http://dev.mysql.com/doc/mysql/en/federated-limitations.html |
253 | if mysql_version_is_at_least "5.00.03.00" ; then |
390 | if mysql_version_is_at_least "5.0.3" ; then |
254 | einfo "Before using the Federated storage engine, please be sure to read" |
391 | elog "Before using the Federated storage engine, please be sure to read" |
255 | einfo "http://dev.mysql.com/doc/mysql/en/federated-limitations.html" |
392 | elog "http://dev.mysql.com/doc/mysql/en/federated-limitations.html" |
256 | myconf="${myconf} --with-federated-storage-engine" |
393 | myconf="${myconf} --with-federated-storage-engine" |
257 | fi |
394 | fi |
258 | fi |
395 | fi |
259 | |
396 | |
260 | mysql_version_is_at_least "5.00.18.00" \ |
397 | mysql_version_is_at_least "5.0.18" \ |
261 | && useq "max-idx-128" \ |
398 | && useq "max-idx-128" \ |
262 | && myconf="${myconf} --with-max-indexes=128" |
399 | && myconf="${myconf} --with-max-indexes=128" |
263 | } |
400 | } |
264 | |
401 | |
265 | configure_51() { |
402 | configure_51() { |
266 | # TODO : !!!!! readd --withouth-readline |
403 | # TODO: !!!! readd --without-readline |
267 | # the failure depend upon config/ac-macros/readline.m4 checking into |
404 | # the failure depend upon config/ac-macros/readline.m4 checking into |
268 | # readline.h instead of history.h |
405 | # readline.h instead of history.h |
269 | myconf="${myconf} $(use_with big-tables)" |
|
|
270 | myconf="${myconf} $(use_with ssl)" |
406 | myconf="${myconf} $(use_with ssl)" |
271 | myconf="${myconf} --enable-assembler" |
407 | myconf="${myconf} --enable-assembler" |
272 | myconf="${myconf} --with-geometry" |
408 | myconf="${myconf} --with-geometry" |
273 | myconf="${myconf} --with-readline" |
409 | myconf="${myconf} --with-readline" |
274 | myconf="${myconf} --with-row-based-replication" |
410 | myconf="${myconf} --with-row-based-replication" |
275 | myconf="${myconf} --with-zlib=/usr/$(get_libdir)" |
411 | myconf="${myconf} --with-zlib=/usr/$(get_libdir)" |
276 | myconf="${myconf} --without-pstack" |
412 | myconf="${myconf} --without-pstack" |
277 | useq "max-idx-128" && myconf="${myconf} --with-max-indexes=128" |
413 | useq "max-idx-128" && myconf="${myconf} --with-max-indexes=128" |
278 | |
414 | |
279 | # 5.1 introduces a new way to manage storage engines (plugins) |
415 | # 5.1 introduces a new way to manage storage engines (plugins) |
280 | # like configuration=none |
416 | # like configuration=none |
281 | local plugins="csv,myisam,myisammrg,heap" |
417 | local plugins="csv,myisam,myisammrg,heap" |
282 | if useq "extraengine" ; then |
418 | if useq "extraengine" ; then |
283 | # like configuration=max-no-ndb, archive and example removed in 5.1.11 |
419 | # like configuration=max-no-ndb, archive and example removed in 5.1.11 |
284 | plugins="${plugins},blackhole,federated,ftexample,partition" |
420 | plugins="${plugins},archive,blackhole,example,federated,partition" |
285 | |
421 | |
286 | einfo "before to use federated engine be sure to read" |
422 | elog "Before using the Federated storage engine, please be sure to read" |
287 | einfo "http://dev.mysql.com/doc/refman/5.1/en/federated-limitations.html" |
423 | elog "http://dev.mysql.com/doc/refman/5.1/en/federated-limitations.html" |
288 | fi |
424 | fi |
289 | |
425 | |
290 | if useq "innodb" ; then |
426 | if useq "innodb" ; then |
291 | plugins="${plugins},innobase" |
427 | plugins="${plugins},innobase" |
292 | fi |
428 | fi |
… | |
… | |
295 | if useq "cluster" ; then |
431 | if useq "cluster" ; then |
296 | plugins="${plugins},ndbcluster" |
432 | plugins="${plugins},ndbcluster" |
297 | myconf="${myconf} --with-ndb-binlog" |
433 | myconf="${myconf} --with-ndb-binlog" |
298 | fi |
434 | fi |
299 | |
435 | |
|
|
436 | if mysql_version_is_at_least "5.2" ; then |
|
|
437 | plugins="${plugins},falcon" |
|
|
438 | fi |
|
|
439 | |
300 | myconf="${myconf} --with-plugins=${plugins}" |
440 | myconf="${myconf} --with-plugins=${plugins}" |
|
|
441 | } |
|
|
442 | |
|
|
443 | pbxt_src_compile() { |
|
|
444 | mysql_init_vars |
|
|
445 | |
|
|
446 | pushd "${WORKDIR}/pbxt-${PBXT_VERSION}" &>/dev/null |
|
|
447 | |
|
|
448 | einfo "Reconfiguring dir '${PWD}'" |
|
|
449 | AT_GNUCONF_UPDATE="yes" eautoreconf |
|
|
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 ? |
|
|
459 | make || die "problem making pbxt storage engine (${myconf})" |
|
|
460 | |
|
|
461 | popd |
|
|
462 | # TODO: modify test suite |
|
|
463 | } |
|
|
464 | |
|
|
465 | pbxt_src_install() { |
|
|
466 | pushd "${WORKDIR}/pbxt-${PBXT_VERSION}" &>/dev/null |
|
|
467 | make install || die "failed pbxt install" |
|
|
468 | popd |
301 | } |
469 | } |
302 | |
470 | |
303 | # |
471 | # |
304 | # EBUILD FUNCTIONS |
472 | # EBUILD FUNCTIONS |
305 | # |
473 | # |
306 | |
474 | |
307 | mysql_pkg_setup() { |
475 | mysql_pkg_setup() { |
308 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
476 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
309 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
477 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
310 | |
|
|
311 | if mysql_version_is_at_least "5.01.12.00" && useq "innodb" ; then |
|
|
312 | die "innodb now use cmake to build this is a TODO item" |
|
|
313 | fi |
|
|
314 | |
478 | |
315 | # Check for USE flag problems in pkg_setup |
479 | # Check for USE flag problems in pkg_setup |
316 | if useq "static" && useq "ssl" ; then |
480 | if useq "static" && useq "ssl" ; then |
317 | eerror "MySQL does not support being built statically with SSL support enabled!" |
481 | eerror "MySQL does not support being built statically with SSL support enabled!" |
318 | die "MySQL does not support being built statically with SSL support enabled!" |
482 | die "MySQL does not support being built statically with SSL support enabled!" |
319 | fi |
483 | fi |
320 | |
484 | |
321 | if ! mysql_version_is_at_least "5.00.00.00" \ |
485 | if ! mysql_version_is_at_least "5.0" \ |
322 | && useq "raid" \ |
486 | && useq "raid" \ |
323 | && useq "static" ; then |
487 | && useq "static" ; then |
324 | eerror "USE flags 'raid' and 'static' conflict, you cannot build MySQL statically" |
488 | eerror "USE flags 'raid' and 'static' conflict, you cannot build MySQL statically" |
325 | eerror "with RAID support enabled." |
489 | eerror "with RAID support enabled." |
326 | die "USE flags 'raid' and 'static' conflict!" |
490 | die "USE flags 'raid' and 'static' conflict!" |
327 | fi |
491 | fi |
328 | |
492 | |
329 | if mysql_version_is_at_least "4.01.03.00" \ |
493 | if mysql_version_is_at_least "4.1.3" \ |
330 | && ( useq "cluster" || useq "extraengine" ) \ |
494 | && ( useq "cluster" || useq "extraengine" ) \ |
331 | && useq "minimal" ; then |
495 | && useq "minimal" ; then |
332 | eerror "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
496 | eerror "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
333 | die "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
497 | die "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
334 | fi |
498 | fi |
335 | |
499 | |
|
|
500 | mysql_check_version_range "4.0 to 5.0.99.99" \ |
|
|
501 | && useq "berkdb" \ |
336 | useq "berkdb" && ewarn "Berkley DB support is deprecated and will be removed in future versions" |
502 | && elog "Berkeley DB support is deprecated and will be removed in future versions!" |
337 | } |
503 | } |
338 | |
504 | |
339 | mysql_src_unpack() { |
505 | mysql_src_unpack() { |
340 | # Initialize the proper variables first |
506 | # Initialize the proper variables first |
341 | mysql_init_vars |
507 | mysql_init_vars |
342 | |
508 | |
343 | unpack ${A} |
509 | unpack ${A} |
344 | |
510 | if [[ ${IS_BITKEEPER} -eq 90 ]] ; then |
345 | mv -f "${WORKDIR}/${P/_/-}${MYSQL_RERELEASE}" "${S}" |
511 | if mysql_check_version_range "5.1 to 5.1.99" ; then |
|
|
512 | bitkeeper_fetch "mysql-5.1-ndb" |
|
|
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 |
346 | cd "${S}" |
518 | cd "${S}" |
|
|
519 | einfo "running upstream autorun on bk sources" |
|
|
520 | BUILD/autorun.sh |
|
|
521 | else |
|
|
522 | mv -f "${WORKDIR}/${MY_SOURCEDIR}" "${S}" |
|
|
523 | cd "${S}" |
|
|
524 | fi |
347 | |
525 | |
348 | # Apply the patches for this MySQL version |
526 | # Apply the patches for this MySQL version |
349 | if [[ -d "${WORKDIR}/${MY_FIXED_PV}" ]] ; then |
527 | EPATCH_SUFFIX="patch" |
350 | EPATCH_SOURCE="${WORKDIR}/${MY_FIXED_PV}" EPATCH_SUFFIX="patch" epatch |
528 | mkdir -p "${EPATCH_SOURCE}" || die "unable to create epatch directory" |
351 | fi |
529 | mysql_mv_patches |
|
|
530 | epatch || die "failed to apply all patches" |
352 | |
531 | |
353 | # Additional checks, remove bundled zlib |
532 | # Additional checks, remove bundled zlib |
354 | rm -f "${S}/zlib/"*.[ch] |
533 | rm -f "${S}/zlib/"*.[ch] |
355 | sed -i -e "s/zlib\/Makefile dnl/dnl zlib\/Makefile/" "${S}/configure.in" |
534 | sed -i -e "s/zlib\/Makefile dnl/dnl zlib\/Makefile/" "${S}/configure.in" |
356 | rm -f "scripts/mysqlbug" |
535 | rm -f "scripts/mysqlbug" |
357 | |
536 | |
358 | # Make charsets install in the right place |
537 | # Make charsets install in the right place |
359 | find . -name 'Makefile.am' \ |
538 | find . -name 'Makefile.am' \ |
360 | -exec sed --in-place -e 's!$(pkgdatadir)!'${MY_SHAREDSTATEDIR}'!g' {} \; |
539 | -exec sed --in-place -e 's!$(pkgdatadir)!'${MY_SHAREDSTATEDIR}'!g' {} \; |
361 | |
540 | |
362 | # Manage mysqlmanager |
|
|
363 | mysql_version_is_at_least "5.00.15.00" \ |
|
|
364 | && sed -i -e "s!@GENTOO_EXT@!${MY_SUFFIX}!g" \ |
|
|
365 | -e "s!@GENTOO_SOCK_PATH@!var/run/mysqld!g" \ |
|
|
366 | "${S}/server-tools/instance-manager/Makefile.am" |
|
|
367 | |
|
|
368 | if mysql_version_is_at_least "4.01.00.00" ; then |
541 | if mysql_version_is_at_least "4.1" ; then |
369 | # Remove what needs to be recreated, so we're sure it's actually done |
542 | # Remove what needs to be recreated, so we're sure it's actually done |
370 | find . -name Makefile \ |
543 | find . -name Makefile \ |
371 | -o -name Makefile.in \ |
544 | -o -name Makefile.in \ |
372 | -o -name configure \ |
545 | -o -name configure \ |
373 | -exec rm -f {} \; |
546 | -exec rm -f {} \; |
374 | rm -f "ltmain.sh" |
547 | rm -f "ltmain.sh" |
375 | rm -f "scripts/mysqlbug" |
548 | rm -f "scripts/mysqlbug" |
376 | fi |
549 | fi |
377 | |
550 | |
378 | local rebuilddirlist bdbdir d |
551 | local rebuilddirlist d |
379 | |
552 | |
380 | if mysql_version_is_at_least "5.01.00.00" ; then |
553 | if mysql_version_is_at_least "5.1.12" ; then |
381 | rebuilddirlist=". storage/innobase" |
554 | rebuilddirlist="." |
382 | bdbdir='storage/bdb/dist' |
555 | # TODO IMPO! Check this with a cmake expert |
|
|
556 | useq "innodb" \ |
|
|
557 | && cmake \ |
|
|
558 | -DCMAKE_C_COMPILER=$(which $(tc-getCC)) \ |
|
|
559 | -DCMAKE_CXX_COMPILER=$(which $(tc-getCC)) \ |
|
|
560 | "storage/innobase" |
383 | else |
561 | else |
384 | rebuilddirlist=". innobase" |
562 | rebuilddirlist=". innobase" |
385 | bdbdir='bdb/dist' |
|
|
386 | fi |
563 | fi |
387 | |
564 | |
388 | for d in ${rebuilddirlist} ; do |
565 | for d in ${rebuilddirlist} ; do |
389 | einfo "Reconfiguring dir '${d}'" |
566 | einfo "Reconfiguring dir '${d}'" |
390 | pushd "${d}" &>/dev/null |
567 | pushd "${d}" &>/dev/null |
391 | AT_GNUCONF_UPDATE="yes" eautoreconf |
568 | AT_GNUCONF_UPDATE="yes" eautoreconf |
392 | popd &>/dev/null |
569 | popd &>/dev/null |
393 | done |
570 | done |
394 | |
571 | |
395 | # TODO: berkdb in MySQL 5.1 needs to be worked on |
|
|
396 | if useq "berkdb" \ |
|
|
397 | && ! mysql_check_version_range "4.00.00.00 to 4.00.99.99" \ |
572 | if mysql_check_version_range "4.1 to 5.0.99.99" \ |
398 | && ! mysql_check_version_range "5.01.00.00 to 5.01.08.99" ; then |
573 | && useq "berkdb" ; then |
399 | [[ -w "${bdbdir}/ltmain.sh" ]] && cp -f "ltmain.sh" "${bdbdir}/ltmain.sh" |
574 | [[ -w "bdb/dist/ltmain.sh" ]] && cp -f "ltmain.sh" "bdb/dist/ltmain.sh" |
400 | pushd "${bdbdir}" \ |
575 | pushd "bdb/dist" \ |
401 | && sh s_all \ |
576 | && sh s_all \ |
402 | || die "Failed bdb reconfigure" \ |
577 | || die "Failed bdb reconfigure" \ |
403 | &>/dev/null |
578 | &>/dev/null |
404 | popd &>/dev/null |
579 | popd &>/dev/null |
405 | fi |
580 | fi |
… | |
… | |
407 | |
582 | |
408 | mysql_src_compile() { |
583 | mysql_src_compile() { |
409 | # Make sure the vars are correctly initialized |
584 | # Make sure the vars are correctly initialized |
410 | mysql_init_vars |
585 | mysql_init_vars |
411 | |
586 | |
|
|
587 | # $myconf is modified by the configure_* functions |
412 | local myconf |
588 | local myconf="" |
413 | |
589 | |
414 | if useq "static" ; then |
|
|
415 | myconf="${myconf} --with-mysqld-ldflags=-all-static" |
|
|
416 | myconf="${myconf} --with-client-ldflags=-all-static" |
|
|
417 | myconf="${myconf} --disable-shared" |
|
|
418 | else |
|
|
419 | myconf="${myconf} --enable-shared --enable-static" |
|
|
420 | fi |
|
|
421 | |
|
|
422 | myconf="${myconf} --without-libwrap" |
|
|
423 | |
|
|
424 | if useq "ssl" ; then |
590 | if useq "minimal" ; then |
425 | # --with-vio is not needed anymore, it's on by default and |
591 | configure_minimal |
426 | # has been removed from configure |
592 | else |
427 | mysql_version_is_at_least "5.00.04.00" || myconf="${myconf} --with-vio" |
593 | configure_common |
428 | if mysql_version_is_at_least "5.00.06.00" ; then |
594 | if mysql_version_is_at_least "5.1.10" ; then |
429 | # yassl-0.96 is still young and breaks with GCC-4.X or amd64 |
595 | configure_51 |
430 | # myconf="${myconf} --with-yassl" |
|
|
431 | myconf="${myconf} --with-openssl" |
|
|
432 | else |
596 | else |
433 | myconf="${myconf} --with-openssl" |
597 | configure_40_41_50 |
434 | fi |
|
|
435 | else |
|
|
436 | myconf="${myconf} --without-openssl" |
|
|
437 | fi |
|
|
438 | |
|
|
439 | if useq "debug" ; then |
|
|
440 | myconf="${myconf} --with-debug=full" |
|
|
441 | else |
|
|
442 | myconf="${myconf} --without-debug" |
|
|
443 | |
|
|
444 | mysql_version_is_at_least "4.01.03.00" && useq "cluster" \ |
|
|
445 | && myconf="${myconf} --without-ndb-debug" |
|
|
446 | fi |
|
|
447 | |
|
|
448 | # These are things we exclude from a minimal build. |
|
|
449 | # Note that the server actually does get built and installed, |
|
|
450 | # but we then delete it. |
|
|
451 | local minimal_exclude_list="server embedded-server extra-tools innodb bench" |
|
|
452 | |
|
|
453 | if ! useq "minimal" ; then |
|
|
454 | myconf="${myconf} --with-server" |
|
|
455 | myconf="${myconf} --with-extra-tools" |
|
|
456 | |
|
|
457 | if ! mysql_version_is_at_least "5.00.00.00" ; then |
|
|
458 | if useq "raid" ; then |
|
|
459 | myconf="${myconf} --with-raid" |
|
|
460 | else |
|
|
461 | myconf="${myconf} --without-raid" |
|
|
462 | fi |
598 | fi |
463 | fi |
|
|
464 | |
|
|
465 | if mysql_version_is_at_least "4.01.00.00" && ! useq "latin1" ; then |
|
|
466 | myconf="${myconf} --with-charset=utf8" |
|
|
467 | myconf="${myconf} --with-collation=utf8_general_ci" |
|
|
468 | else |
|
|
469 | myconf="${myconf} --with-charset=latin1" |
|
|
470 | myconf="${myconf} --with-collation=latin1_swedish_ci" |
|
|
471 | fi |
|
|
472 | |
|
|
473 | # Optional again with MySQL 5.1 |
|
|
474 | if mysql_version_is_at_least "5.01.00.00" ; then |
|
|
475 | if useq "innodb" ; then |
|
|
476 | myconf="${myconf} --with-innodb" |
|
|
477 | else |
|
|
478 | myconf="${myconf} --without-innodb" |
|
|
479 | fi |
|
|
480 | fi |
|
|
481 | |
|
|
482 | # Lots of charsets |
|
|
483 | myconf="${myconf} --with-extra-charsets=all" |
|
|
484 | |
|
|
485 | # The following fix is due to a bug with bdb on SPARC's. See: |
|
|
486 | # http://www.geocrawler.com/mail/msg.php3?msg_id=4754814&list=8 |
|
|
487 | # It comes down to non-64-bit safety problems. |
|
|
488 | if useq "sparc" || useq "alpha" || useq "hppa" || useq "mips" || useq "amd64" ; then |
|
|
489 | ewarn "bdb berkeley-db disabled due to incompatible arch" |
|
|
490 | myconf="${myconf} --without-berkeley-db" |
|
|
491 | else |
|
|
492 | # TODO: berkdb in MySQL 5.1 needs to be worked on |
|
|
493 | if useq "berkdb" && ! mysql_check_version_range "5.01.00.00 to 5.01.08.99" ; then |
|
|
494 | myconf="${myconf} --with-berkeley-db=./bdb" |
|
|
495 | else |
|
|
496 | myconf="${myconf} --without-berkeley-db" |
|
|
497 | fi |
|
|
498 | fi |
|
|
499 | |
|
|
500 | if mysql_version_is_at_least "4.01.03.00" ; then |
|
|
501 | myconf="${myconf} --with-geometry" |
|
|
502 | |
|
|
503 | if useq "cluster" ; then |
|
|
504 | myconf="${myconf} --with-ndbcluster" |
|
|
505 | else |
|
|
506 | myconf="${myconf} --without-ndbcluster" |
|
|
507 | fi |
|
|
508 | fi |
|
|
509 | |
|
|
510 | if useq "big-tables" ; then |
|
|
511 | myconf="${myconf} --with-big-tables" |
|
|
512 | else |
|
|
513 | myconf="${myconf} --without-big-tables" |
|
|
514 | fi |
|
|
515 | |
|
|
516 | mysql_version_is_at_least "5.01.06.00" \ |
|
|
517 | && myconf="${myconf} --with-ndb-binlog" |
|
|
518 | |
|
|
519 | if useq "embedded" ; then |
|
|
520 | myconf="${myconf} --with-embedded-privilege-control" |
|
|
521 | myconf="${myconf} --with-embedded-server" |
|
|
522 | else |
|
|
523 | myconf="${myconf} --without-embedded-privilege-control" |
|
|
524 | myconf="${myconf} --without-embedded-server" |
|
|
525 | fi |
|
|
526 | |
|
|
527 | # Benchmarking stuff needs Perl |
|
|
528 | if useq "perl" ; then |
|
|
529 | myconf="${myconf} --with-bench" |
|
|
530 | else |
|
|
531 | myconf="${myconf} --without-bench" |
|
|
532 | fi |
|
|
533 | else |
|
|
534 | for i in ${minimal_exclude_list} ; do |
|
|
535 | myconf="${myconf} --without-${i}" |
|
|
536 | done |
|
|
537 | myconf="${myconf} --without-berkeley-db" |
|
|
538 | myconf="${myconf} --with-extra-charsets=none" |
|
|
539 | fi |
|
|
540 | |
|
|
541 | if mysql_version_is_at_least "4.01.03.00" && useq "extraengine" ; then |
|
|
542 | # http://dev.mysql.com/doc/mysql/en/archive-storage-engine.html |
|
|
543 | myconf="${myconf} --with-archive-storage-engine" |
|
|
544 | |
|
|
545 | # http://dev.mysql.com/doc/mysql/en/csv-storage-engine.html |
|
|
546 | myconf="${myconf} --with-csv-storage-engine" |
|
|
547 | |
|
|
548 | # http://dev.mysql.com/doc/mysql/en/blackhole-storage-engine.html |
|
|
549 | myconf="${myconf} --with-blackhole-storage-engine" |
|
|
550 | |
|
|
551 | # http://dev.mysql.com/doc/mysql/en/federated-storage-engine.html |
|
|
552 | # http://dev.mysql.com/doc/mysql/en/federated-description.html |
|
|
553 | # http://dev.mysql.com/doc/mysql/en/federated-limitations.html |
|
|
554 | if mysql_version_is_at_least "5.00.03.00" ; then |
|
|
555 | einfo "Before using the Federated storage engine, please be sure to read" |
|
|
556 | einfo "http://dev.mysql.com/doc/mysql/en/federated-limitations.html" |
|
|
557 | myconf="${myconf} --with-federated-storage-engine" |
|
|
558 | fi |
|
|
559 | |
|
|
560 | # http://dev.mysql.com/doc/refman/5.1/en/partitioning-overview.html |
|
|
561 | if mysql_version_is_at_least "5.01.00.00" ; then |
|
|
562 | myconf="${myconf} --with-partition" |
|
|
563 | fi |
|
|
564 | fi |
|
|
565 | |
|
|
566 | mysql_version_is_at_least "5.00.18.00" \ |
|
|
567 | && useq "max-idx-128" \ |
|
|
568 | && myconf="${myconf} --with-max-indexes=128" |
|
|
569 | |
|
|
570 | mysql_version_is_at_least "5.01.05.00" \ |
|
|
571 | && myconf="${myconf} --with-row-based-replication" |
|
|
572 | |
|
|
573 | # TODO: Rechek again later, there were problems with assembler enabled |
|
|
574 | # and some combination of USE flags with MySQL 5.1 |
|
|
575 | if mysql_check_version_range "5.01.00.00 to 5.01.08.99" ; then |
|
|
576 | myconf="${myconf} --disable-assembler" |
|
|
577 | else |
|
|
578 | myconf="${myconf} --enable-assembler" |
|
|
579 | fi |
599 | fi |
580 | |
600 | |
581 | # Bug #114895, bug #110149 |
601 | # Bug #114895, bug #110149 |
582 | filter-flags "-O" "-O[01]" |
602 | filter-flags "-O" "-O[01]" |
583 | |
603 | |
584 | # glib-2.3.2_pre fix, bug #16496 |
604 | # glib-2.3.2_pre fix, bug #16496 |
585 | append-flags "-DHAVE_ERRNO_AS_DEFINE=1" |
605 | append-flags "-DHAVE_ERRNO_AS_DEFINE=1" |
586 | |
606 | |
587 | append-flags "-fno-exceptions -fno-strict-aliasing" |
607 | CXXFLAGS="${CXXFLAGS} -fno-exceptions -fno-strict-aliasing" |
588 | CXXFLAGS="${CXXFLAGS} -felide-constructors -fno-rtti" |
608 | CXXFLAGS="${CXXFLAGS} -felide-constructors -fno-rtti" |
589 | mysql_version_is_at_least "5.00.00.00" \ |
609 | mysql_version_is_at_least "5.0" \ |
590 | && CXXFLAGS="${CXXFLAGS} -fno-implicit-templates" |
610 | && CXXFLAGS="${CXXFLAGS} -fno-implicit-templates" |
591 | export CXXFLAGS="${CXXFLAGS}" |
611 | export CXXFLAGS |
592 | |
612 | |
593 | econf \ |
613 | econf \ |
|
|
614 | --program-suffix="${MY_SUFFIX}" \ |
594 | --libexecdir="/usr/sbin" \ |
615 | --libexecdir="/usr/sbin" \ |
595 | --sysconfdir="${MY_SYSCONFDIR}" \ |
616 | --sysconfdir="${MY_SYSCONFDIR}" \ |
596 | --localstatedir="${MY_LOCALSTATEDIR}" \ |
617 | --localstatedir="${MY_LOCALSTATEDIR}" \ |
597 | --sharedstatedir="${MY_SHAREDSTATEDIR}" \ |
618 | --sharedstatedir="${MY_SHAREDSTATEDIR}" \ |
598 | --libdir="${MY_LIBDIR}" \ |
619 | --libdir="${MY_LIBDIR}" \ |
599 | --includedir="${MY_INCLUDEDIR}" \ |
620 | --includedir="${MY_INCLUDEDIR}" \ |
600 | --with-low-memory \ |
621 | --with-low-memory \ |
601 | --enable-local-infile \ |
|
|
602 | --with-mysqld-user=mysql \ |
|
|
603 | --with-client-ldflags=-lstdc++ \ |
622 | --with-client-ldflags=-lstdc++ \ |
604 | --enable-thread-safe-client \ |
623 | --enable-thread-safe-client \ |
605 | --with-comment="Gentoo Linux ${PF}" \ |
624 | --with-comment="Gentoo Linux ${PF}" \ |
606 | --with-unix-socket-path="/var/run/mysqld/mysqld.sock" \ |
|
|
607 | --without-readline \ |
|
|
608 | --without-docs \ |
625 | --without-docs \ |
609 | ${myconf} || die "bad ./configure" |
626 | ${myconf} || die "econf failed" |
610 | |
627 | |
611 | # TODO: Move this before autoreconf !!! |
628 | # TODO: Move this before autoreconf !!! |
612 | find . -type f -name Makefile -print0 \ |
629 | find . -type f -name Makefile -print0 \ |
613 | | xargs -0 -n100 sed -i \ |
630 | | xargs -0 -n100 sed -i \ |
614 | -e 's|^pkglibdir *= *$(libdir)/mysql|pkglibdir = $(libdir)|;s|^pkgincludedir *= *$(includedir)/mysql|pkgincludedir = $(includedir)|' |
631 | -e 's|^pkglibdir *= *$(libdir)/mysql|pkglibdir = $(libdir)|;s|^pkgincludedir *= *$(includedir)/mysql|pkgincludedir = $(includedir)|' |
615 | |
632 | |
616 | emake || die "compile problem" |
633 | emake || die "emake failed" |
|
|
634 | |
|
|
635 | mysql_version_is_at_least "5.1.1" && useq "pbxt" && pbxt_src_compile |
617 | } |
636 | } |
618 | |
637 | |
619 | mysql_src_install() { |
638 | mysql_src_install() { |
620 | # Make sure the vars are correctly initialized |
639 | # Make sure the vars are correctly initialized |
621 | mysql_init_vars |
640 | mysql_init_vars |
622 | |
641 | |
623 | make install DESTDIR="${D}" benchdir_root="${MY_SHAREDSTATEDIR}" || die "make install error" |
642 | emake install DESTDIR="${D}" benchdir_root="${MY_SHAREDSTATEDIR}" || die |
|
|
643 | |
|
|
644 | mysql_version_is_at_least "5.1.12" && useq "pbxt" && pbxt_src_install |
624 | |
645 | |
625 | insinto "${MY_INCLUDEDIR}" |
646 | insinto "${MY_INCLUDEDIR}" |
626 | doins "${MY_INCLUDEDIR}"/my_{config,dir}.h |
647 | doins "${MY_INCLUDEDIR}"/my_{config,dir}.h |
627 | |
648 | |
628 | # Convenience links |
649 | # Convenience links |
629 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlanalyze" |
650 | dosym "/usr/bin/mysqlcheck${MY_SUFFIX}" "/usr/bin/mysqlanalyze${MY_SUFFIX}" |
630 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlrepair" |
651 | dosym "/usr/bin/mysqlcheck${MY_SUFFIX}" "/usr/bin/mysqlrepair${MY_SUFFIX}" |
631 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqloptimize" |
652 | dosym "/usr/bin/mysqlcheck${MY_SUFFIX}" "/usr/bin/mysqloptimize${MY_SUFFIX}" |
632 | |
653 | |
633 | # Various junk (my-*.cnf moved elsewhere) |
654 | # Various junk (my-*.cnf moved elsewhere) |
634 | rm -Rf "${D}/usr/share/info" |
655 | rm -Rf "${D}/usr/share/info" |
635 | for removeme in "mysql-log-rotate" mysql.server* \ |
656 | for removeme in "mysql-log-rotate" mysql.server* \ |
636 | binary-configure* my-*.cnf mi_test_all* |
657 | binary-configure* my-*.cnf mi_test_all* |
637 | do |
658 | do |
638 | rm -f "${D}"/usr/share/mysql/${removeme} |
659 | rm -f "${D}"/usr/share/mysql/${removeme} |
639 | done |
660 | done |
640 | |
661 | |
|
|
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 | |
641 | # Clean up stuff for a minimal build |
671 | # clean up stuff for a minimal build |
642 | if useq "minimal" ; then |
672 | if useq "minimal" ; then |
643 | rm -Rf "${D}${MY_SHAREDSTATEDIR}"/{mysql-test,sql-bench} |
673 | rm -Rf "${D}${MY_SHAREDSTATEDIR}"/{mysql-test,sql-bench} |
644 | 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} |
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} |
645 | rm -f "${D}/usr/sbin/mysqld" |
675 | rm -f "${D}/usr/sbin/mysqld" |
646 | rm -f "${D}${MY_LIBDIR}"/lib{heap,merge,nisam,my{sys,strings,sqld,isammrg,isam},vio,dbug}.a |
676 | rm -f "${D}${MY_LIBDIR}"/lib{heap,merge,nisam,my{sys,strings,sqld,isammrg,isam},vio,dbug}.a |
647 | fi |
677 | fi |
648 | |
678 | |
|
|
679 | if [[ ${PN} == "mysql-slotted" ]] ; then |
|
|
680 | local notcatched=$(ls "${D}/usr/share/mysql"/*) |
|
|
681 | if [[ -n "${notcatched}" ]] ; then |
|
|
682 | ewarn "QA notice" |
|
|
683 | ewarn "${notcatched} files in /usr/share/mysql" |
|
|
684 | ewarn "bug mysql-herd to manage them" |
|
|
685 | fi |
|
|
686 | rm -Rf "${D}/usr/share/mysql" |
|
|
687 | fi |
|
|
688 | |
649 | # Configuration stuff |
689 | # Configuration stuff |
650 | if mysql_version_is_at_least "4.01.00.00" ; then |
690 | if mysql_version_is_at_least "4.1" ; then |
651 | mysql_mycnf_version="4.1" |
691 | mysql_mycnf_version="4.1" |
652 | else |
692 | else |
653 | mysql_mycnf_version="4.0" |
693 | mysql_mycnf_version="4.0" |
654 | fi |
694 | fi |
655 | insinto "${MY_SYSCONFDIR}" |
695 | insinto "${MY_SYSCONFDIR}" |
656 | doins "scripts/mysqlaccess.conf" |
696 | doins scripts/mysqlaccess.conf |
|
|
697 | sed -e "s!@MY_SUFFIX@!${MY_SUFFIX}!g" \ |
657 | sed -e "s!@DATADIR@!${DATADIR}!g" \ |
698 | -e "s!@DATADIR@!${DATADIR}!g" \ |
658 | "${FILESDIR}/my.cnf-${mysql_mycnf_version}" \ |
699 | "${FILESDIR}/my.cnf-${mysql_mycnf_version}" \ |
659 | > "${TMPDIR}/my.cnf.ok" |
700 | > "${TMPDIR}/my.cnf.ok" |
660 | if mysql_version_is_at_least "4.01.00.00" && useq "latin1" ; then |
701 | if mysql_version_is_at_least "4.1" && useq "latin1" ; then |
661 | sed -e "s|utf8|latin1|g" -i "${TMPDIR}/my.cnf.ok" |
702 | sed -e "s|utf8|latin1|g" -i "${TMPDIR}/my.cnf.ok" |
662 | fi |
703 | fi |
663 | newins "${TMPDIR}/my.cnf.ok" my.cnf |
704 | newins "${TMPDIR}/my.cnf.ok" my.cnf |
664 | |
|
|
665 | insinto "/etc/conf.d" |
|
|
666 | newins "${FILESDIR}/mysql.conf.d" "mysql" |
|
|
667 | mysql_version_is_at_least "5.00.11.00" \ |
|
|
668 | && newins "${FILESDIR}/mysqlmanager.conf.d" "mysqlmanager" |
|
|
669 | |
705 | |
670 | # Minimal builds don't have the MySQL server |
706 | # Minimal builds don't have the MySQL server |
671 | if ! useq "minimal" ; then |
707 | if ! useq "minimal" ; then |
672 | exeinto "/etc/init.d" |
|
|
673 | newexe "${FILESDIR}/mysql.rc6" "mysql" |
|
|
674 | mysql_version_is_at_least "5.00.11.00" \ |
|
|
675 | && newexe "${FILESDIR}/mysqlmanager.rc6" "mysqlmanager" |
|
|
676 | |
|
|
677 | insinto "/etc/logrotate.d" |
|
|
678 | newins "${FILESDIR}/logrotate.mysql" "mysql" |
|
|
679 | |
|
|
680 | # Empty directories ... |
708 | # Empty directories ... |
681 | diropts "-m0750" |
709 | diropts "-m0750" |
682 | if [[ "${PREVIOUS_DATADIR}" != "yes" ]] ; then |
710 | if [[ "${PREVIOUS_DATADIR}" != "yes" ]] ; then |
683 | dodir "${DATADIR}" |
711 | dodir "${DATADIR}" |
684 | keepdir "${DATADIR}" |
712 | keepdir "${DATADIR}" |
… | |
… | |
711 | for script in scripts/mysql* ; do |
739 | for script in scripts/mysql* ; do |
712 | [[ "${script%.sh}" == "${script}" ]] && dodoc "${script}" |
740 | [[ "${script%.sh}" == "${script}" ]] && dodoc "${script}" |
713 | done |
741 | done |
714 | fi |
742 | fi |
715 | |
743 | |
716 | ROOT="${D}" mysql_lib_symlinks |
744 | if [[ ${PN} == "mysql-slotted" ]] ; then |
|
|
745 | # MOVED HERE DUE TO BUG #121445 |
|
|
746 | # create a list of files, to be used |
|
|
747 | # by external utilities |
|
|
748 | mkdir -p "${D}/var/lib/eselect/mysql/" |
|
|
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 | |
|
|
765 | mysql_lib_symlinks "${D}" |
717 | } |
766 | } |
718 | |
767 | |
719 | mysql_pkg_preinst() { |
768 | mysql_pkg_preinst() { |
720 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
769 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
721 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
770 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
… | |
… | |
732 | # Secure the logfiles |
781 | # Secure the logfiles |
733 | touch "${ROOT}${MY_LOGDIR}"/mysql.{log,err} |
782 | touch "${ROOT}${MY_LOGDIR}"/mysql.{log,err} |
734 | chown mysql:mysql "${ROOT}${MY_LOGDIR}"/mysql* |
783 | chown mysql:mysql "${ROOT}${MY_LOGDIR}"/mysql* |
735 | chmod 0660 "${ROOT}${MY_LOGDIR}"/mysql* |
784 | chmod 0660 "${ROOT}${MY_LOGDIR}"/mysql* |
736 | |
785 | |
|
|
786 | # Minimal builds don't have the MySQL server |
737 | if ! useq "minimal" ; then |
787 | if ! useq "minimal" ; then |
738 | # Your friendly public service announcement ... |
788 | docinto "support-files" |
739 | einfo |
789 | for script in \ |
740 | einfo "You might want to run:" |
790 | support-files/my-*.cnf \ |
741 | einfo "\"emerge --config =${CATEGORY}/${PF}\"" |
791 | support-files/magic \ |
742 | einfo "if this is a new install." |
792 | support-files/ndb-config-2-node.ini |
743 | einfo |
793 | do |
744 | mysql_version_is_at_least "5.01.00.00" \ |
794 | dodoc "${script}" |
745 | || einfo "InnoDB is *not* optional as of MySQL-4.0.24, at the request of upstream." |
795 | done |
|
|
796 | |
|
|
797 | docinto "scripts" |
|
|
798 | for script in scripts/mysql* ; do |
|
|
799 | [[ "${script%.sh}" == "${script}" ]] && dodoc "${script}" |
|
|
800 | done |
746 | fi |
801 | fi |
|
|
802 | |
|
|
803 | #einfo "you may want to read slotting upgrade documents in the overlay" |
|
|
804 | if mysql_version_is_at_least "5.1" && useq "pbxt" ; 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" \ |
747 | useq "berkdb" && ewarn "Berkley DB support is deprecated and will be removed in future versions" |
820 | && elog "Berkeley DB support is deprecated and will be removed in future versions!" |
748 | } |
821 | } |
749 | |
822 | |
750 | mysql_pkg_config() { |
823 | mysql_pkg_config() { |
751 | # Make sure the vars are correctly initialized |
824 | # Make sure the vars are correctly initialized |
752 | mysql_init_vars |
825 | mysql_init_vars |
753 | |
826 | |
754 | [[ -z "${DATADIR}" ]] && die "Sorry, unable to find DATADIR" |
827 | [[ -z "${DATADIR}" ]] && die "Sorry, unable to find DATADIR" |
755 | |
828 | |
756 | if built_with_use dev-db/mysql minimal ; then |
829 | if built_with_use ${CATEGORY}/${PN} minimal ; then |
757 | die "Minimal builds do NOT include the MySQL server" |
830 | die "Minimal builds do NOT include the MySQL server" |
758 | fi |
831 | fi |
759 | |
832 | |
760 | local pwd1="a" |
833 | local pwd1="a" |
761 | local pwd2="b" |
834 | local pwd2="b" |
… | |
… | |
797 | [[ -f "${ROOT}/${DATADIR}/mysql/user.frm" ]] \ |
870 | [[ -f "${ROOT}/${DATADIR}/mysql/user.frm" ]] \ |
798 | || die "MySQL databases not installed" |
871 | || die "MySQL databases not installed" |
799 | chown -R mysql:mysql "${ROOT}/${DATADIR}" 2> /dev/null |
872 | chown -R mysql:mysql "${ROOT}/${DATADIR}" 2> /dev/null |
800 | chmod 0750 "${ROOT}/${DATADIR}" 2> /dev/null |
873 | chmod 0750 "${ROOT}/${DATADIR}" 2> /dev/null |
801 | |
874 | |
802 | if mysql_version_is_at_least "4.01.03.00" ; then |
875 | if mysql_version_is_at_least "4.1.3" ; then |
803 | options="--skip-ndbcluster" |
876 | options="--skip-ndbcluster" |
804 | |
877 | |
805 | # Filling timezones, see |
878 | # Filling timezones, see |
806 | # http://dev.mysql.com/doc/mysql/en/time-zone-support.html |
879 | # http://dev.mysql.com/doc/mysql/en/time-zone-support.html |
807 | "${ROOT}/usr/bin/mysql_tzinfo_to_sql" "${ROOT}/usr/share/zoneinfo" > "${sqltmp}" 2>/dev/null |
880 | "${ROOT}/usr/bin/mysql_tzinfo_to_sql" "${ROOT}/usr/share/zoneinfo" > "${sqltmp}" 2>/dev/null |
… | |
… | |
856 | wait %1 |
929 | wait %1 |
857 | einfo "Done" |
930 | einfo "Done" |
858 | } |
931 | } |
859 | |
932 | |
860 | mysql_pkg_postrm() { |
933 | mysql_pkg_postrm() { |
|
|
934 | if [[ ${PN} == "mysql-slotted" ]] ; then |
861 | mysql_lib_symlinks |
935 | mysql_lib_symlinks |
|
|
936 | mysql_clients_link_to_best_version |
|
|
937 | fi |
862 | } |
938 | } |