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