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