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