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