1 | # Copyright 1999-2005 Gentoo Foundation |
1 | # Copyright 1999-2009 Gentoo Foundation |
2 | # Distributed under the terms of the GNU General Public License v2 |
2 | # Distributed under the terms of the GNU General Public License v2 |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/Attic/mysql.eclass,v 1.14 2006/02/03 08:48:37 vivo Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/Attic/mysql.eclass,v 1.135 2010/03/03 23:57:13 robbat2 Exp $ |
4 | |
4 | |
|
|
5 | # @ECLASS: mysql.eclass |
|
|
6 | # @MAINTAINER: |
5 | # Author: Francesco Riosa <vivo at gentoo.org> |
7 | # Author: Francesco Riosa (Retired) <vivo@gentoo.org> |
6 | # Maintainer: Francesco Riosa <vivo at gentoo.org> |
8 | # Maintainers: MySQL Team <mysql-bugs@gentoo.org> |
|
|
9 | # - Luca Longinotti <chtekk@gentoo.org> |
|
|
10 | # - Robin H. Johnson <robbat2@gentoo.org> |
|
|
11 | # @BLURB: This eclass provides most of the functions for mysql ebuilds |
|
|
12 | # @DESCRIPTION: |
|
|
13 | # The mysql.eclass provides almost all the code to build the mysql ebuilds |
|
|
14 | # including the src_unpack, src_prepare, src_configure, src_compile, |
|
|
15 | # scr_install, pkg_preinst, pkg_postinst, pkg_config and pkg_postrm |
|
|
16 | # phase hooks. |
7 | |
17 | |
8 | inherit eutils flag-o-matic gnuconfig mysql_fx |
18 | WANT_AUTOCONF="latest" |
|
|
19 | WANT_AUTOMAKE="latest" |
9 | |
20 | |
10 | #major, minor only in the slot |
21 | inherit eutils flag-o-matic gnuconfig autotools mysql_fx versionator toolchain-funcs |
11 | SLOT=$(( ${MYSQL_VERSION_ID} / 10000 )) |
|
|
12 | |
22 | |
13 | # shorten the path because the socket path length must be shorter than 107 chars |
23 | # Shorten the path because the socket path length must be shorter than 107 chars |
14 | # and we will run a mysql server during test phase |
24 | # and we will run a mysql server during test phase |
15 | S="${WORKDIR}/${PN}" |
25 | S="${WORKDIR}/mysql" |
16 | |
26 | |
|
|
27 | [[ "${MY_EXTRAS_VER}" == "latest" ]] && MY_EXTRAS_VER="20090228-0714Z" |
|
|
28 | if [[ "${MY_EXTRAS_VER}" == "live" ]]; then |
|
|
29 | EGIT_PROJECT=mysql-extras |
|
|
30 | EGIT_REPO_URI="git://git.overlays.gentoo.org/proj/mysql-extras.git" |
|
|
31 | inherit git |
|
|
32 | fi |
|
|
33 | |
|
|
34 | case "${EAPI:-0}" in |
|
|
35 | 2) |
|
|
36 | EXPORT_FUNCTIONS pkg_setup \ |
|
|
37 | src_unpack src_prepare \ |
|
|
38 | src_configure src_compile \ |
|
|
39 | src_install \ |
|
|
40 | pkg_preinst pkg_postinst \ |
|
|
41 | pkg_config pkg_postrm |
|
|
42 | IUSE_DEFAULT_ON='+' |
|
|
43 | ;; |
|
|
44 | 0 | 1) |
|
|
45 | EXPORT_FUNCTIONS pkg_setup \ |
|
|
46 | src_unpack \ |
|
|
47 | src_compile \ |
|
|
48 | src_install \ |
|
|
49 | pkg_preinst pkg_postinst \ |
|
|
50 | pkg_config pkg_postrm |
|
|
51 | ;; |
|
|
52 | *) |
|
|
53 | die "Unsupported EAPI: ${EAPI}" ;; |
|
|
54 | esac |
|
|
55 | |
|
|
56 | # @ECLASS-VARIABLE: MYSQL_VERSION_ID |
|
|
57 | # @DESCRIPTION: |
|
|
58 | # MYSQL_VERSION_ID will be: |
|
|
59 | # major * 10e6 + minor * 10e4 + micro * 10e2 + gentoo revision number, all [0..99] |
|
|
60 | # This is an important part, because many of the choices the MySQL ebuild will do |
|
|
61 | # depend on this variable. |
|
|
62 | # In particular, the code below transforms a $PVR like "5.0.18-r3" in "5001803" |
|
|
63 | # We also strip off upstream's trailing letter that they use to respin tarballs |
|
|
64 | |
|
|
65 | MYSQL_VERSION_ID="" |
|
|
66 | tpv="${PV%[a-z]}" |
|
|
67 | tpv=( ${tpv//[-._]/ } ) ; tpv[3]="${PVR:${#PV}}" ; tpv[3]="${tpv[3]##*-r}" |
|
|
68 | for vatom in 0 1 2 3 ; do |
|
|
69 | # pad to length 2 |
|
|
70 | tpv[${vatom}]="00${tpv[${vatom}]}" |
|
|
71 | MYSQL_VERSION_ID="${MYSQL_VERSION_ID}${tpv[${vatom}]:0-2}" |
|
|
72 | done |
|
|
73 | # strip leading "0" (otherwise it's considered an octal number by BASH) |
|
|
74 | MYSQL_VERSION_ID=${MYSQL_VERSION_ID##"0"} |
|
|
75 | |
|
|
76 | # @ECLASS-VARIABLE: MYSQL_COMMUNITY_FEATURES |
|
|
77 | # @DESCRIPTION: |
|
|
78 | # Specifiy if community features are available. Possible values are 1 (yes) |
|
|
79 | # and 0 (no). |
|
|
80 | # Community features are available in mysql-community |
|
|
81 | # AND in the re-merged mysql-5.0.82 and newer |
|
|
82 | if [ "${PN}" == "mysql-community" ]; then |
|
|
83 | MYSQL_COMMUNITY_FEATURES=1 |
|
|
84 | elif [ "${PV#5.0}" != "${PV}" ] && mysql_version_is_at_least "5.0.82"; then |
|
|
85 | MYSQL_COMMUNITY_FEATURES=1 |
|
|
86 | elif [ "${PV#5.1}" != "${PV}" ] && mysql_version_is_at_least "5.1.28"; then |
|
|
87 | MYSQL_COMMUNITY_FEATURES=1 |
|
|
88 | elif [ "${PV#5.4}" != "${PV}" ] ; then |
|
|
89 | MYSQL_COMMUNITY_FEATURES=1 |
|
|
90 | elif [ "${PV#5.5}" != "${PV}" ] ; then |
|
|
91 | MYSQL_COMMUNITY_FEATURES=1 |
|
|
92 | elif [ "${PV#6.0}" != "${PV}" ] ; then |
|
|
93 | MYSQL_COMMUNITY_FEATURES=1 |
|
|
94 | else |
|
|
95 | MYSQL_COMMUNITY_FEATURES=0 |
|
|
96 | fi |
|
|
97 | |
|
|
98 | # @ECLASS-VARIABLE: XTRADB_VER |
|
|
99 | # @DESCRIPTION: |
|
|
100 | # Version of the XTRADB storage engine |
|
|
101 | XTRADB_VER="${XTRADB_VER}" |
|
|
102 | |
|
|
103 | # @ECLASS-VARIABLE: PERCONA_VER |
|
|
104 | # @DESCRIPTION: |
|
|
105 | # Designation by PERCONA for a MySQL version to apply an XTRADB release |
|
|
106 | PERCONA_VER="${PERCONA_VER}" |
|
|
107 | |
|
|
108 | # Be warned, *DEPEND are version-dependant |
|
|
109 | # These are used for both runtime and compiletime |
|
|
110 | DEPEND="ssl? ( >=dev-libs/openssl-0.9.6d ) |
|
|
111 | userland_GNU? ( sys-process/procps ) |
|
|
112 | >=sys-apps/sed-4 |
|
|
113 | >=sys-apps/texinfo-4.7-r1 |
|
|
114 | >=sys-libs/readline-4.1 |
|
|
115 | >=sys-libs/zlib-1.2.3" |
|
|
116 | |
|
|
117 | # Having different flavours at the same time is not a good idea |
|
|
118 | for i in "" "-community" ; do |
|
|
119 | [[ "${i}" == ${PN#mysql} ]] || |
|
|
120 | DEPEND="${DEPEND} !dev-db/mysql${i}" |
|
|
121 | done |
|
|
122 | |
|
|
123 | RDEPEND="${DEPEND} |
|
|
124 | !minimal? ( dev-db/mysql-init-scripts ) |
|
|
125 | selinux? ( sec-policy/selinux-mysql )" |
|
|
126 | |
|
|
127 | # compile-time-only |
|
|
128 | mysql_version_is_at_least "5.1" \ |
|
|
129 | || DEPEND="${DEPEND} berkdb? ( sys-apps/ed )" |
|
|
130 | |
|
|
131 | # compile-time-only |
|
|
132 | mysql_version_is_at_least "5.1.12" \ |
|
|
133 | && DEPEND="${DEPEND} >=dev-util/cmake-2.4.3" |
|
|
134 | |
|
|
135 | # dev-perl/DBD-mysql is needed by some scripts installed by MySQL |
|
|
136 | PDEPEND="perl? ( >=dev-perl/DBD-mysql-2.9004 )" |
|
|
137 | |
|
|
138 | # For other stuff to bring us in |
|
|
139 | PDEPEND="${PDEPEND} =virtual/mysql-$(get_version_component_range 1-2 ${PV})" |
|
|
140 | |
|
|
141 | # Work out the default SERVER_URI correctly |
|
|
142 | if [ -z "${SERVER_URI}" ]; then |
|
|
143 | [ -z "${MY_PV}" ] && MY_PV="${PV//_/-}" |
|
|
144 | # The community build is on the mirrors |
|
|
145 | if [ "${MYSQL_COMMUNITY_FEATURES}" == "1" ]; then |
|
|
146 | SERVER_URI="mirror://mysql/Downloads/MySQL-${PV%.*}/mysql-${MY_PV}.tar.gz" |
|
|
147 | # The (old) enterprise source is on the primary site only |
|
|
148 | elif [ "${PN}" == "mysql" ]; then |
|
|
149 | SERVER_URI="ftp://ftp.mysql.com/pub/mysql/src/mysql-${MY_PV}.tar.gz" |
|
|
150 | fi |
|
|
151 | fi |
|
|
152 | |
|
|
153 | # Define correct SRC_URIs |
|
|
154 | SRC_URI="${SERVER_URI}" |
|
|
155 | |
|
|
156 | # Gentoo patches to MySQL |
|
|
157 | [[ ${MY_EXTRAS_VER} != live ]] \ |
|
|
158 | && SRC_URI="${SRC_URI} |
|
|
159 | mirror://gentoo/mysql-extras-${MY_EXTRAS_VER}.tar.bz2 |
|
|
160 | http://g3nt8.org/patches/mysql-extras-${MY_EXTRAS_VER}.tar.bz2 |
|
|
161 | http://dev.gentoo.org/~robbat2/distfiles/mysql-extras-${MY_EXTRAS_VER}.tar.bz2" |
|
|
162 | |
17 | DESCRIPTION="A fast, multi-threaded, multi-user SQL database server" |
163 | DESCRIPTION="A fast, multi-threaded, multi-user SQL database server." |
18 | HOMEPAGE="http://www.mysql.com/" |
164 | HOMEPAGE="http://www.mysql.com/" |
19 | NEWP="${P/_/-}" |
|
|
20 | SRC_URI="mirror://mysql/Downloads/MySQL-${PV%.*}/${NEWP}.tar.gz |
|
|
21 | mirror://gentoo/mysql-extras-20060115.tar.bz2" |
|
|
22 | LICENSE="GPL-2" |
165 | LICENSE="GPL-2" |
23 | IUSE="big-tables berkdb debug minimal perl selinux srvdir ssl static" |
166 | SLOT="0" |
24 | RESTRICT="primaryuri confcache" |
167 | IUSE="big-tables debug embedded minimal ${IUSE_DEFAULT_ON}perl selinux ssl static test" |
25 | DEPEND="app-admin/eselect-mysql" |
|
|
26 | |
168 | |
|
|
169 | mysql_version_is_at_least "4.1" \ |
|
|
170 | && IUSE="${IUSE} latin1" |
|
|
171 | |
27 | mysql_version_is_at_least "4.01.03.00" \ |
172 | mysql_version_is_at_least "4.1.3" \ |
28 | && IUSE="${IUSE} cluster extraengine" |
173 | && IUSE="${IUSE} cluster extraengine" |
29 | |
174 | |
|
|
175 | mysql_version_is_at_least "5.0" \ |
|
|
176 | || IUSE="${IUSE} raid" |
|
|
177 | |
30 | mysql_version_is_at_least "5.00.18.00" \ |
178 | mysql_version_is_at_least "5.0.18" \ |
31 | && IUSE="${IUSE} max-idx-128" |
179 | && IUSE="${IUSE} max-idx-128" |
32 | |
180 | |
33 | mysql_version_is_at_least "5.01.00.00" \ |
181 | mysql_version_is_at_least "5.1" \ |
|
|
182 | || IUSE="${IUSE} berkdb" |
|
|
183 | |
|
|
184 | [ "${MYSQL_COMMUNITY_FEATURES}" == "1" ] \ |
|
|
185 | && IUSE="${IUSE} ${IUSE_DEFAULT_ON}community profiling" |
|
|
186 | |
|
|
187 | # PBXT engine |
|
|
188 | mysql_version_is_at_least "5.1.12" \ |
|
|
189 | && [[ -n "${PBXT_VERSION}" ]] \ |
|
|
190 | && PBXT_P="pbxt-${PBXT_VERSION}" \ |
|
|
191 | && PBXT_SRC_URI="http://www.primebase.org/download/${PBXT_P}.tar.gz mirror://sourceforge/pbxt/${PBXT_P}.tar.gz" \ |
|
|
192 | && SRC_URI="${SRC_URI} pbxt? ( ${PBXT_SRC_URI} )" \ |
|
|
193 | && IUSE="${IUSE} pbxt" |
|
|
194 | |
|
|
195 | # Get the percona tarball if XTRADB_VER and PERCONA_VER are both set |
|
|
196 | mysql_version_is_at_least "5.1.26" \ |
|
|
197 | && [[ -n "${XTRADB_VER}" && -n "${PERCONA_VER}" ]] \ |
|
|
198 | && XTRADB_P="percona-xtradb-${XTRADB_VER}" \ |
|
|
199 | && XTRADB_SRC_URI_COMMON="${PERCONA_VER}/source/${XTRADB_P}.tar.gz" \ |
|
|
200 | && XTRADB_SRC_URI1="http://www.percona.com/percona-builds/xtradb/${XTRADB_SRC_URI_COMMON}" \ |
|
|
201 | && XTRADB_SRC_URI2="http://www.percona.com/${PN}/xtradb/${XTRADB_SRC_URI_COMMON}" \ |
|
|
202 | && SRC_URI="${SRC_URI} xtradb? ( ${XTRADB_SRC_URI1} ${XTRADB_SRC_URI2} )" \ |
34 | && IUSE="${IUSE} innodb" |
203 | && IUSE="${IUSE} xtradb" |
35 | |
204 | |
36 | EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_preinst pkg_postinst pkg_config pkg_postrm |
205 | # |
|
|
206 | # HELPER FUNCTIONS: |
|
|
207 | # |
37 | |
208 | |
|
|
209 | # @FUNCTION: mysql_disable_test |
|
|
210 | # @DESCRIPTION: |
|
|
211 | # Helper function to disable specific tests. |
|
|
212 | mysql_disable_test() { |
|
|
213 | local rawtestname testname testsuite reason mysql_disable_file |
|
|
214 | rawtestname="${1}" ; shift |
|
|
215 | reason="${@}" |
|
|
216 | ewarn "test '${rawtestname}' disabled: '${reason}'" |
|
|
217 | |
|
|
218 | testsuite="${rawtestname/.*}" |
|
|
219 | testname="${rawtestname/*.}" |
|
|
220 | mysql_disable_file="${S}/mysql-test/t/disabled.def" |
|
|
221 | #einfo "rawtestname=${rawtestname} testname=${testname} testsuite=${testsuite}" |
|
|
222 | echo ${testname} : ${reason} >> "${mysql_disable_file}" |
|
|
223 | |
|
|
224 | # ${S}/mysql-tests/t/disabled.def |
|
|
225 | # |
|
|
226 | # ${S}/mysql-tests/suite/federated/disabled.def |
|
|
227 | # |
|
|
228 | # ${S}/mysql-tests/suite/jp/t/disabled.def |
|
|
229 | # ${S}/mysql-tests/suite/ndb/t/disabled.def |
|
|
230 | # ${S}/mysql-tests/suite/rpl/t/disabled.def |
|
|
231 | # ${S}/mysql-tests/suite/parts/t/disabled.def |
|
|
232 | # ${S}/mysql-tests/suite/rpl_ndb/t/disabled.def |
|
|
233 | # ${S}/mysql-tests/suite/ndb_team/t/disabled.def |
|
|
234 | # ${S}/mysql-tests/suite/binlog/t/disabled.def |
|
|
235 | # ${S}/mysql-tests/suite/innodb/t/disabled.def |
|
|
236 | if [ -n "${testsuite}" ]; then |
|
|
237 | for mysql_disable_file in \ |
|
|
238 | ${S}/mysql-test/suite/${testsuite}/disabled.def \ |
|
|
239 | ${S}/mysql-test/suite/${testsuite}/t/disabled.def \ |
|
|
240 | FAILED ; do |
|
|
241 | [ -f "${mysql_disable_file}" ] && break |
|
|
242 | done |
|
|
243 | if [ "${mysql_disabled_file}" != "FAILED" ]; then |
|
|
244 | echo "${testname} : ${reason}" >> "${mysql_disable_file}" |
|
|
245 | else |
|
|
246 | ewarn "Could not find testsuite disabled.def location for ${rawtestname}" |
|
|
247 | fi |
|
|
248 | fi |
|
|
249 | } |
|
|
250 | |
|
|
251 | # @FUNCTION: mysql_init_vars |
|
|
252 | # @DESCRIPTION: |
38 | # void mysql_init_vars() |
253 | # void mysql_init_vars() |
39 | # |
|
|
40 | # initialize global variables |
254 | # Initialize global variables |
41 | # 2005-11-19 <vivo at gentoo.org> |
255 | # 2005-11-19 <vivo@gentoo.org> |
42 | mysql_init_vars() { |
256 | mysql_init_vars() { |
43 | |
|
|
44 | if [[ ${SLOT} -eq 0 ]] ; then |
|
|
45 | MY_SUFFIX="" |
|
|
46 | else |
|
|
47 | MY_SUFFIX=${MY_SUFFIX:-"-${SLOT}"} |
|
|
48 | fi |
|
|
49 | MY_SHAREDSTATEDIR=${MY_SHAREDSTATEDIR:-"/usr/share/mysql${MY_SUFFIX}"} |
257 | MY_SHAREDSTATEDIR=${MY_SHAREDSTATEDIR="/usr/share/mysql"} |
50 | MY_SYSCONFDIR=${MY_SYSCONFDIR="/etc/mysql${MY_SUFFIX}"} |
258 | MY_SYSCONFDIR=${MY_SYSCONFDIR="/etc/mysql"} |
51 | MY_LIBDIR=${MY_LIBDIR="/usr/$(get_libdir)/mysql${MY_SUFFIX}"} |
259 | MY_LIBDIR=${MY_LIBDIR="/usr/$(get_libdir)/mysql"} |
52 | MY_LOCALSTATEDIR=${MY_LOCALSTATEDIR="/var/lib/mysql${MY_SUFFIX}"} |
260 | MY_LOCALSTATEDIR=${MY_LOCALSTATEDIR="/var/lib/mysql"} |
53 | MY_LOGDIR=${MY_LOGDIR="/var/log/mysql${MY_SUFFIX}"} |
261 | MY_LOGDIR=${MY_LOGDIR="/var/log/mysql"} |
54 | MY_INCLUDEDIR=${MY_INCLUDEDIR="/usr/include/mysql${MY_SUFFIX}"} |
262 | MY_INCLUDEDIR=${MY_INCLUDEDIR="/usr/include/mysql"} |
55 | |
263 | |
56 | if [ -z "${DATADIR}" ]; then |
264 | if [[ -z "${MY_DATADIR}" ]] ; then |
57 | DATADIR="" |
265 | MY_DATADIR="" |
58 | if [ -f "${SYSCONFDIR}/my.cnf" ] ; then |
266 | if [[ -f "${MY_SYSCONFDIR}/my.cnf" ]] ; then |
59 | DATADIR=`"my_print_defaults${MY_SUFFIX}" mysqld 2>/dev/null | sed -ne '/datadir/s|^--datadir=||p' | tail -n1` |
267 | MY_DATADIR=`"my_print_defaults" mysqld 2>/dev/null \ |
|
|
268 | | sed -ne '/datadir/s|^--datadir=||p' \ |
|
|
269 | | tail -n1` |
60 | if [ -z "${DATADIR}" ]; then |
270 | if [[ -z "${MY_DATADIR}" ]] ; then |
61 | if useq "srvdir" ; then |
|
|
62 | DATADIR="/srv/localhost/mysql/datadir" |
|
|
63 | else |
|
|
64 | DATADIR=`grep ^datadir "${SYSCONFDIR}/my.cnf" | sed -e 's/.*=\s*//'` |
271 | MY_DATADIR=`grep ^datadir "${MY_SYSCONFDIR}/my.cnf" \ |
65 | fi |
272 | | sed -e 's/.*=\s*//' \ |
|
|
273 | | tail -n1` |
66 | fi |
274 | fi |
67 | fi |
275 | fi |
68 | if [ -z "${DATADIR}" ]; then |
276 | if [[ -z "${MY_DATADIR}" ]] ; then |
69 | DATADIR="${MY_LOCALSTATEDIR}" |
277 | MY_DATADIR="${MY_LOCALSTATEDIR}" |
70 | einfo "Using default DATADIR" |
278 | einfo "Using default MY_DATADIR" |
71 | fi |
279 | fi |
72 | einfo "MySQL DATADIR is ${DATADIR}" |
280 | elog "MySQL MY_DATADIR is ${MY_DATADIR}" |
73 | |
281 | |
74 | if [ -z "${PREVIOUS_DATADIR}" ] ; then |
282 | if [[ -z "${PREVIOUS_DATADIR}" ]] ; then |
75 | if [ -a "${DATADIR}" ] ; then |
283 | if [[ -e "${MY_DATADIR}" ]] ; then |
76 | ewarn "Previous datadir found, it's YOUR job to change" |
284 | # If you get this and you're wondering about it, see bug #207636 |
77 | ewarn "ownership and have care of it" |
285 | elog "MySQL datadir found in ${MY_DATADIR}" |
|
|
286 | elog "A new one will not be created." |
78 | PREVIOUS_DATADIR="yes" |
287 | PREVIOUS_DATADIR="yes" |
79 | export PREVIOUS_DATADIR |
|
|
80 | else |
288 | else |
81 | PREVIOUS_DATADIR="no" |
289 | PREVIOUS_DATADIR="no" |
82 | export PREVIOUS_DATADIR |
|
|
83 | fi |
290 | fi |
|
|
291 | export PREVIOUS_DATADIR |
|
|
292 | fi |
|
|
293 | else |
|
|
294 | if [[ ${EBUILD_PHASE} == "config" ]]; then |
|
|
295 | local new_MY_DATADIR |
|
|
296 | new_MY_DATADIR=`"my_print_defaults" mysqld 2>/dev/null \ |
|
|
297 | | sed -ne '/datadir/s|^--datadir=||p' \ |
|
|
298 | | tail -n1` |
|
|
299 | |
|
|
300 | if [[ ( -n "${new_MY_DATADIR}" ) && ( "${new_MY_DATADIR}" != "${MY_DATADIR}" ) ]]; then |
|
|
301 | ewarn "MySQL MY_DATADIR has changed" |
|
|
302 | ewarn "from ${MY_DATADIR}" |
|
|
303 | ewarn "to ${new_MY_DATADIR}" |
|
|
304 | MY_DATADIR="${new_MY_DATADIR}" |
84 | fi |
305 | fi |
85 | fi |
306 | fi |
|
|
307 | fi |
86 | |
308 | |
|
|
309 | MY_SOURCEDIR=${SERVER_URI##*/} |
|
|
310 | MY_SOURCEDIR=${MY_SOURCEDIR%.tar*} |
|
|
311 | |
87 | export MY_SUFFIX MY_SHAREDSTATEDIR MY_SYSCONFDIR |
312 | export MY_SHAREDSTATEDIR MY_SYSCONFDIR |
88 | export MY_LIBDIR MY_LOCALSTATEDIR MY_LOGDIR |
313 | export MY_LIBDIR MY_LOCALSTATEDIR MY_LOGDIR |
89 | export MY_INCLUDEDIR |
314 | export MY_INCLUDEDIR MY_DATADIR MY_SOURCEDIR |
90 | export DATADIR |
|
|
91 | } |
315 | } |
92 | |
316 | |
|
|
317 | configure_minimal() { |
|
|
318 | # These are things we exclude from a minimal build, please |
|
|
319 | # note that the server actually does get built and installed, |
|
|
320 | # but we then delete it before packaging. |
|
|
321 | local minimal_exclude_list="server embedded-server extra-tools innodb bench berkeley-db row-based-replication readline" |
|
|
322 | |
|
|
323 | for i in ${minimal_exclude_list} ; do |
|
|
324 | myconf="${myconf} --without-${i}" |
|
|
325 | done |
|
|
326 | myconf="${myconf} --with-extra-charsets=none" |
|
|
327 | myconf="${myconf} --enable-local-infile" |
|
|
328 | |
|
|
329 | if use static ; then |
|
|
330 | myconf="${myconf} --with-client-ldflags=-all-static" |
|
|
331 | myconf="${myconf} --disable-shared --with-pic" |
|
|
332 | else |
|
|
333 | myconf="${myconf} --enable-shared --enable-static" |
|
|
334 | fi |
|
|
335 | |
|
|
336 | if mysql_version_is_at_least "4.1" && ! use latin1 ; then |
|
|
337 | myconf="${myconf} --with-charset=utf8" |
|
|
338 | myconf="${myconf} --with-collation=utf8_general_ci" |
|
|
339 | else |
|
|
340 | myconf="${myconf} --with-charset=latin1" |
|
|
341 | myconf="${myconf} --with-collation=latin1_swedish_ci" |
|
|
342 | fi |
|
|
343 | } |
|
|
344 | |
|
|
345 | configure_common() { |
|
|
346 | myconf="${myconf} $(use_with big-tables)" |
|
|
347 | myconf="${myconf} --enable-local-infile" |
|
|
348 | myconf="${myconf} --with-extra-charsets=all" |
|
|
349 | myconf="${myconf} --with-mysqld-user=mysql" |
|
|
350 | myconf="${myconf} --with-server" |
|
|
351 | myconf="${myconf} --with-unix-socket-path=/var/run/mysqld/mysqld.sock" |
|
|
352 | myconf="${myconf} --without-libwrap" |
|
|
353 | |
|
|
354 | if use static ; then |
|
|
355 | myconf="${myconf} --with-mysqld-ldflags=-all-static" |
|
|
356 | myconf="${myconf} --with-client-ldflags=-all-static" |
|
|
357 | myconf="${myconf} --disable-shared --with-pic" |
|
|
358 | else |
|
|
359 | myconf="${myconf} --enable-shared --enable-static" |
|
|
360 | fi |
|
|
361 | |
|
|
362 | if use debug ; then |
|
|
363 | myconf="${myconf} --with-debug=full" |
|
|
364 | else |
|
|
365 | myconf="${myconf} --without-debug" |
|
|
366 | mysql_version_is_at_least "4.1.3" \ |
|
|
367 | && use cluster \ |
|
|
368 | && myconf="${myconf} --without-ndb-debug" |
|
|
369 | fi |
|
|
370 | |
|
|
371 | if [ -n "${MYSQL_DEFAULT_CHARSET}" -a -n "${MYSQL_DEFAULT_COLLATION}" ]; then |
|
|
372 | ewarn "You are using a custom charset of ${MYSQL_DEFAULT_CHARSET}" |
|
|
373 | ewarn "and a collation of ${MYSQL_DEFAULT_COLLATION}." |
|
|
374 | ewarn "You MUST file bugs without these variables set." |
|
|
375 | myconf="${myconf} --with-charset=${MYSQL_DEFAULT_CHARSET}" |
|
|
376 | myconf="${myconf} --with-collation=${MYSQL_DEFAULT_COLLATION}" |
|
|
377 | elif mysql_version_is_at_least "4.1" && ! use latin1 ; then |
|
|
378 | myconf="${myconf} --with-charset=utf8" |
|
|
379 | myconf="${myconf} --with-collation=utf8_general_ci" |
|
|
380 | else |
|
|
381 | myconf="${myconf} --with-charset=latin1" |
|
|
382 | myconf="${myconf} --with-collation=latin1_swedish_ci" |
|
|
383 | fi |
|
|
384 | |
|
|
385 | if use embedded ; then |
|
|
386 | myconf="${myconf} --with-embedded-privilege-control" |
|
|
387 | myconf="${myconf} --with-embedded-server" |
|
|
388 | else |
|
|
389 | myconf="${myconf} --without-embedded-privilege-control" |
|
|
390 | myconf="${myconf} --without-embedded-server" |
|
|
391 | fi |
|
|
392 | |
|
|
393 | } |
|
|
394 | |
|
|
395 | configure_40_41_50() { |
|
|
396 | myconf="${myconf} $(use_with perl bench)" |
|
|
397 | myconf="${myconf} --enable-assembler" |
|
|
398 | myconf="${myconf} --with-extra-tools" |
|
|
399 | myconf="${myconf} --with-innodb" |
|
|
400 | myconf="${myconf} --without-readline" |
|
|
401 | mysql_version_is_at_least "5.0" || myconf="${myconf} $(use_with raid)" |
|
|
402 | |
|
|
403 | # --with-vio is not needed anymore, it's on by default and |
|
|
404 | # has been removed from configure |
|
|
405 | if use ssl ; then |
|
|
406 | mysql_version_is_at_least "5.0.4" || myconf="${myconf} --with-vio" |
|
|
407 | fi |
|
|
408 | |
|
|
409 | if mysql_version_is_at_least "5.1.11" ; then |
|
|
410 | myconf="${myconf} $(use_with ssl /usr)" |
|
|
411 | else |
|
|
412 | myconf="${myconf} $(use_with ssl openssl)" |
|
|
413 | fi |
|
|
414 | |
|
|
415 | if mysql_version_is_at_least "5.0.60" ; then |
|
|
416 | if use berkdb ; then |
|
|
417 | elog "Berkeley DB support was disabled due to build failures" |
|
|
418 | elog "on multiple arches, go to a version earlier than 5.0.60" |
|
|
419 | elog "if you want it again. Gentoo bug #224067." |
|
|
420 | fi |
|
|
421 | myconf="${myconf} --without-berkeley-db" |
|
|
422 | elif use berkdb ; then |
|
|
423 | # The following fix is due to a bug with bdb on SPARC's. See: |
|
|
424 | # http://www.geocrawler.com/mail/msg.php3?msg_id=4754814&list=8 |
|
|
425 | # It comes down to non-64-bit safety problems. |
|
|
426 | if use alpha || use amd64 || use hppa || use mips || use sparc ; then |
|
|
427 | elog "Berkeley DB support was disabled due to compatibility issues on this arch" |
|
|
428 | myconf="${myconf} --without-berkeley-db" |
|
|
429 | else |
|
|
430 | myconf="${myconf} --with-berkeley-db=./bdb" |
|
|
431 | fi |
|
|
432 | else |
|
|
433 | myconf="${myconf} --without-berkeley-db" |
|
|
434 | fi |
|
|
435 | |
|
|
436 | if mysql_version_is_at_least "4.1.3" ; then |
|
|
437 | myconf="${myconf} --with-geometry" |
|
|
438 | myconf="${myconf} $(use_with cluster ndbcluster)" |
|
|
439 | fi |
|
|
440 | |
|
|
441 | if mysql_version_is_at_least "4.1.3" && use extraengine ; then |
|
|
442 | # http://dev.mysql.com/doc/mysql/en/archive-storage-engine.html |
|
|
443 | myconf="${myconf} --with-archive-storage-engine" |
|
|
444 | |
|
|
445 | # http://dev.mysql.com/doc/mysql/en/csv-storage-engine.html |
|
|
446 | myconf="${myconf} --with-csv-storage-engine" |
|
|
447 | |
|
|
448 | # http://dev.mysql.com/doc/mysql/en/blackhole-storage-engine.html |
|
|
449 | myconf="${myconf} --with-blackhole-storage-engine" |
|
|
450 | |
|
|
451 | # http://dev.mysql.com/doc/mysql/en/federated-storage-engine.html |
|
|
452 | # http://dev.mysql.com/doc/mysql/en/federated-description.html |
|
|
453 | # http://dev.mysql.com/doc/mysql/en/federated-limitations.html |
|
|
454 | if mysql_version_is_at_least "5.0.3" ; then |
|
|
455 | elog "Before using the Federated storage engine, please be sure to read" |
|
|
456 | elog "http://dev.mysql.com/doc/mysql/en/federated-limitations.html" |
|
|
457 | myconf="${myconf} --with-federated-storage-engine" |
|
|
458 | fi |
|
|
459 | fi |
|
|
460 | |
|
|
461 | if [ "${MYSQL_COMMUNITY_FEATURES}" == "1" ]; then |
|
|
462 | myconf="${myconf} `use_enable community community-features`" |
|
|
463 | if use community; then |
|
|
464 | myconf="${myconf} `use_enable profiling`" |
|
|
465 | else |
|
|
466 | myconf="${myconf} --disable-profiling" |
|
|
467 | fi |
|
|
468 | fi |
|
|
469 | |
|
|
470 | mysql_version_is_at_least "5.0.18" \ |
|
|
471 | && use max-idx-128 \ |
|
|
472 | && myconf="${myconf} --with-max-indexes=128" |
|
|
473 | } |
|
|
474 | |
|
|
475 | configure_51() { |
|
|
476 | # TODO: !!!! readd --without-readline |
|
|
477 | # the failure depend upon config/ac-macros/readline.m4 checking into |
|
|
478 | # readline.h instead of history.h |
|
|
479 | myconf="${myconf} $(use_with ssl)" |
|
|
480 | myconf="${myconf} --enable-assembler" |
|
|
481 | myconf="${myconf} --with-geometry" |
|
|
482 | myconf="${myconf} --with-readline" |
|
|
483 | myconf="${myconf} --with-zlib-dir=/usr/" |
|
|
484 | myconf="${myconf} --without-pstack" |
|
|
485 | use max-idx-128 && myconf="${myconf} --with-max-indexes=128" |
|
|
486 | |
|
|
487 | # 5.1 introduces a new way to manage storage engines (plugins) |
|
|
488 | # like configuration=none |
|
|
489 | local plugins="csv,myisam,myisammrg,heap" |
|
|
490 | if use extraengine ; then |
|
|
491 | # like configuration=max-no-ndb, archive and example removed in 5.1.11 |
|
|
492 | # not added yet: ibmdb2i |
|
|
493 | # Not supporting as examples: example,daemon_example,ftexample |
|
|
494 | plugins="${plugins},archive,blackhole,federated,partition" |
|
|
495 | |
|
|
496 | elog "Before using the Federated storage engine, please be sure to read" |
|
|
497 | elog "http://dev.mysql.com/doc/refman/5.1/en/federated-limitations.html" |
|
|
498 | fi |
|
|
499 | |
|
|
500 | # Upstream specifically requests that InnoDB always be built: |
|
|
501 | # - innobase, innodb_plugin |
|
|
502 | # Build falcon if available for 6.x series. |
|
|
503 | for i in innobase innodb_plugin falcon ; do |
|
|
504 | [ -e "${S}"/storage/${i} ] && plugins="${plugins},${i}" |
|
|
505 | done |
|
|
506 | |
|
|
507 | # like configuration=max-no-ndb |
|
|
508 | if use cluster ; then |
|
|
509 | plugins="${plugins},ndbcluster" |
|
|
510 | myconf="${myconf} --with-ndb-binlog" |
|
|
511 | fi |
|
|
512 | |
|
|
513 | myconf="${myconf} --with-plugins=${plugins}" |
|
|
514 | } |
|
|
515 | |
|
|
516 | xtradb_applicable() { |
|
|
517 | mysql_version_is_at_least "5.1.26" \ |
|
|
518 | && [[ -n "${XTRADB_VER}" && -n "${PERCONA_VER}" ]] \ |
|
|
519 | && use xtradb |
|
|
520 | return $? |
|
|
521 | } |
|
|
522 | |
|
|
523 | pbxt_applicable() { |
|
|
524 | mysql_version_is_at_least "5.1.12" \ |
|
|
525 | && [[ -n "${PBXT_VERSION}" ]] \ |
|
|
526 | && use pbxt |
|
|
527 | return $? |
|
|
528 | } |
|
|
529 | |
|
|
530 | pbxt_src_configure() { |
|
|
531 | mysql_init_vars |
|
|
532 | |
|
|
533 | pushd "${WORKDIR}/pbxt-${PBXT_VERSION}" &>/dev/null |
|
|
534 | |
|
|
535 | einfo "Reconfiguring dir '${PWD}'" |
|
|
536 | AT_GNUCONF_UPDATE="yes" eautoreconf |
|
|
537 | |
|
|
538 | local myconf="" |
|
|
539 | myconf="${myconf} --with-mysql=${S} --libdir=${MY_LIBDIR}" |
|
|
540 | use debug && myconf="${myconf} --with-debug=full" |
|
|
541 | # TODO: is it safe/needed to use econf here ? |
|
|
542 | ./configure ${myconf} || die "Problem configuring PBXT storage engine" |
|
|
543 | } |
|
|
544 | |
|
|
545 | pbxt_src_compile() { |
|
|
546 | # Be backwards compatible for now |
|
|
547 | if [[ $EAPI != 2 ]]; then |
|
|
548 | pbxt_src_configure |
|
|
549 | fi |
|
|
550 | # TODO: is it safe/needed to use emake here ? |
|
|
551 | make || die "Problem making PBXT storage engine (${myconf})" |
|
|
552 | |
|
|
553 | popd |
|
|
554 | # TODO: modify test suite for PBXT |
|
|
555 | } |
|
|
556 | |
|
|
557 | pbxt_src_install() { |
|
|
558 | pushd "${WORKDIR}/pbxt-${PBXT_VERSION}" &>/dev/null |
|
|
559 | emake install DESTDIR="${D}" || die "Failed to install PBXT" |
|
|
560 | popd |
|
|
561 | } |
|
|
562 | |
|
|
563 | # |
|
|
564 | # EBUILD FUNCTIONS |
|
|
565 | # |
|
|
566 | # @FUNCTION: mysql_pkg_setup |
|
|
567 | # @DESCRIPTION: |
|
|
568 | # Perform some basic tests and tasks during pkg_setup phase: |
|
|
569 | # die if FEATURES="test", USE="-minimal" and not using FEATURES="userpriv" |
|
|
570 | # check for conflicting use flags |
|
|
571 | # create new user and group for mysql |
|
|
572 | # warn about deprecated features |
93 | mysql_pkg_setup() { |
573 | mysql_pkg_setup() { |
|
|
574 | if hasq test ${FEATURES} ; then |
|
|
575 | if ! use minimal ; then |
|
|
576 | if [[ $UID -eq 0 ]]; then |
|
|
577 | eerror "Testing with FEATURES=-userpriv is no longer supported by upstream. Tests MUST be run as non-root." |
|
|
578 | fi |
|
|
579 | fi |
|
|
580 | fi |
94 | |
581 | |
|
|
582 | # Check for USE flag problems in pkg_setup |
|
|
583 | if use static && use ssl ; then |
|
|
584 | eerror "MySQL does not support being built statically with SSL support enabled!" |
|
|
585 | die "MySQL does not support being built statically with SSL support enabled!" |
|
|
586 | fi |
|
|
587 | |
|
|
588 | if ! mysql_version_is_at_least "5.0" \ |
|
|
589 | && use raid \ |
|
|
590 | && use static ; then |
|
|
591 | eerror "USE flags 'raid' and 'static' conflict, you cannot build MySQL statically" |
|
|
592 | eerror "with RAID support enabled." |
|
|
593 | die "USE flags 'raid' and 'static' conflict!" |
|
|
594 | fi |
|
|
595 | |
|
|
596 | if mysql_version_is_at_least "4.1.3" \ |
|
|
597 | && ( use cluster || use extraengine ) \ |
|
|
598 | && use minimal ; then |
|
|
599 | eerror "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
|
|
600 | die "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
|
|
601 | fi |
|
|
602 | |
|
|
603 | # Bug #290570 fun. Upstream made us need a fairly new GCC4. |
|
|
604 | if mysql_version_is_at_least "5.0.83" ; then |
|
|
605 | GCC_VER=$(gcc-version) |
|
|
606 | case ${GCC_VER} in |
|
|
607 | 2*|3*|4.0|4.1|4.2) die "Active GCC too old! Must have at least GCC4.3" ;; |
|
|
608 | esac |
|
|
609 | fi |
|
|
610 | |
|
|
611 | # This should come after all of the die statements |
95 | enewgroup mysql 60 || die "problem adding group mysql" |
612 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
96 | enewuser mysql 60 -1 /dev/null mysql \ |
613 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
97 | || die "problem adding user mysql" |
|
|
98 | } |
|
|
99 | |
614 | |
|
|
615 | mysql_check_version_range "4.0 to 5.0.99.99" \ |
|
|
616 | && use berkdb \ |
|
|
617 | && elog "Berkeley DB support is deprecated and will be removed in future versions!" |
|
|
618 | |
|
|
619 | if [ "${PN}" != "mysql-cluster" ] && use cluster; then |
|
|
620 | ewarn "Upstream has noted that the NDB cluster support in the 5.0 and" |
|
|
621 | ewarn "5.1 series should NOT be put into production. In the near" |
|
|
622 | ewarn "future, it will be disabled from building." |
|
|
623 | ewarn "" |
|
|
624 | ewarn "If you need NDB support, you should instead move to the new" |
|
|
625 | ewarn "mysql-cluster package that represents that upstream NDB" |
|
|
626 | ewarn "development." |
|
|
627 | fi |
|
|
628 | } |
|
|
629 | |
|
|
630 | # @FUNCTION: mysql_src_unpack |
|
|
631 | # @DESCRIPTION: |
|
|
632 | # Unpack the source code and call mysql_src_prepare for EAPI < 2. |
100 | mysql_src_unpack() { |
633 | mysql_src_unpack() { |
101 | |
634 | # Initialize the proper variables first |
102 | mysql_init_vars |
635 | mysql_init_vars |
103 | |
636 | |
104 | if useq static && useq ssl; then |
|
|
105 | local msg="MySQL does not support building statically with SSL support" |
|
|
106 | eerror "${msg}" |
|
|
107 | die "${msg}" |
|
|
108 | fi |
|
|
109 | |
|
|
110 | if mysql_version_is_at_least "4.01.03.00" \ |
|
|
111 | && useq cluster \ |
|
|
112 | || useq extraengine \ |
|
|
113 | && useq minimal ; then |
|
|
114 | die "USEs cluster, extraengine conflicts with \"minimal\"" |
|
|
115 | fi |
|
|
116 | |
|
|
117 | unpack ${A} || die |
637 | unpack ${A} |
|
|
638 | # Grab the patches |
|
|
639 | [[ "${MY_EXTRAS_VER}" == "live" ]] && S="${WORKDIR}/mysql-extras" git_src_unpack |
118 | |
640 | |
119 | mv -f "${WORKDIR}/${NEWP}" "${S}" |
641 | mv -f "${WORKDIR}/${MY_SOURCEDIR}" "${S}" |
|
|
642 | |
|
|
643 | # Be backwards compatible for now |
|
|
644 | case ${EAPI:-0} in |
|
|
645 | 2) : ;; |
|
|
646 | 0 | 1) mysql_src_prepare ;; |
|
|
647 | esac |
|
|
648 | } |
|
|
649 | |
|
|
650 | # @FUNCTION: mysql_src_prepare |
|
|
651 | # @DESCRIPTION: |
|
|
652 | # Apply patches to the source code and remove unneeded bundled libs. |
|
|
653 | mysql_src_prepare() { |
120 | cd "${S}" |
654 | cd "${S}" |
121 | |
655 | |
|
|
656 | # Apply the patches for this MySQL version |
122 | EPATCH_SUFFIX="patch" |
657 | EPATCH_SUFFIX="patch" |
123 | mkdir -p "${EPATCH_SOURCE}" || die "unable to create epatch directory" |
658 | mkdir -p "${EPATCH_SOURCE}" || die "Unable to create epatch directory" |
|
|
659 | # Clean out old items |
|
|
660 | rm -f "${EPATCH_SOURCE}"/* |
|
|
661 | # Now link in right patches |
124 | mysql_mv_patches |
662 | mysql_mv_patches |
125 | epatch || die "failed to apply all patches" |
663 | # And apply |
|
|
664 | epatch |
126 | |
665 | |
|
|
666 | # last -fPIC fixup, per bug #305873 |
|
|
667 | i="${S}"/storage/innodb_plugin/plug.in |
|
|
668 | [ -f "${i}" ] && sed -i -e '/CFLAGS/s,-prefer-non-pic,,g' "${i}" |
|
|
669 | |
127 | # additional check, remove bundled zlib |
670 | # Additional checks, remove bundled zlib |
128 | rm -f "${S}/zlib/"*.[ch] |
671 | rm -f "${S}/zlib/"*.[ch] |
129 | sed -i -e "s/zlib\/Makefile dnl/dnl zlib\/Makefile/" "${S}/configure.in" |
672 | sed -i -e "s/zlib\/Makefile dnl/dnl zlib\/Makefile/" "${S}/configure.in" |
130 | rm -f scripts/mysqlbug |
673 | rm -f "scripts/mysqlbug" |
131 | |
|
|
132 | # Multilib issue with zlib detection |
|
|
133 | mysql_version_is_at_least "5.00.15.00" \ |
|
|
134 | && sed -i -e "s:zlib_dir/lib:zlib_dir/$(get_libdir):g" \ |
|
|
135 | "${S}/config/ac-macros/zlib.m4" |
|
|
136 | |
674 | |
137 | # Make charsets install in the right place |
675 | # Make charsets install in the right place |
138 | find . -name 'Makefile.am' \ |
676 | find . -name 'Makefile.am' \ |
139 | -exec sed --in-place -e 's!$(pkgdatadir)!'${MY_SHAREDSTATEDIR}'!g' {} \; |
677 | -exec sed --in-place -e 's!$(pkgdatadir)!'${MY_SHAREDSTATEDIR}'!g' {} \; |
140 | |
678 | |
141 | # Manage mysqlmanager |
|
|
142 | mysql_version_is_at_least "5.00.15.00" \ |
679 | if mysql_version_is_at_least "4.1" ; then |
143 | && sed -i -e "s!@GENTOO_EXT@!${MY_SUFFIX}!g" \ |
|
|
144 | -e "s!@GENTOO_SOCK_PATH@!var/run/mysqld!g" \ |
|
|
145 | "${S}/server-tools/instance-manager/Makefile.am" |
|
|
146 | |
|
|
147 | # remove what need to be recreated, so we are sure it's actually done |
680 | # Remove what needs to be recreated, so we're sure it's actually done |
148 | find . -name Makefile -o -name Makefile.in -o -name configure -exec rm -f {} \; |
681 | einfo "Cleaning up old buildscript files" |
|
|
682 | find . -name Makefile \ |
|
|
683 | -o -name Makefile.in \ |
|
|
684 | -o -name configure \ |
|
|
685 | -exec rm -f {} \; |
149 | rm ltmain.sh |
686 | rm -f "ltmain.sh" |
|
|
687 | rm -f "scripts/mysqlbug" |
|
|
688 | fi |
150 | |
689 | |
151 | local rebuilddirlist d buildstep bdbdir |
690 | local rebuilddirlist d |
152 | |
691 | |
|
|
692 | if xtradb_applicable ; then |
|
|
693 | einfo "Replacing InnoDB with Percona XtraDB" |
|
|
694 | pushd "${S}"/storage |
|
|
695 | i="innobase" |
|
|
696 | o="${WORKDIR}/storage-${i}.mysql-upstream" |
|
|
697 | # Have we been here already? |
|
|
698 | [ -d "${o}" ] && rm -f "${i}" |
|
|
699 | # Or maybe we haven't |
|
|
700 | [ -d "${i}" -a ! -d "${o}" ] && mv "${i}" "${o}" |
|
|
701 | cp -ra "${WORKDIR}/${XTRADB_P}" "${i}" |
|
|
702 | popd |
|
|
703 | fi |
|
|
704 | |
153 | if mysql_version_is_at_least "5.01.00.00" ; then |
705 | if mysql_version_is_at_least "5.1.12" ; then |
154 | rebuilddirlist=". storage/innobase" |
706 | rebuilddirlist="." |
155 | bdbdir='storage/bdb/dist' |
707 | # This does not seem to be needed presently. robbat2 2010/02/23 |
|
|
708 | #einfo "Updating innobase cmake" |
|
|
709 | ## TODO: check this with a cmake expert |
|
|
710 | #cmake \ |
|
|
711 | # -DCMAKE_C_COMPILER=$(type -P $(tc-getCC)) \ |
|
|
712 | # -DCMAKE_CXX_COMPILER=$(type -P $(tc-getCXX)) \ |
|
|
713 | # "storage/innobase" |
156 | else |
714 | else |
157 | rebuilddirlist=". innobase" |
715 | rebuilddirlist=". innobase" |
158 | bdbdir='bdb/dist' |
|
|
159 | fi |
716 | fi |
160 | |
717 | |
161 | for d in ${rebuilddirlist}; do |
718 | for d in ${rebuilddirlist} ; do |
162 | einfo "reconfiguring dir \"${d}\"" |
719 | einfo "Reconfiguring dir '${d}'" |
163 | pushd "${d}" &>/dev/null |
720 | pushd "${d}" &>/dev/null |
164 | for buildstep in \ |
721 | AT_GNUCONF_UPDATE="yes" eautoreconf |
165 | 'libtoolize --copy --force' \ |
|
|
166 | 'aclocal --force' \ |
|
|
167 | 'autoheader --force -Wnone' \ |
|
|
168 | 'autoconf --force -Wnone' \ |
|
|
169 | 'automake --force --force-missing -Wnone' \ |
|
|
170 | 'gnuconfig_update' |
|
|
171 | do |
|
|
172 | einfo "performing ${buildstep}" |
|
|
173 | ${buildstep} || die "failed ${buildstep/ */} dir \"${d}\"" |
|
|
174 | done |
|
|
175 | popd &>/dev/null |
722 | popd &>/dev/null |
176 | done |
723 | done |
177 | |
724 | |
178 | if useq berkdb && ! mysql_check_version_range "5.01.00.00 to 5.01.06.99" |
725 | if mysql_check_version_range "4.1 to 5.0.99.99" \ |
179 | then |
726 | && use berkdb ; then |
|
|
727 | einfo "Fixing up berkdb buildsystem" |
180 | [[ -w "${bdbdir}/ltmain.sh" ]] && cp -f ltmain.sh "${bdbdir}/ltmain.sh" |
728 | [[ -w "bdb/dist/ltmain.sh" ]] && cp -f "ltmain.sh" "bdb/dist/ltmain.sh" |
181 | pushd "${bdbdir}" && sh s_all || die "failed bdb reconfigure" &>/dev/null |
729 | cp -f "/usr/share/aclocal/libtool.m4" "bdb/dist/aclocal/libtool.ac" \ |
|
|
730 | || die "Could not copy libtool.m4 to bdb/dist/" |
|
|
731 | #These files exist only with libtool-2*, and need to be included. |
|
|
732 | if [ -f '/usr/share/aclocal/ltsugar.m4' ]; then |
|
|
733 | cat "/usr/share/aclocal/ltsugar.m4" >> "bdb/dist/aclocal/libtool.ac" |
|
|
734 | cat "/usr/share/aclocal/ltversion.m4" >> "bdb/dist/aclocal/libtool.ac" |
|
|
735 | cat "/usr/share/aclocal/lt~obsolete.m4" >> "bdb/dist/aclocal/libtool.ac" |
|
|
736 | cat "/usr/share/aclocal/ltoptions.m4" >> "bdb/dist/aclocal/libtool.ac" |
|
|
737 | fi |
|
|
738 | pushd "bdb/dist" &>/dev/null |
|
|
739 | sh s_all \ |
|
|
740 | || die "Failed bdb reconfigure" |
182 | popd &>/dev/null |
741 | popd &>/dev/null |
183 | fi |
742 | fi |
184 | |
|
|
185 | } |
743 | } |
186 | |
744 | |
|
|
745 | # @FUNCTION: mysql_src_configure |
|
|
746 | # @DESCRIPTION: |
|
|
747 | # Configure mysql to build the code for Gentoo respecting the use flags. |
187 | mysql_src_compile() { |
748 | mysql_src_configure() { |
188 | |
749 | # Make sure the vars are correctly initialized |
189 | mysql_init_vars |
750 | mysql_init_vars |
|
|
751 | |
|
|
752 | # $myconf is modified by the configure_* functions |
190 | local myconf |
753 | local myconf="" |
191 | |
754 | |
192 | if useq static ; then |
755 | if use minimal ; then |
193 | myconf="${myconf} --with-mysqld-ldflags=-all-static" |
756 | configure_minimal |
194 | myconf="${myconf} --with-client-ldflags=-all-static" |
|
|
195 | myconf="${myconf} --disable-shared" |
|
|
196 | else |
757 | else |
197 | myconf="${myconf} --enable-shared --enable-static" |
758 | configure_common |
198 | fi |
|
|
199 | |
|
|
200 | #myconf="${myconf} `use_with tcpd libwrap`" |
|
|
201 | myconf="${myconf} --without-libwrap" |
|
|
202 | |
|
|
203 | if useq ssl ; then |
|
|
204 | # --with-vio is not needed anymore, it's on by default and |
|
|
205 | # has been removed from configure |
|
|
206 | mysql_version_is_at_least "5.00.04.00" || myconf="${myconf} --with-vio" |
|
|
207 | if mysql_version_is_at_least "5.00.06.00" ; then |
759 | if mysql_version_is_at_least "5.1.10" ; then |
208 | # yassl-0.96 is young break with gcc-4.0 || amd64 |
760 | configure_51 |
209 | #myconf="${myconf} --with-yassl" |
|
|
210 | myconf="${myconf} --with-openssl" |
|
|
211 | else |
761 | else |
212 | myconf="${myconf} --with-openssl" |
762 | configure_40_41_50 |
213 | fi |
|
|
214 | else |
|
|
215 | myconf="${myconf} --without-openssl" |
|
|
216 | fi |
|
|
217 | |
|
|
218 | if useq debug; then |
|
|
219 | myconf="${myconf} --with-debug=full" |
|
|
220 | else |
|
|
221 | myconf="${myconf} --without-debug" |
|
|
222 | mysql_version_is_at_least "4.01.03.00" && useq cluster && myconf="${myconf} --without-ndb-debug" |
|
|
223 | fi |
|
|
224 | |
|
|
225 | # benchmarking stuff needs perl |
|
|
226 | # and shouldn't be bothered with on minimal builds |
|
|
227 | if useq perl && ! useq minimal; then |
|
|
228 | myconf="${myconf} --with-bench" |
|
|
229 | else |
|
|
230 | myconf="${myconf} --without-bench" |
|
|
231 | fi |
|
|
232 | |
|
|
233 | # these are things we exclude from a minimal build |
|
|
234 | # note that the server actually does get built and installed |
|
|
235 | # but we then delete it before packaging. |
|
|
236 | local minimal_exclude_list="server embedded-server extra-tools innodb" |
|
|
237 | if ! useq minimal; then |
|
|
238 | for i in ${minimal_exclude_list}; do |
|
|
239 | myconf="${myconf} --with-${i}" |
|
|
240 | done |
|
|
241 | |
|
|
242 | if useq static ; then |
|
|
243 | myconf="${myconf} --without-raid" |
|
|
244 | ewarn "disabling raid support, has problem with static" |
|
|
245 | else |
|
|
246 | myconf="${myconf} --with-raid" |
|
|
247 | fi |
|
|
248 | |
|
|
249 | if ! mysql_version_is_at_least "5.00.00.00" ; then |
|
|
250 | if mysql_version_is_at_least "4.01.00.00" ; then |
|
|
251 | myconf="${myconf} --with-charset=utf8" |
|
|
252 | myconf="${myconf} --with-collation=utf8_general_ci" |
|
|
253 | else |
|
|
254 | myconf="${myconf} --with-charset=latin1" |
|
|
255 | myconf="${myconf} --with-collation=latin1_swedish_ci" |
|
|
256 | fi |
763 | fi |
257 | fi |
764 | fi |
258 | |
765 | |
259 | # optional again from 2005-12-05 |
|
|
260 | if mysql_version_is_at_least "5.01.00.00" ; then |
|
|
261 | myconf="${myconf} $(use_with innodb)" |
|
|
262 | else |
|
|
263 | myconf="${myconf} --with-innodb" |
|
|
264 | fi |
|
|
265 | |
|
|
266 | # lots of chars |
|
|
267 | myconf="${myconf} --with-extra-charsets=all" |
|
|
268 | |
|
|
269 | #The following fix is due to a bug with bdb on sparc's. See: |
|
|
270 | #http://www.geocrawler.com/mail/msg.php3?msg_id=4754814&list=8 |
|
|
271 | # it comes down to non-64-bit safety problems |
|
|
272 | if useq sparc || useq alpha || useq hppa || useq mips || useq amd64 \ |
|
|
273 | || mysql_check_version_range "5.01.00.00 to 5.01.06.99" |
|
|
274 | then |
|
|
275 | ewarn "bdb berkeley-db disabled due to arch or version" |
|
|
276 | myconf="${myconf} --without-berkeley-db" |
|
|
277 | else |
|
|
278 | useq berkdb \ |
|
|
279 | && myconf="${myconf} --with-berkeley-db=./bdb" \ |
|
|
280 | || myconf="${myconf} --without-berkeley-db" |
|
|
281 | fi |
|
|
282 | |
|
|
283 | if mysql_version_is_at_least "4.01.03.00" ; then |
|
|
284 | #myconf="${myconf} $(use_with geometry)" |
|
|
285 | myconf="${myconf} --with-geometry" |
|
|
286 | myconf="${myconf} $(use_with cluster ndbcluster)" |
|
|
287 | fi |
|
|
288 | |
|
|
289 | mysql_version_is_at_least "4.01.11.00" && myconf="${myconf} `use_with big-tables`" |
|
|
290 | else |
|
|
291 | for i in ${minimal_exclude_list}; do |
|
|
292 | myconf="${myconf} --without-${i}" |
|
|
293 | done |
|
|
294 | myconf="${myconf} --without-berkeley-db" |
|
|
295 | myconf="${myconf} --with-extra-charsets=none" |
|
|
296 | fi |
|
|
297 | |
|
|
298 | if mysql_version_is_at_least "4.01.03.00" && useq extraengine; then |
|
|
299 | # http://dev.mysql.com/doc/mysql/en/archive-storage-engine.html |
|
|
300 | myconf="${myconf} --with-archive-storage-engine" |
|
|
301 | # http://dev.mysql.com/doc/mysql/en/csv-storage-engine.html |
|
|
302 | |
|
|
303 | mysql_version_is_at_least "4.01.04.00" \ |
|
|
304 | && myconf="${myconf} --with-csv-storage-engine" |
|
|
305 | |
|
|
306 | mysql_version_is_at_least "4.01.11.00" \ |
|
|
307 | && myconf="${myconf} --with-blackhole-storage-engine" |
|
|
308 | |
|
|
309 | # http://dev.mysql.com/doc/mysql/en/federated-description.html |
|
|
310 | # http://dev.mysql.com/doc/mysql/en/federated-limitations.html |
|
|
311 | if mysql_version_is_at_least "5.00.03.00" ; then |
|
|
312 | einfo "before to use federated engine be sure to read" |
|
|
313 | einfo "http://dev.mysql.com/doc/refman/5.0/en/federated-limitations.html" |
|
|
314 | myconf="${myconf} --with-federated-storage-engine" |
|
|
315 | |
|
|
316 | # http://dev.mysql.com/doc/refman/5.1/en/partitioning-overview.html |
|
|
317 | if mysql_version_is_at_least "5.01.00.00" ; then |
|
|
318 | myconf="${myconf} --with-partition" |
|
|
319 | fi |
|
|
320 | fi |
|
|
321 | |
|
|
322 | fi |
|
|
323 | |
|
|
324 | mysql_version_is_at_least "5.00.18.00" \ |
|
|
325 | && useq "max-idx-128" \ |
|
|
326 | && myconf="${myconf} --with-max-indexes=128" |
|
|
327 | |
|
|
328 | if mysql_version_is_at_least "5.01.05.00" ; then |
|
|
329 | myconf="${myconf} --with-row-based-replication" |
|
|
330 | fi |
|
|
331 | |
|
|
332 | #Bug #114895,Bug #110149 |
766 | # Bug #114895, bug #110149 |
333 | filter-flags "-O" "-O[01]" |
767 | filter-flags "-O" "-O[01]" |
|
|
768 | |
334 | #glibc-2.3.2_pre fix; bug #16496 |
769 | # glib-2.3.2_pre fix, bug #16496 |
335 | append-flags "-DHAVE_ERRNO_AS_DEFINE=1" |
770 | append-flags "-DHAVE_ERRNO_AS_DEFINE=1" |
336 | |
771 | |
337 | #the compiler flags are as per their "official" spec ;) |
772 | # As discovered by bug #246652, doing a double-level of SSP causes NDB to |
338 | #CFLAGS="${CFLAGS/-O?/} -O3" \ |
773 | # fail badly during cluster startup. |
|
|
774 | if [[ $(gcc-major-version) -lt 4 ]]; then |
|
|
775 | filter-flags "-fstack-protector-all" |
|
|
776 | fi |
|
|
777 | |
|
|
778 | CXXFLAGS="${CXXFLAGS} -fno-exceptions -fno-strict-aliasing" |
339 | export CXXFLAGS="${CXXFLAGS} -felide-constructors -fno-exceptions -fno-rtti" |
779 | CXXFLAGS="${CXXFLAGS} -felide-constructors -fno-rtti" |
340 | mysql_version_is_at_least "5.00.00.00" \ |
780 | mysql_version_is_at_least "5.0" \ |
341 | && export CXXFLAGS="${CXXFLAGS} -fno-implicit-templates" |
781 | && CXXFLAGS="${CXXFLAGS} -fno-implicit-templates" |
|
|
782 | export CXXFLAGS |
|
|
783 | |
|
|
784 | # bug #283926, with GCC4.4, this is required to get correct behavior. |
|
|
785 | append-flags -fno-strict-aliasing |
342 | |
786 | |
343 | econf \ |
787 | econf \ |
344 | --program-suffix="${MY_SUFFIX}" \ |
|
|
345 | --libexecdir="/usr/sbin" \ |
788 | --libexecdir="/usr/sbin" \ |
346 | --sysconfdir="${MY_SYSCONFDIR}" \ |
789 | --sysconfdir="${MY_SYSCONFDIR}" \ |
347 | --localstatedir="${MY_LOCALSTATEDIR}" \ |
790 | --localstatedir="${MY_LOCALSTATEDIR}" \ |
348 | --sharedstatedir="${MY_SHAREDSTATEDIR}" \ |
791 | --sharedstatedir="${MY_SHAREDSTATEDIR}" \ |
349 | --libdir="${MY_LIBDIR}" \ |
792 | --libdir="${MY_LIBDIR}" \ |
350 | --includedir="${MY_INCLUDEDIR}" \ |
793 | --includedir="${MY_INCLUDEDIR}" \ |
351 | --with-low-memory \ |
794 | --with-low-memory \ |
352 | --enable-assembler \ |
|
|
353 | --enable-local-infile \ |
|
|
354 | --with-mysqld-user=mysql \ |
|
|
355 | --with-client-ldflags=-lstdc++ \ |
795 | --with-client-ldflags=-lstdc++ \ |
356 | --enable-thread-safe-client \ |
796 | --enable-thread-safe-client \ |
357 | --with-comment="Gentoo Linux ${PF}" \ |
797 | --with-comment="Gentoo Linux ${PF}" \ |
358 | --with-unix-socket-path="/var/run/mysqld/mysqld.sock" \ |
|
|
359 | --with-zlib-dir=/usr \ |
|
|
360 | --with-lib-ccflags="-fPIC" \ |
|
|
361 | --without-readline \ |
|
|
362 | --without-docs \ |
798 | --without-docs \ |
363 | ${myconf} || die "bad ./configure" |
799 | ${myconf} || die "econf failed" |
364 | |
800 | |
365 | # TODO Move this before autoreconf !!! |
801 | # TODO: Move this before autoreconf !!! |
366 | find . -name 'Makefile' \ |
802 | find . -type f -name Makefile -print0 \ |
367 | -exec sed --in-place \ |
803 | | xargs -0 -n100 sed -i \ |
368 | -e 's|^pkglibdir\s*=\s*$(libdir)/mysql|pkglibdir = $(libdir)|' \ |
804 | -e 's|^pkglibdir *= *$(libdir)/mysql|pkglibdir = $(libdir)|;s|^pkgincludedir *= *$(includedir)/mysql|pkgincludedir = $(includedir)|' |
369 | -e 's|^pkgincludedir\s*=\s*$(includedir)/mysql|pkgincludedir = $(includedir)|' \ |
|
|
370 | {} \; |
|
|
371 | |
805 | |
372 | emake || die "compile problem" |
806 | if [[ $EAPI == 2 ]]; then |
|
|
807 | pbxt_applicable && pbxt_src_configure |
|
|
808 | fi |
373 | } |
809 | } |
374 | |
810 | |
|
|
811 | # @FUNCTION: mysql_src_compile |
|
|
812 | # @DESCRIPTION: |
|
|
813 | # Compile the mysql code. |
|
|
814 | mysql_src_compile() { |
|
|
815 | # Be backwards compatible for now |
|
|
816 | case ${EAPI:-0} in |
|
|
817 | 2) : ;; |
|
|
818 | 0 | 1) mysql_src_configure ;; |
|
|
819 | esac |
|
|
820 | |
|
|
821 | emake || die "emake failed" |
|
|
822 | |
|
|
823 | pbxt_applicable && pbxt_src_compile |
|
|
824 | } |
|
|
825 | |
|
|
826 | # @FUNCTION: mysql_src_install |
|
|
827 | # @DESCRIPTION: |
|
|
828 | # Install mysql. |
375 | mysql_src_install() { |
829 | mysql_src_install() { |
376 | |
830 | # Make sure the vars are correctly initialized |
377 | mysql_init_vars |
831 | mysql_init_vars |
378 | make install DESTDIR="${D}" benchdir_root="${MY_SHAREDSTATEDIR}" || die |
|
|
379 | |
832 | |
380 | insinto "${MY_INCLUDEDIR}" |
833 | emake install \ |
381 | doins "${MY_INCLUDEDIR}"/my_{config,dir}.h |
834 | DESTDIR="${D}" \ |
|
|
835 | benchdir_root="${MY_SHAREDSTATEDIR}" \ |
|
|
836 | testroot="${MY_SHAREDSTATEDIR}" \ |
|
|
837 | || die "emake install failed" |
382 | |
838 | |
|
|
839 | pbxt_applicable && pbxt_src_install |
|
|
840 | |
383 | # convenience links |
841 | # Convenience links |
|
|
842 | einfo "Making Convenience links for mysqlcheck multi-call binary" |
384 | dosym "/usr/bin/mysqlcheck${MY_SUFFIX}" "/usr/bin/mysqlanalyze${MY_SUFFIX}" |
843 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlanalyze" |
385 | dosym "/usr/bin/mysqlcheck${MY_SUFFIX}" "/usr/bin/mysqlrepair${MY_SUFFIX}" |
844 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlrepair" |
386 | dosym "/usr/bin/mysqlcheck${MY_SUFFIX}" "/usr/bin/mysqloptimize${MY_SUFFIX}" |
845 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqloptimize" |
387 | |
846 | |
388 | # various junk (my-*.cnf moved elsewhere) |
847 | # Various junk (my-*.cnf moved elsewhere) |
|
|
848 | einfo "Removing duplicate /usr/share/mysql files" |
389 | rm -rf "${D}/usr/share/info" |
849 | rm -Rf "${D}/usr/share/info" |
390 | for removeme in "mysql-log-rotate" mysql.server* \ |
850 | for removeme in "mysql-log-rotate" mysql.server* \ |
391 | binary-configure* my-*.cnf mi_test_all* |
851 | binary-configure* my-*.cnf mi_test_all* |
392 | do |
852 | do |
393 | rm -f ${D}/usr/share/mysql/${removeme} |
853 | rm -f "${D}"/${MY_SHAREDSTATEDIR}/${removeme} |
394 | done |
854 | done |
395 | |
855 | |
396 | # TODO change at Makefile-am level |
|
|
397 | for moveme in "mysql_fix_privilege_tables.sql" \ |
|
|
398 | "fill_help_tables.sql" "ndb-config-2-node.ini" |
|
|
399 | do |
|
|
400 | mv -f "${D}/usr/share/mysql/${moveme}" "${D}/usr/share/mysql${MY_SUFFIX}/" 2>/dev/null |
|
|
401 | done |
|
|
402 | |
|
|
403 | if [[ -n "${MY_SUFFIX}" ]] ; then |
|
|
404 | local notcatched=$(ls "${D}/usr/share/mysql"/*) |
|
|
405 | if [[ -n "${notcatched}" ]] ; then |
|
|
406 | ewarn "QA notice" |
|
|
407 | ewarn "${notcatched} files in /usr/share/mysql" |
|
|
408 | ewarn "bug mysql-herd to manage them" |
|
|
409 | fi |
|
|
410 | rm -rf "${D}/usr/share/mysql" |
|
|
411 | fi |
|
|
412 | |
|
|
413 | # clean up stuff for a minimal build |
856 | # Clean up stuff for a minimal build |
414 | # this is anything server-specific |
|
|
415 | if useq minimal; then |
857 | if use minimal ; then |
|
|
858 | einfo "Remove all extra content for minimal build" |
416 | rm -rf ${D}${MY_SHAREDSTATEDIR}/{mysql-test,sql-bench} |
859 | rm -Rf "${D}${MY_SHAREDSTATEDIR}"/{mysql-test,sql-bench} |
417 | 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} |
860 | 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} |
418 | rm -f "${D}/usr/sbin/mysqld${MY_SUFFIX}" |
861 | rm -f "${D}/usr/sbin/mysqld" |
419 | rm -f ${D}${MY_LIBDIR}/lib{heap,merge,nisam,my{sys,strings,sqld,isammrg,isam},vio,dbug}.a |
862 | rm -f "${D}${MY_LIBDIR}"/lib{heap,merge,nisam,my{sys,strings,sqld,isammrg,isam},vio,dbug}.a |
420 | fi |
863 | fi |
421 | |
864 | |
|
|
865 | # Unless they explicitly specific USE=test, then do not install the |
|
|
866 | # testsuite. It DOES have a use to be installed, esp. when you want to do a |
|
|
867 | # validation of your database configuration after tuning it. |
|
|
868 | if use !test ; then |
|
|
869 | rm -rf "${D}"/${MY_SHAREDSTATEDIR}/mysql-test |
|
|
870 | fi |
|
|
871 | |
422 | # config stuff |
872 | # Configuration stuff |
|
|
873 | if mysql_version_is_at_least "4.1" ; then |
|
|
874 | mysql_mycnf_version="4.1" |
|
|
875 | else |
|
|
876 | mysql_mycnf_version="4.0" |
|
|
877 | fi |
|
|
878 | einfo "Building default my.cnf" |
423 | insinto "${MY_SYSCONFDIR}" |
879 | insinto "${MY_SYSCONFDIR}" |
424 | doins scripts/mysqlaccess.conf |
880 | doins scripts/mysqlaccess.conf |
425 | sed -e "s!@MY_SUFFIX@!${MY_SUFFIX}!g" \ |
|
|
426 | -e "s!@DATADIR@!${DATADIR}!g" \ |
881 | sed -e "s!@DATADIR@!${MY_DATADIR}!g" \ |
427 | "${FILESDIR}/my.cnf-4.1-r1" \ |
882 | "${FILESDIR}/my.cnf-${mysql_mycnf_version}" \ |
428 | > "${TMPDIR}/my.cnf.ok" |
883 | > "${TMPDIR}/my.cnf.ok" |
|
|
884 | if mysql_version_is_at_least "4.1" && use latin1 ; then |
|
|
885 | sed -e "s|utf8|latin1|g" -i "${TMPDIR}/my.cnf.ok" |
|
|
886 | fi |
429 | newins "${TMPDIR}/my.cnf.ok" my.cnf |
887 | newins "${TMPDIR}/my.cnf.ok" my.cnf |
430 | |
888 | |
431 | insinto "/etc/conf.d" |
|
|
432 | newins "${FILESDIR}/mysql-slot.conf.d-r1" "mysql" |
|
|
433 | mysql_version_is_at_least "5.00.11.00" \ |
|
|
434 | && newins "${FILESDIR}/mysqlmanager-slot.conf.d" "mysqlmanager" |
|
|
435 | |
|
|
436 | # minimal builds don't have the server |
889 | # Minimal builds don't have the MySQL server |
437 | if ! useq minimal; then |
890 | if ! use minimal ; then |
438 | exeinto /etc/init.d |
891 | einfo "Creating initial directories" |
439 | newexe "${FILESDIR}/mysql-slot.rc6-r3" "mysql" |
892 | # Empty directories ... |
440 | |
|
|
441 | mysql_version_is_at_least "5.00.11.00" \ |
|
|
442 | && newexe "${FILESDIR}/mysqlmanager-slot.rc6" "mysqlmanager" |
|
|
443 | insinto /etc/logrotate.d |
|
|
444 | sed -e "s!___MY_SUFFIX___!${MY_SUFFIX}!g" \ |
|
|
445 | "${FILESDIR}/logrotate-slot.mysql" \ |
|
|
446 | > "${TMPDIR}/logrotate.mysql" |
|
|
447 | newins "${TMPDIR}/logrotate.mysql" "mysql${MY_SUFFIX}" |
|
|
448 | |
|
|
449 | #empty dirs... |
|
|
450 | diropts "-m0750" |
893 | diropts "-m0750" |
451 | if [[ "${PREVIOUS_DATADIR}" != "yes" ]] ; then |
894 | if [[ "${PREVIOUS_DATADIR}" != "yes" ]] ; then |
452 | dodir "${DATADIR}" |
895 | dodir "${MY_DATADIR}" |
453 | keepdir "${DATADIR}" |
896 | keepdir "${MY_DATADIR}" |
454 | chown -R mysql:mysql "${D}/${DATADIR}" |
897 | chown -R mysql:mysql "${D}/${MY_DATADIR}" |
455 | fi |
898 | fi |
456 | |
899 | |
457 | diropts "-m0755" |
900 | diropts "-m0755" |
458 | for folder in "${MY_LOGDIR}" "/var/run/mysqld" ; do |
901 | for folder in "${MY_LOGDIR}" "/var/run/mysqld" ; do |
459 | dodir "${folder}" |
902 | dodir "${folder}" |
460 | keepdir "${folder}" |
903 | keepdir "${folder}" |
461 | chown -R mysql:mysql "${D}/${folder}" |
904 | chown -R mysql:mysql "${D}/${folder}" |
462 | done |
905 | done |
463 | fi |
906 | fi |
464 | |
907 | |
465 | # docs |
908 | # Docs |
|
|
909 | einfo "Installing docs" |
466 | dodoc README COPYING ChangeLog EXCEPTIONS-CLIENT INSTALL-SOURCE |
910 | dodoc README ChangeLog EXCEPTIONS-CLIENT INSTALL-SOURCE |
|
|
911 | doinfo "${S}"/Docs/mysql.info |
|
|
912 | |
467 | # minimal builds don't have the server |
913 | # Minimal builds don't have the MySQL server |
468 | if ! useq minimal; then |
914 | if ! use minimal ; then |
|
|
915 | einfo "Including support files and sample configurations" |
|
|
916 | docinto "support-files" |
|
|
917 | for script in \ |
|
|
918 | "${S}"/support-files/my-*.cnf \ |
|
|
919 | "${S}"/support-files/magic \ |
|
|
920 | "${S}"/support-files/ndb-config-2-node.ini |
|
|
921 | do |
|
|
922 | [[ -f "$script" ]] && dodoc "${script}" |
|
|
923 | done |
|
|
924 | |
|
|
925 | docinto "scripts" |
|
|
926 | for script in "${S}"/scripts/mysql* ; do |
|
|
927 | [[ -f "$script" ]] && [[ "${script%.sh}" == "${script}" ]] && dodoc "${script}" |
|
|
928 | done |
|
|
929 | |
|
|
930 | fi |
|
|
931 | |
|
|
932 | mysql_lib_symlinks "${D}" |
|
|
933 | } |
|
|
934 | |
|
|
935 | # @FUNCTION: mysql_pkg_preinst |
|
|
936 | # @DESCRIPTION: |
|
|
937 | # Create the user and groups for mysql - die if that fails. |
|
|
938 | mysql_pkg_preinst() { |
|
|
939 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
|
|
940 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
|
|
941 | } |
|
|
942 | |
|
|
943 | # @FUNCTION: mysql_pkg_postinst |
|
|
944 | # @DESCRIPTION: |
|
|
945 | # Run post-installation tasks: |
|
|
946 | # create the dir for logfiles if non-existant |
|
|
947 | # touch the logfiles and secure them |
|
|
948 | # install scripts |
|
|
949 | # issue required steps for optional features |
|
|
950 | # issue deprecation warnings |
|
|
951 | mysql_pkg_postinst() { |
|
|
952 | # Make sure the vars are correctly initialized |
|
|
953 | mysql_init_vars |
|
|
954 | |
|
|
955 | # Check FEATURES="collision-protect" before removing this |
|
|
956 | [[ -d "${ROOT}/var/log/mysql" ]] || install -d -m0750 -o mysql -g mysql "${ROOT}${MY_LOGDIR}" |
|
|
957 | |
|
|
958 | # Secure the logfiles |
|
|
959 | touch "${ROOT}${MY_LOGDIR}"/mysql.{log,err} |
|
|
960 | chown mysql:mysql "${ROOT}${MY_LOGDIR}"/mysql* |
|
|
961 | chmod 0660 "${ROOT}${MY_LOGDIR}"/mysql* |
|
|
962 | |
|
|
963 | # Minimal builds don't have the MySQL server |
|
|
964 | if ! use minimal ; then |
469 | docinto "support-files" |
965 | docinto "support-files" |
470 | for script in \ |
966 | for script in \ |
471 | support-files/my-*.cnf \ |
967 | support-files/my-*.cnf \ |
472 | support-files/magic \ |
968 | support-files/magic \ |
473 | support-files/ndb-config-2-node.ini |
969 | support-files/ndb-config-2-node.ini |
… | |
… | |
477 | |
973 | |
478 | docinto "scripts" |
974 | docinto "scripts" |
479 | for script in scripts/mysql* ; do |
975 | for script in scripts/mysql* ; do |
480 | [[ "${script%.sh}" == "${script}" ]] && dodoc "${script}" |
976 | [[ "${script%.sh}" == "${script}" ]] && dodoc "${script}" |
481 | done |
977 | done |
482 | fi |
|
|
483 | |
978 | |
484 | # oops, temporary fix |
979 | einfo |
485 | mysql_check_version_range "5.00.16.00 to 5.00.18.99" \ |
980 | elog "You might want to run:" |
486 | && cp -f \ |
981 | elog "\"emerge --config =${CATEGORY}/${PF}\"" |
487 | "${WORKDIR}/mysql-extras/fill_help_tables.sql-5.0" \ |
982 | elog "if this is a new install." |
488 | "${D}/usr/share/mysql${MY_SUFFIX}/fill_help_tables.sql" |
983 | einfo |
489 | } |
984 | fi |
490 | |
985 | |
491 | mysql_pkg_preinst() { |
986 | if pbxt_applicable ; then |
|
|
987 | # TODO: explain it better |
|
|
988 | elog " mysql> INSTALL PLUGIN pbxt SONAME 'libpbxt.so';" |
|
|
989 | elog " mysql> CREATE TABLE t1 (c1 int, c2 text) ENGINE=pbxt;" |
|
|
990 | elog "if, after that, you cannot start the MySQL server," |
|
|
991 | elog "remove the ${MY_DATADIR}/mysql/plugin.* files, then" |
|
|
992 | elog "use the MySQL upgrade script to restore the table" |
|
|
993 | elog "or execute the following SQL command:" |
|
|
994 | elog " CREATE TABLE IF NOT EXISTS plugin (" |
|
|
995 | elog " name char(64) binary DEFAULT '' NOT NULL," |
|
|
996 | elog " dl char(128) DEFAULT '' NOT NULL," |
|
|
997 | elog " PRIMARY KEY (name)" |
|
|
998 | elog " ) CHARACTER SET utf8 COLLATE utf8_bin;" |
|
|
999 | fi |
492 | |
1000 | |
493 | # create a list of files, to be used |
1001 | mysql_check_version_range "4.0 to 5.0.99.99" \ |
494 | # by external utilities |
1002 | && use berkdb \ |
495 | # will be used in pkg_postinst |
1003 | && elog "Berkeley DB support is deprecated and will be removed in future versions!" |
496 | local filelist="${TMPDIR}/FILELIST" |
|
|
497 | pushd "${D}/" &>/dev/null |
|
|
498 | mkdir -p "${ROOT}/var/lib/eselect/mysql/" |
|
|
499 | env -i find usr/bin/ usr/sbin/ usr/share/man \ |
|
|
500 | -type f -name "*${MY_SUFFIX}*" \ |
|
|
501 | -and -not -name "mysql_config${MY_SUFFIX}" \ |
|
|
502 | > "${filelist}" |
|
|
503 | echo "${MY_SYSCONFDIR#"/"}" >> "${filelist}" |
|
|
504 | echo "${MY_LIBDIR#"/"}" >> "${filelist}" |
|
|
505 | echo "${MY_SHAREDSTATEDIR#"/"}" >> "${filelist}" |
|
|
506 | popd &>/dev/null |
|
|
507 | |
|
|
508 | enewgroup mysql 60 || die "problem adding group mysql" |
|
|
509 | enewuser mysql 60 -1 /dev/null mysql \ |
|
|
510 | || die "problem adding user mysql" |
|
|
511 | } |
1004 | } |
512 | |
1005 | |
|
|
1006 | # @FUNCTION: mysql_pkg_config |
|
|
1007 | # @DESCRIPTION: |
|
|
1008 | # Configure mysql environment. |
513 | mysql_pkg_postinst() { |
1009 | mysql_pkg_config() { |
|
|
1010 | local old_MY_DATADIR="${MY_DATADIR}" |
514 | |
1011 | |
|
|
1012 | # Make sure the vars are correctly initialized |
515 | mysql_init_vars |
1013 | mysql_init_vars |
516 | mysql_lib_symlinks |
|
|
517 | |
1014 | |
518 | # mind at FEATURES=collision-protect before to remove this |
1015 | [[ -z "${MY_DATADIR}" ]] && die "Sorry, unable to find MY_DATADIR" |
519 | [ -d "${ROOT}/var/log/mysql" ] \ |
|
|
520 | || install -d -m0750 -o mysql -g mysql "${ROOT}${MY_LOGDIR}" |
|
|
521 | |
1016 | |
522 | #secure the logfiles... does this bother anybody? |
1017 | if built_with_use ${CATEGORY}/${PN} minimal ; then |
523 | touch "${ROOT}${MY_LOGDIR}"/mysql.{log,err} |
1018 | die "Minimal builds do NOT include the MySQL server" |
524 | chown mysql:mysql "${ROOT}${MY_LOGDIR}"/mysql* |
1019 | fi |
525 | chmod 0660 "${ROOT}${MY_LOGDIR}"/mysql* |
|
|
526 | |
1020 | |
527 | # list of files, to be used |
1021 | if [[ ( -n "${MY_DATADIR}" ) && ( "${MY_DATADIR}" != "${old_MY_DATADIR}" ) ]]; then |
528 | # by external utilities |
1022 | local MY_DATADIR_s="$(strip_duplicate_slashes ${ROOT}/${MY_DATADIR})" |
529 | mkdir -p "${ROOT}/var/lib/eselect/mysql/" |
1023 | local old_MY_DATADIR_s="$(strip_duplicate_slashes ${ROOT}/${old_MY_DATADIR})" |
530 | cp "${TMPDIR}/FILELIST" "${ROOT}/var/lib/eselect/mysql/mysql${MY_SUFFIX}.filelist" |
|
|
531 | |
1024 | |
532 | if ! useq minimal; then |
1025 | if [[ -d "${old_MY_DATADIR_s}" ]]; then |
533 | if [[ ${SLOT} -gt 0 ]] ; then |
1026 | if [[ -d "${MY_DATADIR_s}" ]]; then |
534 | if [[ -f "${ROOT}/usr/sbin/mysqld" ]] ; then |
1027 | ewarn "Both ${old_MY_DATADIR_s} and ${MY_DATADIR_s} exist" |
535 | einfo "you may want to read:" |
1028 | ewarn "Attempting to use ${MY_DATADIR_s} and preserving ${old_MY_DATADIR_s}" |
536 | einfo "http://www.gentoo.org/doc/en/mysql-upgrade-slotted.xml" |
|
|
537 | else |
1029 | else |
538 | local tmpres="$( eselect mysql show )" |
1030 | elog "Moving MY_DATADIR from ${old_MY_DATADIR_s} to ${MY_DATADIR_s}" |
539 | # "like grep -q unset" |
1031 | mv --strip-trailing-slashes -T "${old_MY_DATADIR_s}" "${MY_DATADIR_s}" \ |
540 | if [[ "{$tmpres}" == "{$tmpres/unset/}" ]] ; then |
1032 | || die "Moving MY_DATADIR failed" |
541 | eselect mysql set 1 |
|
|
542 | else |
|
|
543 | einfo "The version of mysql emerged now stils is _NOT_ the default" |
|
|
544 | einfo "you may want to run \"eselect myqsl list\" followed by a " |
|
|
545 | einfo "\"eselect myqsl set 1\" to chose the default mysql server" |
|
|
546 | fi |
|
|
547 | fi |
1033 | fi |
|
|
1034 | else |
|
|
1035 | ewarn "Previous MY_DATADIR (${old_MY_DATADIR_s}) does not exist" |
|
|
1036 | if [[ -d "${MY_DATADIR_s}" ]]; then |
|
|
1037 | ewarn "Attempting to use ${MY_DATADIR_s}" |
|
|
1038 | else |
|
|
1039 | eerror "New MY_DATADIR (${MY_DATADIR_s}) does not exist" |
|
|
1040 | die "Configuration Failed! Please reinstall ${CATEGORY}/${PN}" |
548 | fi |
1041 | fi |
549 | |
|
|
550 | # your friendly public service announcement... |
|
|
551 | einfo |
|
|
552 | einfo "You might want to run:" |
|
|
553 | einfo "\"emerge --config =${CATEGORY}/${PF}\"" |
|
|
554 | einfo "if this is a new install." |
|
|
555 | einfo |
|
|
556 | einfo "InnoDB is not optional as of MySQL-4.0.24, at the request of upstream." |
|
|
557 | fi |
1042 | fi |
558 | } |
|
|
559 | |
|
|
560 | mysql_pkg_config() { |
|
|
561 | mysql_init_vars |
|
|
562 | [[ -z "${DATADIR}" ]] && die "sorry, unable to find DATADIR" |
|
|
563 | |
|
|
564 | if built_with_use dev-db/mysql minimal; then |
|
|
565 | die "Minimal builds do NOT include the MySQL server" |
|
|
566 | fi |
1043 | fi |
567 | |
1044 | |
568 | local pwd1="a" |
1045 | local pwd1="a" |
569 | local pwd2="b" |
1046 | local pwd2="b" |
570 | local maxtry=5 |
1047 | local maxtry=5 |
571 | |
1048 | |
572 | if [[ -d "${ROOT}/${DATADIR}/mysql" ]] ; then |
1049 | if [[ -d "${ROOT}/${MY_DATADIR}/mysql" ]] ; then |
573 | ewarn "You have already a MySQL database in place." |
1050 | ewarn "You have already a MySQL database in place." |
574 | ewarn "(${ROOT}/${DATADIR}/*)" |
1051 | ewarn "(${ROOT}/${MY_DATADIR}/*)" |
575 | ewarn "Please rename or delete it if you wish to replace it." |
1052 | ewarn "Please rename or delete it if you wish to replace it." |
576 | die "MySQL database already exists!" |
1053 | die "MySQL database already exists!" |
577 | fi |
1054 | fi |
578 | |
1055 | |
|
|
1056 | # Bug #213475 - MySQL _will_ object strenously if your machine is named |
|
|
1057 | # localhost. Also causes weird failures. |
|
|
1058 | [[ "${HOSTNAME}" == "localhost" ]] && die "Your machine must NOT be named localhost" |
|
|
1059 | |
579 | einfo "Creating the mysql database and setting proper" |
1060 | einfo "Creating the mysql database and setting proper" |
580 | einfo "permissions on it..." |
1061 | einfo "permissions on it ..." |
581 | |
1062 | |
582 | einfo "Insert a password for the mysql 'root' user" |
1063 | einfo "Insert a password for the mysql 'root' user" |
583 | ewarn "Avoid [\"'\\_%] characters in the password" |
1064 | ewarn "Avoid [\"'\\_%] characters in the password" |
584 | |
|
|
585 | read -rsp " >" pwd1 ; echo |
1065 | read -rsp " >" pwd1 ; echo |
|
|
1066 | |
586 | einfo "Check the password" |
1067 | einfo "Retype the password" |
587 | read -rsp " >" pwd2 ; echo |
1068 | read -rsp " >" pwd2 ; echo |
588 | |
1069 | |
589 | if [[ "x$pwd1" != "x$pwd2" ]] ; then |
1070 | if [[ "x$pwd1" != "x$pwd2" ]] ; then |
590 | die "Passwords are not the same" |
1071 | die "Passwords are not the same" |
591 | fi |
1072 | fi |
592 | |
1073 | |
593 | local options="" |
1074 | local options="" |
594 | local sqltmp="$(emktemp)" |
1075 | local sqltmp="$(emktemp)" |
595 | |
1076 | |
596 | local help_tables="${MY_SHAREDSTATEDIR}/fill_help_tables.sql" |
1077 | local help_tables="${ROOT}${MY_SHAREDSTATEDIR}/fill_help_tables.sql" |
597 | [[ -r "${help_tables}" ]] \ |
1078 | [[ -r "${help_tables}" ]] \ |
598 | && cp "${help_tables}" "${TMPDIR}/fill_help_tables.sql" \ |
1079 | && cp "${help_tables}" "${TMPDIR}/fill_help_tables.sql" \ |
599 | || touch "${TMPDIR}/fill_help_tables.sql" |
1080 | || touch "${TMPDIR}/fill_help_tables.sql" |
600 | help_tables="${TMPDIR}/fill_help_tables.sql" |
1081 | help_tables="${TMPDIR}/fill_help_tables.sql" |
601 | |
1082 | |
602 | pushd "${TMPDIR}" &>/dev/null |
1083 | pushd "${TMPDIR}" &>/dev/null |
603 | ${ROOT}/usr/bin/mysql_install_db${MY_SUFFIX} | grep -B5 -A999 -i "ERROR" |
1084 | "${ROOT}/usr/bin/mysql_install_db" >"${TMPDIR}"/mysql_install_db.log 2>&1 |
|
|
1085 | if [ $? -ne 0 ]; then |
|
|
1086 | grep -B5 -A999 -i "ERROR" "${TMPDIR}"/mysql_install_db.log 1>&2 |
|
|
1087 | die "Failed to run mysql_install_db. Please review /var/log/mysql/mysqld.err AND ${TMPDIR}/mysql_install_db.log" |
|
|
1088 | fi |
604 | popd &>/dev/null |
1089 | popd &>/dev/null |
605 | [[ -f ${ROOT}/${DATADIR}/mysql/user.frm ]] || die "MySQL databases not installed" |
1090 | [[ -f "${ROOT}/${MY_DATADIR}/mysql/user.frm" ]] \ |
|
|
1091 | || die "MySQL databases not installed" |
606 | chown -R mysql:mysql ${ROOT}/${DATADIR} 2> /dev/null |
1092 | chown -R mysql:mysql "${ROOT}/${MY_DATADIR}" 2>/dev/null |
607 | chmod 0750 ${ROOT}/${DATADIR} 2> /dev/null |
1093 | chmod 0750 "${ROOT}/${MY_DATADIR}" 2>/dev/null |
608 | |
1094 | |
609 | if mysql_version_is_at_least "4.01.03.00" ; then |
1095 | if mysql_version_is_at_least "4.1.3" ; then |
610 | options="--skip-ndbcluster" |
1096 | options="--skip-ndbcluster" |
611 | |
1097 | |
612 | # Filling timezones, see |
1098 | # Filling timezones, see |
613 | # http://dev.mysql.com/doc/mysql/en/time-zone-support.html |
1099 | # http://dev.mysql.com/doc/mysql/en/time-zone-support.html |
614 | ${ROOT}/usr/bin/mysql_tzinfo_to_sql${MY_SUFFIX} ${ROOT}/usr/share/zoneinfo \ |
1100 | "${ROOT}/usr/bin/mysql_tzinfo_to_sql" "${ROOT}/usr/share/zoneinfo" > "${sqltmp}" 2>/dev/null |
615 | > "${sqltmp}" 2>/dev/null |
|
|
616 | |
1101 | |
617 | if [[ -r "${help_tables}" ]] ; then |
1102 | if [[ -r "${help_tables}" ]] ; then |
618 | cat "${help_tables}" >> "${sqltmp}" |
1103 | cat "${help_tables}" >> "${sqltmp}" |
619 | fi |
1104 | fi |
620 | fi |
1105 | fi |
621 | |
1106 | |
622 | local socket=${ROOT}/var/run/mysqld/mysqld${RANDOM}.sock |
1107 | local socket="${ROOT}/var/run/mysqld/mysqld${RANDOM}.sock" |
623 | local pidfile=${ROOT}/var/run/mysqld/mysqld${MY_SUFFIX}${RANDOM}.pid |
1108 | local pidfile="${ROOT}/var/run/mysqld/mysqld${RANDOM}.pid" |
624 | local mysqld="${ROOT}/usr/sbin/mysqld${MY_SUFFIX} \ |
1109 | local mysqld="${ROOT}/usr/sbin/mysqld \ |
625 | ${options} \ |
1110 | ${options} \ |
626 | --user=mysql \ |
1111 | --user=mysql \ |
627 | --skip-grant-tables \ |
1112 | --skip-grant-tables \ |
628 | --basedir=${ROOT}/usr \ |
1113 | --basedir=${ROOT}/usr \ |
629 | --datadir=${ROOT}/${DATADIR} \ |
1114 | --datadir=${ROOT}/${MY_DATADIR} \ |
630 | --skip-innodb \ |
1115 | --skip-innodb \ |
631 | --skip-bdb \ |
1116 | --skip-bdb \ |
632 | --skip-networking \ |
1117 | --skip-networking \ |
633 | --max_allowed_packet=8M \ |
1118 | --max_allowed_packet=8M \ |
634 | --net_buffer_length=16K \ |
1119 | --net_buffer_length=16K \ |
635 | --socket=${socket} \ |
1120 | --socket=${socket} \ |
636 | --pid-file=${pidfile}" |
1121 | --pid-file=${pidfile}" |
637 | $mysqld & |
1122 | ${mysqld} & |
638 | while ! [[ -S "${socket}" || "${maxtry}" -lt 1 ]] ; do |
1123 | while ! [[ -S "${socket}" || "${maxtry}" -lt 1 ]] ; do |
639 | maxtry=$(($maxtry-1)) |
1124 | maxtry=$((${maxtry}-1)) |
640 | echo -n "." |
1125 | echo -n "." |
641 | sleep 1 |
1126 | sleep 1 |
642 | done |
1127 | done |
643 | |
1128 | |
644 | # do this from memory we don't want clear text password in temp files |
1129 | # Do this from memory, as we don't want clear text passwords in temp files |
645 | local sql="UPDATE mysql.user SET Password = PASSWORD('${pwd1}') WHERE USER='root'" |
1130 | local sql="UPDATE mysql.user SET Password = PASSWORD('${pwd1}') WHERE USER='root'" |
646 | ${ROOT}/usr/bin/mysql${MY_SUFFIX} \ |
1131 | "${ROOT}/usr/bin/mysql" \ |
647 | --socket=${socket} \ |
1132 | --socket=${socket} \ |
648 | -hlocalhost \ |
1133 | -hlocalhost \ |
649 | -e "${sql}" |
1134 | -e "${sql}" |
650 | |
1135 | |
651 | einfo "Loading \"zoneinfo\" this step may require few seconds" |
1136 | einfo "Loading \"zoneinfo\", this step may require a few seconds ..." |
652 | |
1137 | |
653 | ${ROOT}/usr/bin/mysql${MY_SUFFIX} \ |
1138 | "${ROOT}/usr/bin/mysql" \ |
654 | --socket=${socket} \ |
1139 | --socket=${socket} \ |
655 | -hlocalhost \ |
1140 | -hlocalhost \ |
656 | -uroot \ |
1141 | -uroot \ |
657 | -p"${pwd1}" \ |
1142 | -p"${pwd1}" \ |
658 | mysql < "${sqltmp}" |
1143 | mysql < "${sqltmp}" |
659 | |
1144 | |
660 | # server stop and cleanup |
1145 | # Stop the server and cleanup |
661 | kill $(< "${pidfile}" ) |
1146 | kill $(< "${pidfile}" ) |
662 | rm "${sqltmp}" |
1147 | rm -f "${sqltmp}" |
663 | einfo "stopping the server," |
1148 | einfo "Stopping the server ..." |
664 | wait %1 |
1149 | wait %1 |
665 | einfo "done" |
1150 | einfo "Done" |
666 | } |
1151 | } |
667 | |
1152 | |
|
|
1153 | # @FUNCTION: mysql_pkg_postrm |
|
|
1154 | # @DESCRIPTION: |
|
|
1155 | # Remove mysql symlinks. |
668 | mysql_pkg_postrm() { |
1156 | mysql_pkg_postrm() { |
669 | mysql_lib_symlinks |
1157 | : # mysql_lib_symlinks "${D}" |
670 | if [[ ${SLOT} -gt 0 ]] ; then |
|
|
671 | einfo "you may want to run \"eselect myqsl list\" followed by a " |
|
|
672 | einfo "\"eselect myqsl list\" to chose the default mysql server" |
|
|
673 | fi |
|
|
674 | } |
1158 | } |