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