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