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