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