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