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