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