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