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