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