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