| 1 | # Copyright 1999-2005 Gentoo Foundation |
1 | # Copyright 1999-2006 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.12 2006/01/31 19:47:50 vivo Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/mysql.eclass,v 1.38 2006/10/20 13:14:21 chtekk Exp $ |
| 4 | |
4 | |
| 5 | # Author: Francesco Riosa <vivo at gentoo.org> |
5 | # Author: Francesco Riosa <vivo@gentoo.org> |
| 6 | # Maintainer: Francesco Riosa <vivo at gentoo.org> |
6 | # Maintainer: Luca Longinotti <chtekk@gentoo.org> |
| 7 | |
7 | |
|
|
8 | # Both MYSQL_VERSION_ID and MYSQL_PATCHSET_REV must be set in the ebuild too |
|
|
9 | # Note that MYSQL_VERSION_ID must be empty !!! |
|
|
10 | |
|
|
11 | # MYSQL_VERSION_ID will be: |
|
|
12 | # 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 |
|
|
14 | # depend on this variable. |
|
|
15 | # In particular, the code below transforms a $PVR like "5.0.18-r3" in "5001803" |
|
|
16 | |
|
|
17 | if [[ -z "${MYSQL_VERSION_ID}" ]] ; then |
|
|
18 | tpv=( ${PV//[-._]/ } ) ; tpv[3]="${PVR:${#PV}}" ; tpv[3]="${tpv[3]##*-r}" |
|
|
19 | for vatom in 0 1 2 3 ; do |
|
|
20 | # pad to length 2 |
|
|
21 | tpv[${vatom}]="00${tpv[${vatom}]}" |
|
|
22 | MYSQL_VERSION_ID="${MYSQL_VERSION_ID}${tpv[${vatom}]:0-2}" |
|
|
23 | done |
|
|
24 | # strip leading "0" (otherwise it's considered an octal number by BASH) |
|
|
25 | MYSQL_VERSION_ID=${MYSQL_VERSION_ID##"0"} |
|
|
26 | fi |
|
|
27 | |
|
|
28 | DEPEND="${DEPEND} |
|
|
29 | >=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 |
|
|
34 | >=sys-apps/texinfo-4.7-r1 |
|
|
35 | >=sys-apps/sed-4" |
|
|
36 | |
|
|
37 | RDEPEND="${DEPEND} selinux? ( sec-policy/selinux-mysql )" |
|
|
38 | |
|
|
39 | # dev-perl/DBD-mysql is needed by some scripts installed by MySQL |
|
|
40 | PDEPEND="perl? ( >=dev-perl/DBD-mysql-2.9004 )" |
|
|
41 | |
| 8 | inherit eutils flag-o-matic gnuconfig mysql_fx |
42 | inherit eutils flag-o-matic gnuconfig autotools mysql_fx |
| 9 | |
43 | |
| 10 | #major, minor only in the slot |
|
|
| 11 | SLOT=$(( ${MYSQL_VERSION_ID} / 10000 )) |
|
|
| 12 | |
|
|
| 13 | # shorten the path because the socket path length must be shorter than 107 chars |
44 | # Shorten the path because the socket path length must be shorter than 107 chars |
| 14 | # and we will run a mysql server during test phase |
45 | # and we will run a mysql server during test phase |
| 15 | S="${WORKDIR}/${PN}" |
46 | S="${WORKDIR}/${PN}" |
| 16 | |
47 | |
|
|
48 | # Define $MY_FIXED_PV for MySQL patchsets |
|
|
49 | MY_FIXED_PV="${PV/_alpha/}" |
|
|
50 | #MY_FIXED_PV="${MY_FIXED_PV/_beta/}" |
|
|
51 | #MY_FIXED_PV="${MY_FIXED_PV/_rc/}" |
|
|
52 | |
|
|
53 | # Define correct SRC_URIs |
|
|
54 | SRC_URI="mirror://mysql/Downloads/MySQL-${PV%.*}/${P/_/-}${MYSQL_RERELEASE}.tar.gz" |
|
|
55 | if [[ -n "${MYSQL_PATCHSET_REV}" ]] ; then |
|
|
56 | MYSQL_PATCHSET_FILENAME="${PN}-patchset-${MY_FIXED_PV}-r${MYSQL_PATCHSET_REV}.tar.bz2" |
|
|
57 | # We add the Gentoo mirror here, as we only use primaryuri for the MySQL tarball |
|
|
58 | SRC_URI="${SRC_URI} http://gentoo.longitekk.com/${MYSQL_PATCHSET_FILENAME}" |
|
|
59 | fi |
|
|
60 | |
| 17 | DESCRIPTION="A fast, multi-threaded, multi-user SQL database server" |
61 | DESCRIPTION="A fast, multi-threaded, multi-user SQL database server." |
| 18 | HOMEPAGE="http://www.mysql.com/" |
62 | HOMEPAGE="http://www.mysql.com/" |
| 19 | NEWP="${P/_/-}" |
63 | SLOT="0" |
| 20 | SRC_URI="mirror://mysql/Downloads/MySQL-${PV%.*}/${NEWP}.tar.gz |
|
|
| 21 | mirror://gentoo/mysql-extras-20060115.tar.bz2" |
|
|
| 22 | LICENSE="GPL-2" |
64 | LICENSE="GPL-2" |
| 23 | IUSE="big-tables berkdb debug minimal perl selinux srvdir ssl static" |
65 | IUSE="big-tables berkdb debug embedded minimal perl selinux srvdir ssl static" |
| 24 | RESTRICT="primaryuri confcache" |
66 | RESTRICT="confcache" |
| 25 | DEPEND="app-admin/eselect-mysql" |
67 | |
|
|
68 | mysql_version_is_at_least "4.01.00.00" \ |
|
|
69 | && IUSE="${IUSE} latin1" |
| 26 | |
70 | |
| 27 | mysql_version_is_at_least "4.01.03.00" \ |
71 | mysql_version_is_at_least "4.01.03.00" \ |
| 28 | && IUSE="${IUSE} cluster extraengine" |
72 | && IUSE="${IUSE} cluster extraengine" |
| 29 | |
73 | |
|
|
74 | mysql_version_is_at_least "5.00.00.00" \ |
|
|
75 | || IUSE="${IUSE} raid" |
|
|
76 | |
| 30 | mysql_version_is_at_least "5.00.18.00" \ |
77 | mysql_version_is_at_least "5.00.18.00" \ |
| 31 | && IUSE="${IUSE} max-idx-128" |
78 | && IUSE="${IUSE} max-idx-128" |
| 32 | |
79 | |
| 33 | mysql_version_is_at_least "5.01.00.00" \ |
80 | mysql_version_is_at_least "5.01.00.00" \ |
| 34 | && IUSE="${IUSE} innodb" |
81 | && IUSE="${IUSE} innodb" |
| 35 | |
82 | |
| 36 | EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_preinst pkg_postinst pkg_config pkg_postrm |
83 | EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_preinst \ |
|
|
84 | pkg_postinst pkg_config pkg_postrm |
|
|
85 | |
|
|
86 | # |
|
|
87 | # HELPER FUNCTIONS: |
|
|
88 | # |
| 37 | |
89 | |
| 38 | # void mysql_init_vars() |
90 | # void mysql_init_vars() |
| 39 | # |
91 | # |
| 40 | # initialize global variables |
92 | # Initialize global variables |
| 41 | # 2005-11-19 <vivo at gentoo.org> |
93 | # 2005-11-19 <vivo@gentoo.org> |
|
|
94 | |
| 42 | mysql_init_vars() { |
95 | mysql_init_vars() { |
| 43 | |
|
|
| 44 | if [[ ${SLOT} -eq 0 ]] ; then |
|
|
| 45 | MY_SUFFIX="" |
|
|
| 46 | else |
|
|
| 47 | MY_SUFFIX=${MY_SUFFIX:-"-${SLOT}"} |
|
|
| 48 | fi |
|
|
| 49 | MY_SHAREDSTATEDIR=${MY_SHAREDSTATEDIR:-"/usr/share/mysql${MY_SUFFIX}"} |
96 | MY_SHAREDSTATEDIR=${MY_SHAREDSTATEDIR="/usr/share/mysql"} |
| 50 | MY_SYSCONFDIR=${MY_SYSCONFDIR="/etc/mysql${MY_SUFFIX}"} |
97 | MY_SYSCONFDIR=${MY_SYSCONFDIR="/etc/mysql"} |
| 51 | MY_LIBDIR=${MY_LIBDIR="/usr/$(get_libdir)/mysql${MY_SUFFIX}"} |
98 | MY_LIBDIR=${MY_LIBDIR="/usr/$(get_libdir)/mysql"} |
| 52 | MY_LOCALSTATEDIR=${MY_LOCALSTATEDIR="/var/lib/mysql${MY_SUFFIX}"} |
99 | MY_LOCALSTATEDIR=${MY_LOCALSTATEDIR="/var/lib/mysql"} |
| 53 | MY_LOGDIR=${MY_LOGDIR="/var/log/mysql${MY_SUFFIX}"} |
100 | MY_LOGDIR=${MY_LOGDIR="/var/log/mysql"} |
| 54 | MY_INCLUDEDIR=${MY_INCLUDEDIR="/usr/include/mysql${MY_SUFFIX}"} |
101 | MY_INCLUDEDIR=${MY_INCLUDEDIR="/usr/include/mysql"} |
| 55 | |
102 | |
| 56 | if [ -z "${DATADIR}" ]; then |
103 | if [[ -z "${DATADIR}" ]] ; then |
| 57 | DATADIR="" |
104 | DATADIR="" |
| 58 | if [ -f "${SYSCONFDIR}/my.cnf" ] ; then |
105 | if [[ -f "${MY_SYSCONFDIR}/my.cnf" ]] ; then |
| 59 | DATADIR=`"my_print_defaults${MY_SUFFIX}" mysqld 2>/dev/null | sed -ne '/datadir/s|^--datadir=||p' | tail -n1` |
106 | DATADIR=`"my_print_defaults" mysqld 2>/dev/null \ |
|
|
107 | | sed -ne '/datadir/s|^--datadir=||p' \ |
|
|
108 | | tail -n1` |
| 60 | if [ -z "${DATADIR}" ]; then |
109 | if [[ -z "${DATADIR}" ]] ; then |
| 61 | if useq "srvdir" ; then |
110 | if useq "srvdir" ; then |
| 62 | DATADIR="/srv/localhost/mysql/datadir" |
111 | DATADIR="${ROOT}/srv/localhost/mysql/datadir" |
| 63 | else |
112 | else |
| 64 | DATADIR=`grep ^datadir "${SYSCONFDIR}/my.cnf" | sed -e 's/.*=\s*//'` |
113 | DATADIR=`grep ^datadir "${MY_SYSCONFDIR}/my.cnf" \ |
|
|
114 | | sed -e 's/.*=\s*//'` |
| 65 | fi |
115 | fi |
| 66 | fi |
116 | fi |
| 67 | fi |
117 | fi |
| 68 | if [ -z "${DATADIR}" ]; then |
118 | if [[ -z "${DATADIR}" ]] ; then |
|
|
119 | if useq "srvdir" ; then |
|
|
120 | DATADIR="${ROOT}/srv/localhost/mysql/datadir" |
|
|
121 | else |
| 69 | DATADIR="${MY_LOCALSTATEDIR}" |
122 | DATADIR="${MY_LOCALSTATEDIR}" |
|
|
123 | fi |
| 70 | einfo "Using default DATADIR" |
124 | einfo "Using default DATADIR" |
| 71 | fi |
125 | fi |
| 72 | einfo "MySQL DATADIR is ${DATADIR}" |
126 | einfo "MySQL DATADIR is ${DATADIR}" |
| 73 | |
127 | |
| 74 | if [ -z "${PREVIOUS_DATADIR}" ] ; then |
128 | if [[ -z "${PREVIOUS_DATADIR}" ]] ; then |
| 75 | if [ -a "${DATADIR}" ] ; then |
129 | if [[ -e "${DATADIR}" ]] ; then |
| 76 | ewarn "Previous datadir found, it's YOUR job to change" |
130 | ewarn "Previous datadir found, it's YOUR job to change" |
| 77 | ewarn "ownership and have care of it" |
131 | ewarn "ownership and take care of it" |
| 78 | PREVIOUS_DATADIR="yes" |
132 | PREVIOUS_DATADIR="yes" |
| 79 | export PREVIOUS_DATADIR |
|
|
| 80 | else |
133 | else |
| 81 | PREVIOUS_DATADIR="no" |
134 | PREVIOUS_DATADIR="no" |
| 82 | export PREVIOUS_DATADIR |
|
|
| 83 | fi |
135 | fi |
| 84 | fi |
136 | export PREVIOUS_DATADIR |
| 85 | fi |
137 | fi |
|
|
138 | fi |
| 86 | |
139 | |
| 87 | export MY_SUFFIX MY_SHAREDSTATEDIR MY_SYSCONFDIR |
140 | export MY_SHAREDSTATEDIR MY_SYSCONFDIR |
| 88 | export MY_LIBDIR MY_LOCALSTATEDIR MY_LOGDIR |
141 | export MY_LIBDIR MY_LOCALSTATEDIR MY_LOGDIR |
| 89 | export MY_INCLUDEDIR |
142 | export MY_INCLUDEDIR |
| 90 | export DATADIR |
143 | export DATADIR |
| 91 | } |
144 | } |
| 92 | |
145 | |
|
|
146 | configure_minimal() { |
|
|
147 | # these are things we exclude from a minimal build |
|
|
148 | # note that the server actually does get built and installed |
|
|
149 | # but we then delete it before packaging. |
|
|
150 | local minimal_exclude_list="server embedded-server extra-tools innodb bench berkeley-db row-based-replication" |
|
|
151 | |
|
|
152 | for i in ${minimal_exclude_list}; do |
|
|
153 | myconf="${myconf} --without-${i}" |
|
|
154 | done |
|
|
155 | myconf="${myconf} --with-extra-charsets=none" |
|
|
156 | } |
|
|
157 | |
|
|
158 | configure_common() { |
|
|
159 | myconf="${myconf} --enable-local-infile" |
|
|
160 | myconf="${myconf} --with-extra-charsets=all" |
|
|
161 | myconf="${myconf} --with-mysqld-user=mysql" |
|
|
162 | myconf="${myconf} --with-unix-socket-path='/var/run/mysqld/mysqld.sock'" |
|
|
163 | myconf="${myconf} --without-libwrap" |
|
|
164 | |
|
|
165 | if useq "static" ; then |
|
|
166 | myconf="${myconf} --with-mysqld-ldflags=-all-static" |
|
|
167 | myconf="${myconf} --with-client-ldflags=-all-static" |
|
|
168 | myconf="${myconf} --disable-shared" |
|
|
169 | else |
|
|
170 | myconf="${myconf} --enable-shared --enable-static" |
|
|
171 | fi |
|
|
172 | |
|
|
173 | if useq "debug" ; then |
|
|
174 | myconf="${myconf} --with-debug=full" |
|
|
175 | else |
|
|
176 | myconf="${myconf} --without-debug" |
|
|
177 | mysql_version_is_at_least "4.01.03.00" \ |
|
|
178 | && useq "cluster" \ |
|
|
179 | && myconf="${myconf} --without-ndb-debug" |
|
|
180 | fi |
|
|
181 | |
|
|
182 | if mysql_version_is_at_least "4.01.00.00" && ! useq "latin1" ; then |
|
|
183 | myconf="${myconf} --with-charset=utf8" |
|
|
184 | myconf="${myconf} --with-collation=utf8_general_ci" |
|
|
185 | else |
|
|
186 | myconf="${myconf} --with-charset=latin1" |
|
|
187 | myconf="${myconf} --with-collation=latin1_swedish_ci" |
|
|
188 | fi |
|
|
189 | |
|
|
190 | if useq "embedded" ; then |
|
|
191 | myconf="${myconf} --with-embedded-privilege-control" |
|
|
192 | myconf="${myconf} --with-embedded-server" |
|
|
193 | else |
|
|
194 | myconf="${myconf} --without-embedded-privilege-control" |
|
|
195 | myconf="${myconf} --without-embedded-server" |
|
|
196 | fi |
|
|
197 | |
|
|
198 | } |
|
|
199 | |
|
|
200 | configure_40_41_50() { |
|
|
201 | myconf="${myconf} $(use_with perl bench)" |
|
|
202 | myconf="${myconf} --enable-assembler" |
|
|
203 | myconf="${myconf} --with-extra-tools" |
|
|
204 | myconf="${myconf} --with-innodb" |
|
|
205 | myconf="${myconf} --without-readline" |
|
|
206 | mysql_version_is_at_least "5.00.00.00" || myconf="${myconf} $(use_with raid)" |
|
|
207 | |
|
|
208 | if useq "ssl" ; then |
|
|
209 | # --with-vio is not needed anymore, it's on by default and |
|
|
210 | # has been removed from configure |
|
|
211 | mysql_version_is_at_least "5.00.04.00" || myconf="${myconf} --with-vio" |
|
|
212 | if mysql_version_is_at_least "5.00.06.00" ; then |
|
|
213 | # myconf="${myconf} --with-yassl" |
|
|
214 | myconf="${myconf} --with-openssl" |
|
|
215 | else |
|
|
216 | myconf="${myconf} --with-openssl" |
|
|
217 | fi |
|
|
218 | else |
|
|
219 | myconf="${myconf} --without-openssl" |
|
|
220 | fi |
|
|
221 | |
|
|
222 | # The following fix is due to a bug with bdb on SPARC's. See: |
|
|
223 | # http://www.geocrawler.com/mail/msg.php3?msg_id=4754814&list=8 |
|
|
224 | # It comes down to non-64-bit safety problems. |
|
|
225 | if useq "sparc" || useq "alpha" || useq "hppa" || useq "mips" || useq "amd64" ; then |
|
|
226 | ewarn "bdb berkeley-db disabled due to incompatible arch" |
|
|
227 | myconf="${myconf} --without-berkeley-db" |
|
|
228 | else |
|
|
229 | useq "berkdb" && myconf="${myconf} --with-berkeley-db=./bdb" |
|
|
230 | fi |
|
|
231 | |
|
|
232 | if mysql_version_is_at_least "4.01.03.00" ; then |
|
|
233 | myconf="${myconf} --with-geometry" |
|
|
234 | myconf="${myconf} $(use_with cluster ndbcluster)" |
|
|
235 | fi |
|
|
236 | |
|
|
237 | mysql_version_is_at_least "4.01.11.00" \ |
|
|
238 | && myconf="${myconf} $(use_with big-tables)" |
|
|
239 | |
|
|
240 | if mysql_version_is_at_least "4.01.03.00" && useq "extraengine" ; then |
|
|
241 | # http://dev.mysql.com/doc/mysql/en/archive-storage-engine.html |
|
|
242 | myconf="${myconf} --with-archive-storage-engine" |
|
|
243 | |
|
|
244 | # http://dev.mysql.com/doc/mysql/en/csv-storage-engine.html |
|
|
245 | myconf="${myconf} --with-csv-storage-engine" |
|
|
246 | |
|
|
247 | # http://dev.mysql.com/doc/mysql/en/blackhole-storage-engine.html |
|
|
248 | myconf="${myconf} --with-blackhole-storage-engine" |
|
|
249 | |
|
|
250 | # http://dev.mysql.com/doc/mysql/en/federated-storage-engine.html |
|
|
251 | # http://dev.mysql.com/doc/mysql/en/federated-description.html |
|
|
252 | # http://dev.mysql.com/doc/mysql/en/federated-limitations.html |
|
|
253 | if mysql_version_is_at_least "5.00.03.00" ; then |
|
|
254 | einfo "Before using the Federated storage engine, please be sure to read" |
|
|
255 | einfo "http://dev.mysql.com/doc/mysql/en/federated-limitations.html" |
|
|
256 | myconf="${myconf} --with-federated-storage-engine" |
|
|
257 | fi |
|
|
258 | fi |
|
|
259 | |
|
|
260 | mysql_version_is_at_least "5.00.18.00" \ |
|
|
261 | && useq "max-idx-128" \ |
|
|
262 | && myconf="${myconf} --with-max-indexes=128" |
|
|
263 | } |
|
|
264 | |
|
|
265 | configure_51() { |
|
|
266 | # TODO : !!!!! readd --withouth-readline |
|
|
267 | # the failure depend upon config/ac-macros/readline.m4 checking into |
|
|
268 | # readline.h instead of history.h |
|
|
269 | myconf="${myconf} $(use_with big-tables)" |
|
|
270 | myconf="${myconf} $(use_with ssl)" |
|
|
271 | myconf="${myconf} --enable-assembler" |
|
|
272 | myconf="${myconf} --with-geometry" |
|
|
273 | myconf="${myconf} --with-readline" |
|
|
274 | myconf="${myconf} --with-row-based-replication" |
|
|
275 | myconf="${myconf} --with-zlib=/usr/$(get_libdir)" |
|
|
276 | myconf="${myconf} --without-pstack" |
|
|
277 | useq "max-idx-128" && myconf="${myconf} --with-max-indexes=128" |
|
|
278 | |
|
|
279 | # 5.1 introduces a new way to manage storage engines (plugins) |
|
|
280 | # like configuration=none |
|
|
281 | local plugins="csv,myisam,myisammrg,heap" |
|
|
282 | if useq "extraengine" ; then |
|
|
283 | # like configuration=max-no-ndb, archive and example removed in 5.1.11 |
|
|
284 | plugins="${plugins},blackhole,federated,ftexample,partition" |
|
|
285 | |
|
|
286 | einfo "before to use federated engine be sure to read" |
|
|
287 | einfo "http://dev.mysql.com/doc/refman/5.1/en/federated-limitations.html" |
|
|
288 | fi |
|
|
289 | |
|
|
290 | if useq "innodb" ; then |
|
|
291 | plugins="${plugins},innobase" |
|
|
292 | fi |
|
|
293 | |
|
|
294 | # like configuration=max-no-ndb |
|
|
295 | if useq "cluster" ; then |
|
|
296 | plugins="${plugins},ndbcluster" |
|
|
297 | myconf="${myconf} --with-ndb-binlog" |
|
|
298 | fi |
|
|
299 | |
|
|
300 | myconf="${myconf} --with-plugins=${plugins}" |
|
|
301 | } |
|
|
302 | |
|
|
303 | # |
|
|
304 | # EBUILD FUNCTIONS |
|
|
305 | # |
|
|
306 | |
| 93 | mysql_pkg_setup() { |
307 | mysql_pkg_setup() { |
| 94 | |
|
|
| 95 | enewgroup mysql 60 || die "problem adding group mysql" |
308 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
| 96 | enewuser mysql 60 -1 /dev/null mysql \ |
309 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
| 97 | || die "problem adding user mysql" |
310 | |
|
|
311 | if mysql_version_is_at_least "5.01.12.00" && useq "innodb" ; then |
|
|
312 | die "innodb now use cmake to build this is a TODO item" |
|
|
313 | fi |
|
|
314 | |
|
|
315 | # Check for USE flag problems in pkg_setup |
|
|
316 | if useq "static" && useq "ssl" ; then |
|
|
317 | eerror "MySQL does not support being built statically with SSL support enabled!" |
|
|
318 | die "MySQL does not support being built statically with SSL support enabled!" |
|
|
319 | fi |
|
|
320 | |
|
|
321 | if ! mysql_version_is_at_least "5.00.00.00" \ |
|
|
322 | && useq "raid" \ |
|
|
323 | && useq "static" ; then |
|
|
324 | eerror "USE flags 'raid' and 'static' conflict, you cannot build MySQL statically" |
|
|
325 | eerror "with RAID support enabled." |
|
|
326 | die "USE flags 'raid' and 'static' conflict!" |
|
|
327 | fi |
|
|
328 | |
|
|
329 | if mysql_version_is_at_least "4.01.03.00" \ |
|
|
330 | && ( useq "cluster" || useq "extraengine" ) \ |
|
|
331 | && useq "minimal" ; then |
|
|
332 | eerror "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
|
|
333 | die "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
|
|
334 | fi |
|
|
335 | |
|
|
336 | useq "berkdb" && ewarn "Berkley DB support is deprecated and will be removed in future versions" |
| 98 | } |
337 | } |
| 99 | |
338 | |
| 100 | mysql_src_unpack() { |
339 | mysql_src_unpack() { |
| 101 | |
340 | # Initialize the proper variables first |
| 102 | mysql_init_vars |
341 | mysql_init_vars |
| 103 | |
342 | |
| 104 | if useq static && useq ssl; then |
|
|
| 105 | local msg="MySQL does not support building statically with SSL support" |
|
|
| 106 | eerror "${msg}" |
|
|
| 107 | die "${msg}" |
|
|
| 108 | fi |
|
|
| 109 | |
|
|
| 110 | if mysql_version_is_at_least "4.01.03.00" \ |
|
|
| 111 | && useq cluster \ |
|
|
| 112 | || useq extraengine \ |
|
|
| 113 | && useq minimal ; then |
|
|
| 114 | die "USEs cluster, extraengine conflicts with \"minimal\"" |
|
|
| 115 | fi |
|
|
| 116 | |
|
|
| 117 | unpack ${A} || die |
343 | unpack ${A} |
| 118 | |
344 | |
| 119 | mv -f "${WORKDIR}/${NEWP}" "${S}" |
345 | mv -f "${WORKDIR}/${P/_/-}${MYSQL_RERELEASE}" "${S}" |
| 120 | cd "${S}" |
346 | cd "${S}" |
| 121 | |
347 | |
| 122 | EPATCH_SUFFIX="patch" |
348 | # Apply the patches for this MySQL version |
| 123 | mkdir -p "${EPATCH_SOURCE}" || die "unable to create epatch directory" |
349 | if [[ -d "${WORKDIR}/${MY_FIXED_PV}" ]] ; then |
| 124 | mysql_mv_patches |
350 | EPATCH_SOURCE="${WORKDIR}/${MY_FIXED_PV}" EPATCH_SUFFIX="patch" epatch |
| 125 | epatch || die "failed to apply all patches" |
351 | fi |
| 126 | |
352 | |
| 127 | # additional check, remove bundled zlib |
353 | # Additional checks, remove bundled zlib |
| 128 | rm -f "${S}/zlib/"*.[ch] |
354 | rm -f "${S}/zlib/"*.[ch] |
| 129 | sed -i -e "s/zlib\/Makefile dnl/dnl zlib\/Makefile/" "${S}/configure.in" |
355 | sed -i -e "s/zlib\/Makefile dnl/dnl zlib\/Makefile/" "${S}/configure.in" |
| 130 | rm -f scripts/mysqlbug |
356 | rm -f "scripts/mysqlbug" |
| 131 | |
|
|
| 132 | # Multilib issue with zlib detection |
|
|
| 133 | mysql_version_is_at_least "5.00.15.00" \ |
|
|
| 134 | && sed -i -e "s:zlib_dir/lib:zlib_dir/$(get_libdir):g" \ |
|
|
| 135 | "${S}/config/ac-macros/zlib.m4" |
|
|
| 136 | |
357 | |
| 137 | # Make charsets install in the right place |
358 | # Make charsets install in the right place |
| 138 | find . -name 'Makefile.am' \ |
359 | find . -name 'Makefile.am' \ |
| 139 | -exec sed --in-place -e 's!$(pkgdatadir)!'${MY_SHAREDSTATEDIR}'!g' {} \; |
360 | -exec sed --in-place -e 's!$(pkgdatadir)!'${MY_SHAREDSTATEDIR}'!g' {} \; |
| 140 | |
361 | |
| … | |
… | |
| 142 | mysql_version_is_at_least "5.00.15.00" \ |
363 | mysql_version_is_at_least "5.00.15.00" \ |
| 143 | && sed -i -e "s!@GENTOO_EXT@!${MY_SUFFIX}!g" \ |
364 | && sed -i -e "s!@GENTOO_EXT@!${MY_SUFFIX}!g" \ |
| 144 | -e "s!@GENTOO_SOCK_PATH@!var/run/mysqld!g" \ |
365 | -e "s!@GENTOO_SOCK_PATH@!var/run/mysqld!g" \ |
| 145 | "${S}/server-tools/instance-manager/Makefile.am" |
366 | "${S}/server-tools/instance-manager/Makefile.am" |
| 146 | |
367 | |
|
|
368 | if mysql_version_is_at_least "4.01.00.00" ; then |
| 147 | # remove what need to be recreated, so we are sure it's actually done |
369 | # Remove what needs to be recreated, so we're sure it's actually done |
| 148 | find . -name Makefile -o -name Makefile.in -o -name configure -exec rm -f {} \; |
370 | find . -name Makefile \ |
|
|
371 | -o -name Makefile.in \ |
|
|
372 | -o -name configure \ |
|
|
373 | -exec rm -f {} \; |
| 149 | rm ltmain.sh |
374 | rm -f "ltmain.sh" |
|
|
375 | rm -f "scripts/mysqlbug" |
|
|
376 | fi |
| 150 | |
377 | |
| 151 | local rebuilddirlist d buildstep bdbdir |
378 | local rebuilddirlist bdbdir d |
| 152 | |
379 | |
| 153 | if mysql_version_is_at_least "5.01.00.00" ; then |
380 | if mysql_version_is_at_least "5.01.00.00" ; then |
| 154 | rebuilddirlist=". storage/innobase" |
381 | rebuilddirlist=". storage/innobase" |
| 155 | bdbdir='storage/bdb/dist' |
382 | bdbdir='storage/bdb/dist' |
| 156 | else |
383 | else |
| 157 | rebuilddirlist=". innobase" |
384 | rebuilddirlist=". innobase" |
| 158 | bdbdir='bdb/dist' |
385 | bdbdir='bdb/dist' |
| 159 | fi |
386 | fi |
| 160 | |
387 | |
| 161 | for d in ${rebuilddirlist}; do |
388 | for d in ${rebuilddirlist} ; do |
| 162 | einfo "reconfiguring dir \"${d}\"" |
389 | einfo "Reconfiguring dir '${d}'" |
| 163 | pushd "${d}" &>/dev/null |
390 | pushd "${d}" &>/dev/null |
| 164 | for buildstep in \ |
391 | AT_GNUCONF_UPDATE="yes" eautoreconf |
| 165 | 'libtoolize --copy --force' \ |
|
|
| 166 | 'aclocal --force' \ |
|
|
| 167 | 'autoheader --force -Wnone' \ |
|
|
| 168 | 'autoconf --force -Wnone' \ |
|
|
| 169 | 'automake --force --force-missing -Wnone' \ |
|
|
| 170 | 'gnuconfig_update' |
|
|
| 171 | do |
|
|
| 172 | einfo "performing ${buildstep}" |
|
|
| 173 | ${buildstep} || die "failed ${buildstep/ */} dir \"${d}\"" |
|
|
| 174 | done |
|
|
| 175 | popd &>/dev/null |
392 | popd &>/dev/null |
| 176 | done |
393 | done |
| 177 | |
394 | |
|
|
395 | # TODO: berkdb in MySQL 5.1 needs to be worked on |
|
|
396 | if useq "berkdb" \ |
|
|
397 | && ! mysql_check_version_range "4.00.00.00 to 4.00.99.99" \ |
| 178 | if useq berkdb && ! mysql_check_version_range "5.01.00.00 to 5.01.06.99" |
398 | && ! mysql_check_version_range "5.01.00.00 to 5.01.08.99" ; then |
| 179 | then |
|
|
| 180 | [[ -w "${bdbdir}/ltmain.sh" ]] && cp -f ltmain.sh "${bdbdir}/ltmain.sh" |
399 | [[ -w "${bdbdir}/ltmain.sh" ]] && cp -f "ltmain.sh" "${bdbdir}/ltmain.sh" |
| 181 | pushd "${bdbdir}" && sh s_all || die "failed bdb reconfigure" &>/dev/null |
400 | pushd "${bdbdir}" \ |
|
|
401 | && sh s_all \ |
|
|
402 | || die "Failed bdb reconfigure" \ |
|
|
403 | &>/dev/null |
| 182 | popd &>/dev/null |
404 | popd &>/dev/null |
| 183 | fi |
405 | fi |
| 184 | |
|
|
| 185 | } |
406 | } |
| 186 | |
407 | |
| 187 | mysql_src_compile() { |
408 | mysql_src_compile() { |
| 188 | |
409 | # Make sure the vars are correctly initialized |
| 189 | mysql_init_vars |
410 | mysql_init_vars |
|
|
411 | |
| 190 | local myconf |
412 | local myconf |
| 191 | |
413 | |
| 192 | if useq static ; then |
414 | if useq "static" ; then |
| 193 | myconf="${myconf} --with-mysqld-ldflags=-all-static" |
415 | myconf="${myconf} --with-mysqld-ldflags=-all-static" |
| 194 | myconf="${myconf} --with-client-ldflags=-all-static" |
416 | myconf="${myconf} --with-client-ldflags=-all-static" |
| 195 | myconf="${myconf} --disable-shared" |
417 | myconf="${myconf} --disable-shared" |
| 196 | else |
418 | else |
| 197 | myconf="${myconf} --enable-shared --enable-static" |
419 | myconf="${myconf} --enable-shared --enable-static" |
| 198 | fi |
420 | fi |
| 199 | |
421 | |
| 200 | #myconf="${myconf} `use_with tcpd libwrap`" |
|
|
| 201 | myconf="${myconf} --without-libwrap" |
422 | myconf="${myconf} --without-libwrap" |
| 202 | |
423 | |
| 203 | if useq ssl ; then |
424 | if useq "ssl" ; then |
| 204 | # --with-vio is not needed anymore, it's on by default and |
425 | # --with-vio is not needed anymore, it's on by default and |
| 205 | # has been removed from configure |
426 | # has been removed from configure |
| 206 | mysql_version_is_at_least "5.00.04.00" || myconf="${myconf} --with-vio" |
427 | mysql_version_is_at_least "5.00.04.00" || myconf="${myconf} --with-vio" |
| 207 | if mysql_version_is_at_least "5.00.06.00" ; then |
428 | if mysql_version_is_at_least "5.00.06.00" ; then |
| 208 | # yassl-0.96 is young break with gcc-4.0 || amd64 |
429 | # yassl-0.96 is still young and breaks with GCC-4.X or amd64 |
| 209 | #myconf="${myconf} --with-yassl" |
430 | # myconf="${myconf} --with-yassl" |
| 210 | myconf="${myconf} --with-openssl" |
431 | myconf="${myconf} --with-openssl" |
| 211 | else |
432 | else |
| 212 | myconf="${myconf} --with-openssl" |
433 | myconf="${myconf} --with-openssl" |
| 213 | fi |
434 | fi |
| 214 | else |
435 | else |
| 215 | myconf="${myconf} --without-openssl" |
436 | myconf="${myconf} --without-openssl" |
| 216 | fi |
437 | fi |
| 217 | |
438 | |
| 218 | if useq debug; then |
439 | if useq "debug" ; then |
| 219 | myconf="${myconf} --with-debug=full" |
440 | myconf="${myconf} --with-debug=full" |
| 220 | else |
441 | else |
| 221 | myconf="${myconf} --without-debug" |
442 | myconf="${myconf} --without-debug" |
| 222 | mysql_version_is_at_least "4.01.03.00" && useq cluster && myconf="${myconf} --without-ndb-debug" |
|
|
| 223 | fi |
|
|
| 224 | |
443 | |
| 225 | # benchmarking stuff needs perl |
444 | mysql_version_is_at_least "4.01.03.00" && useq "cluster" \ |
| 226 | # and shouldn't be bothered with on minimal builds |
|
|
| 227 | if useq perl && ! useq minimal; then |
|
|
| 228 | myconf="${myconf} --with-bench" |
|
|
| 229 | else |
|
|
| 230 | myconf="${myconf} --without-bench" |
445 | && myconf="${myconf} --without-ndb-debug" |
| 231 | fi |
446 | fi |
| 232 | |
447 | |
| 233 | # these are things we exclude from a minimal build |
448 | # These are things we exclude from a minimal build. |
| 234 | # note that the server actually does get built and installed |
449 | # Note that the server actually does get built and installed, |
| 235 | # but we then delete it before packaging. |
450 | # but we then delete it. |
| 236 | local minimal_exclude_list="server embedded-server extra-tools innodb" |
451 | local minimal_exclude_list="server embedded-server extra-tools innodb bench" |
|
|
452 | |
| 237 | if ! useq minimal; then |
453 | if ! useq "minimal" ; then |
| 238 | for i in ${minimal_exclude_list}; do |
454 | myconf="${myconf} --with-server" |
|
|
455 | myconf="${myconf} --with-extra-tools" |
|
|
456 | |
|
|
457 | if ! mysql_version_is_at_least "5.00.00.00" ; then |
|
|
458 | if useq "raid" ; then |
| 239 | myconf="${myconf} --with-${i}" |
459 | myconf="${myconf} --with-raid" |
| 240 | done |
460 | else |
| 241 | |
|
|
| 242 | if useq static ; then |
|
|
| 243 | myconf="${myconf} --without-raid" |
461 | myconf="${myconf} --without-raid" |
| 244 | ewarn "disabling raid support, has problem with static" |
462 | fi |
|
|
463 | fi |
|
|
464 | |
|
|
465 | if mysql_version_is_at_least "4.01.00.00" && ! useq "latin1" ; then |
|
|
466 | myconf="${myconf} --with-charset=utf8" |
|
|
467 | myconf="${myconf} --with-collation=utf8_general_ci" |
| 245 | else |
468 | else |
| 246 | myconf="${myconf} --with-raid" |
469 | myconf="${myconf} --with-charset=latin1" |
|
|
470 | myconf="${myconf} --with-collation=latin1_swedish_ci" |
| 247 | fi |
471 | fi |
| 248 | |
472 | |
| 249 | if ! mysql_version_is_at_least "5.00.00.00" ; then |
473 | # Optional again with MySQL 5.1 |
| 250 | if mysql_version_is_at_least "4.01.00.00" ; then |
474 | if mysql_version_is_at_least "5.01.00.00" ; then |
|
|
475 | if useq "innodb" ; then |
| 251 | myconf="${myconf} --with-charset=utf8" |
476 | myconf="${myconf} --with-innodb" |
| 252 | myconf="${myconf} --with-collation=utf8_general_ci" |
|
|
| 253 | else |
477 | else |
| 254 | myconf="${myconf} --with-charset=latin1" |
478 | myconf="${myconf} --without-innodb" |
| 255 | myconf="${myconf} --with-collation=latin1_swedish_ci" |
|
|
| 256 | fi |
479 | fi |
| 257 | fi |
480 | fi |
| 258 | |
481 | |
| 259 | # optional again from 2005-12-05 |
|
|
| 260 | if mysql_version_is_at_least "5.01.00.00" ; then |
|
|
| 261 | myconf="${myconf} $(use_with innodb)" |
|
|
| 262 | else |
|
|
| 263 | myconf="${myconf} --with-innodb" |
|
|
| 264 | fi |
|
|
| 265 | |
|
|
| 266 | # lots of chars |
482 | # Lots of charsets |
| 267 | myconf="${myconf} --with-extra-charsets=all" |
483 | myconf="${myconf} --with-extra-charsets=all" |
| 268 | |
484 | |
| 269 | #The following fix is due to a bug with bdb on sparc's. See: |
485 | # The following fix is due to a bug with bdb on SPARC's. See: |
| 270 | #http://www.geocrawler.com/mail/msg.php3?msg_id=4754814&list=8 |
486 | # http://www.geocrawler.com/mail/msg.php3?msg_id=4754814&list=8 |
| 271 | # it comes down to non-64-bit safety problems |
487 | # It comes down to non-64-bit safety problems. |
| 272 | if useq sparc || useq alpha || useq hppa || useq mips || useq amd64 \ |
488 | if useq "sparc" || useq "alpha" || useq "hppa" || useq "mips" || useq "amd64" ; then |
| 273 | || mysql_check_version_range "5.01.00.00 to 5.01.06.99" |
|
|
| 274 | then |
|
|
| 275 | ewarn "bdb berkeley-db disabled due to arch or version" |
489 | ewarn "bdb berkeley-db disabled due to incompatible arch" |
| 276 | myconf="${myconf} --without-berkeley-db" |
490 | myconf="${myconf} --without-berkeley-db" |
| 277 | else |
491 | else |
| 278 | useq berkdb \ |
492 | # TODO: berkdb in MySQL 5.1 needs to be worked on |
|
|
493 | if useq "berkdb" && ! mysql_check_version_range "5.01.00.00 to 5.01.08.99" ; then |
| 279 | && myconf="${myconf} --with-berkeley-db=./bdb" \ |
494 | myconf="${myconf} --with-berkeley-db=./bdb" |
|
|
495 | else |
| 280 | || myconf="${myconf} --without-berkeley-db" |
496 | myconf="${myconf} --without-berkeley-db" |
|
|
497 | fi |
| 281 | fi |
498 | fi |
| 282 | |
499 | |
| 283 | if mysql_version_is_at_least "4.01.03.00" ; then |
500 | if mysql_version_is_at_least "4.01.03.00" ; then |
| 284 | #myconf="${myconf} $(use_with geometry)" |
|
|
| 285 | myconf="${myconf} --with-geometry" |
501 | myconf="${myconf} --with-geometry" |
|
|
502 | |
|
|
503 | if useq "cluster" ; then |
|
|
504 | myconf="${myconf} --with-ndbcluster" |
|
|
505 | else |
| 286 | myconf="${myconf} $(use_with cluster ndbcluster)" |
506 | myconf="${myconf} --without-ndbcluster" |
| 287 | fi |
507 | fi |
|
|
508 | fi |
| 288 | |
509 | |
| 289 | mysql_version_is_at_least "4.01.11.00" && myconf="${myconf} `use_with big-tables`" |
510 | if useq "big-tables" ; then |
|
|
511 | myconf="${myconf} --with-big-tables" |
| 290 | else |
512 | else |
|
|
513 | myconf="${myconf} --without-big-tables" |
|
|
514 | fi |
|
|
515 | |
|
|
516 | mysql_version_is_at_least "5.01.06.00" \ |
|
|
517 | && myconf="${myconf} --with-ndb-binlog" |
|
|
518 | |
|
|
519 | if useq "embedded" ; then |
|
|
520 | myconf="${myconf} --with-embedded-privilege-control" |
|
|
521 | myconf="${myconf} --with-embedded-server" |
|
|
522 | else |
|
|
523 | myconf="${myconf} --without-embedded-privilege-control" |
|
|
524 | myconf="${myconf} --without-embedded-server" |
|
|
525 | fi |
|
|
526 | |
|
|
527 | # Benchmarking stuff needs Perl |
|
|
528 | if useq "perl" ; then |
|
|
529 | myconf="${myconf} --with-bench" |
|
|
530 | else |
|
|
531 | myconf="${myconf} --without-bench" |
|
|
532 | fi |
|
|
533 | else |
| 291 | for i in ${minimal_exclude_list}; do |
534 | for i in ${minimal_exclude_list} ; do |
| 292 | myconf="${myconf} --without-${i}" |
535 | myconf="${myconf} --without-${i}" |
| 293 | done |
536 | done |
| 294 | myconf="${myconf} --without-berkeley-db" |
537 | myconf="${myconf} --without-berkeley-db" |
| 295 | myconf="${myconf} --with-extra-charsets=none" |
538 | myconf="${myconf} --with-extra-charsets=none" |
| 296 | fi |
539 | fi |
| 297 | |
540 | |
| 298 | if mysql_version_is_at_least "4.01.03.00" && useq extraengine; then |
541 | if mysql_version_is_at_least "4.01.03.00" && useq "extraengine" ; then |
| 299 | # http://dev.mysql.com/doc/mysql/en/archive-storage-engine.html |
542 | # http://dev.mysql.com/doc/mysql/en/archive-storage-engine.html |
| 300 | myconf="${myconf} --with-archive-storage-engine" |
543 | myconf="${myconf} --with-archive-storage-engine" |
|
|
544 | |
| 301 | # http://dev.mysql.com/doc/mysql/en/csv-storage-engine.html |
545 | # http://dev.mysql.com/doc/mysql/en/csv-storage-engine.html |
| 302 | |
|
|
| 303 | mysql_version_is_at_least "4.01.04.00" \ |
|
|
| 304 | && myconf="${myconf} --with-csv-storage-engine" |
546 | myconf="${myconf} --with-csv-storage-engine" |
| 305 | |
547 | |
| 306 | mysql_version_is_at_least "4.01.11.00" \ |
548 | # http://dev.mysql.com/doc/mysql/en/blackhole-storage-engine.html |
| 307 | && myconf="${myconf} --with-blackhole-storage-engine" |
549 | myconf="${myconf} --with-blackhole-storage-engine" |
| 308 | |
550 | |
|
|
551 | # http://dev.mysql.com/doc/mysql/en/federated-storage-engine.html |
| 309 | # http://dev.mysql.com/doc/mysql/en/federated-description.html |
552 | # http://dev.mysql.com/doc/mysql/en/federated-description.html |
| 310 | # http://dev.mysql.com/doc/mysql/en/federated-limitations.html |
553 | # http://dev.mysql.com/doc/mysql/en/federated-limitations.html |
| 311 | if mysql_version_is_at_least "5.00.03.00" ; then |
554 | if mysql_version_is_at_least "5.00.03.00" ; then |
| 312 | einfo "before to use federated engine be sure to read" |
555 | einfo "Before using the Federated storage engine, please be sure to read" |
| 313 | einfo "http://dev.mysql.com/doc/refman/5.0/en/federated-limitations.html" |
556 | einfo "http://dev.mysql.com/doc/mysql/en/federated-limitations.html" |
| 314 | myconf="${myconf} --with-federated-storage-engine" |
557 | myconf="${myconf} --with-federated-storage-engine" |
|
|
558 | fi |
| 315 | |
559 | |
| 316 | # http://dev.mysql.com/doc/refman/5.1/en/partitioning-overview.html |
560 | # http://dev.mysql.com/doc/refman/5.1/en/partitioning-overview.html |
| 317 | if mysql_version_is_at_least "5.01.00.00" ; then |
561 | if mysql_version_is_at_least "5.01.00.00" ; then |
| 318 | myconf="${myconf} --with-partition" |
562 | myconf="${myconf} --with-partition" |
| 319 | fi |
563 | fi |
| 320 | fi |
|
|
| 321 | |
|
|
| 322 | fi |
564 | fi |
| 323 | |
565 | |
| 324 | mysql_version_is_at_least "5.00.18.00" \ |
566 | mysql_version_is_at_least "5.00.18.00" \ |
| 325 | && useq "max-idx-128" \ |
567 | && useq "max-idx-128" \ |
| 326 | && myconf="${myconf} --with-max-indexes=128" |
568 | && myconf="${myconf} --with-max-indexes=128" |
| 327 | |
569 | |
| 328 | if mysql_version_is_at_least "5.01.05.00" ; then |
570 | mysql_version_is_at_least "5.01.05.00" \ |
| 329 | myconf="${myconf} --with-row-based-replication" |
571 | && myconf="${myconf} --with-row-based-replication" |
| 330 | fi |
|
|
| 331 | |
572 | |
|
|
573 | # TODO: Rechek again later, there were problems with assembler enabled |
|
|
574 | # and some combination of USE flags with MySQL 5.1 |
|
|
575 | if mysql_check_version_range "5.01.00.00 to 5.01.08.99" ; then |
|
|
576 | myconf="${myconf} --disable-assembler" |
|
|
577 | else |
|
|
578 | myconf="${myconf} --enable-assembler" |
|
|
579 | fi |
|
|
580 | |
| 332 | #Bug #114895,Bug #110149 |
581 | # Bug #114895, bug #110149 |
| 333 | filter-flags "-O" "-O[01]" |
582 | filter-flags "-O" "-O[01]" |
|
|
583 | |
| 334 | #glibc-2.3.2_pre fix; bug #16496 |
584 | # glib-2.3.2_pre fix, bug #16496 |
| 335 | append-flags "-DHAVE_ERRNO_AS_DEFINE=1" |
585 | append-flags "-DHAVE_ERRNO_AS_DEFINE=1" |
| 336 | |
586 | |
| 337 | #the compiler flags are as per their "official" spec ;) |
587 | append-flags "-fno-exceptions -fno-strict-aliasing" |
| 338 | #CFLAGS="${CFLAGS/-O?/} -O3" \ |
|
|
| 339 | export CXXFLAGS="${CXXFLAGS} -felide-constructors -fno-exceptions -fno-rtti" |
588 | CXXFLAGS="${CXXFLAGS} -felide-constructors -fno-rtti" |
| 340 | mysql_version_is_at_least "5.00.00.00" \ |
589 | mysql_version_is_at_least "5.00.00.00" \ |
| 341 | && export CXXFLAGS="${CXXFLAGS} -fno-implicit-templates" |
590 | && CXXFLAGS="${CXXFLAGS} -fno-implicit-templates" |
|
|
591 | export CXXFLAGS="${CXXFLAGS}" |
| 342 | |
592 | |
| 343 | econf \ |
593 | econf \ |
| 344 | --program-suffix="${MY_SUFFIX}" \ |
|
|
| 345 | --libexecdir="/usr/sbin" \ |
594 | --libexecdir="/usr/sbin" \ |
| 346 | --sysconfdir="${MY_SYSCONFDIR}" \ |
595 | --sysconfdir="${MY_SYSCONFDIR}" \ |
| 347 | --localstatedir="${MY_LOCALSTATEDIR}" \ |
596 | --localstatedir="${MY_LOCALSTATEDIR}" \ |
| 348 | --sharedstatedir="${MY_SHAREDSTATEDIR}" \ |
597 | --sharedstatedir="${MY_SHAREDSTATEDIR}" \ |
| 349 | --libdir="${MY_LIBDIR}" \ |
598 | --libdir="${MY_LIBDIR}" \ |
| 350 | --includedir="${MY_INCLUDEDIR}" \ |
599 | --includedir="${MY_INCLUDEDIR}" \ |
| 351 | --with-low-memory \ |
600 | --with-low-memory \ |
| 352 | --enable-assembler \ |
|
|
| 353 | --enable-local-infile \ |
601 | --enable-local-infile \ |
| 354 | --with-mysqld-user=mysql \ |
602 | --with-mysqld-user=mysql \ |
| 355 | --with-client-ldflags=-lstdc++ \ |
603 | --with-client-ldflags=-lstdc++ \ |
| 356 | --enable-thread-safe-client \ |
604 | --enable-thread-safe-client \ |
| 357 | --with-comment="Gentoo Linux ${PF}" \ |
605 | --with-comment="Gentoo Linux ${PF}" \ |
| 358 | --with-unix-socket-path="/var/run/mysqld/mysqld${MY_SUFFIX}.sock" \ |
606 | --with-unix-socket-path="/var/run/mysqld/mysqld.sock" \ |
| 359 | --with-zlib-dir=/usr \ |
|
|
| 360 | --with-lib-ccflags="-fPIC" \ |
|
|
| 361 | --without-readline \ |
607 | --without-readline \ |
| 362 | --without-docs \ |
608 | --without-docs \ |
| 363 | ${myconf} || die "bad ./configure" |
609 | ${myconf} || die "bad ./configure" |
| 364 | |
610 | |
| 365 | # TODO Move this before autoreconf !!! |
611 | # TODO: Move this before autoreconf !!! |
| 366 | find . -name 'Makefile' \ |
612 | find . -type f -name Makefile -print0 \ |
| 367 | -exec sed --in-place \ |
613 | | xargs -0 -n100 sed -i \ |
| 368 | -e 's|^pkglibdir\s*=\s*$(libdir)/mysql|pkglibdir = $(libdir)|' \ |
614 | -e 's|^pkglibdir *= *$(libdir)/mysql|pkglibdir = $(libdir)|;s|^pkgincludedir *= *$(includedir)/mysql|pkgincludedir = $(includedir)|' |
| 369 | -e 's|^pkgincludedir\s*=\s*$(includedir)/mysql|pkgincludedir = $(includedir)|' \ |
|
|
| 370 | {} \; |
|
|
| 371 | |
615 | |
| 372 | emake || die "compile problem" |
616 | emake || die "compile problem" |
| 373 | } |
617 | } |
| 374 | |
618 | |
| 375 | mysql_src_install() { |
619 | mysql_src_install() { |
| 376 | |
620 | # Make sure the vars are correctly initialized |
| 377 | mysql_init_vars |
621 | mysql_init_vars |
|
|
622 | |
| 378 | make install DESTDIR="${D}" benchdir_root="${MY_SHAREDSTATEDIR}" || die |
623 | make install DESTDIR="${D}" benchdir_root="${MY_SHAREDSTATEDIR}" || die "make install error" |
| 379 | |
624 | |
| 380 | insinto "${MY_INCLUDEDIR}" |
625 | insinto "${MY_INCLUDEDIR}" |
| 381 | doins "${MY_INCLUDEDIR}"/my_{config,dir}.h |
626 | doins "${MY_INCLUDEDIR}"/my_{config,dir}.h |
| 382 | |
627 | |
| 383 | # convenience links |
628 | # Convenience links |
| 384 | dosym "/usr/bin/mysqlcheck${MY_SUFFIX}" "/usr/bin/mysqlanalyze${MY_SUFFIX}" |
629 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlanalyze" |
| 385 | dosym "/usr/bin/mysqlcheck${MY_SUFFIX}" "/usr/bin/mysqlrepair${MY_SUFFIX}" |
630 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlrepair" |
| 386 | dosym "/usr/bin/mysqlcheck${MY_SUFFIX}" "/usr/bin/mysqloptimize${MY_SUFFIX}" |
631 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqloptimize" |
| 387 | |
632 | |
| 388 | # various junk (my-*.cnf moved elsewhere) |
633 | # Various junk (my-*.cnf moved elsewhere) |
| 389 | rm -rf "${D}/usr/share/info" |
634 | rm -Rf "${D}/usr/share/info" |
| 390 | for removeme in "mysql-log-rotate" mysql.server* \ |
635 | for removeme in "mysql-log-rotate" mysql.server* \ |
| 391 | binary-configure* my-*.cnf mi_test_all* |
636 | binary-configure* my-*.cnf mi_test_all* |
| 392 | do |
637 | do |
| 393 | rm -f ${D}/usr/share/mysql/${removeme} |
638 | rm -f "${D}"/usr/share/mysql/${removeme} |
| 394 | done |
639 | done |
| 395 | |
640 | |
| 396 | # TODO change at Makefile-am level |
|
|
| 397 | for moveme in "mysql_fix_privilege_tables.sql" \ |
|
|
| 398 | "fill_help_tables.sql" "ndb-config-2-node.ini" |
|
|
| 399 | do |
|
|
| 400 | mv -f "${D}/usr/share/mysql/${moveme}" "${D}/usr/share/mysql${MY_SUFFIX}/" 2>/dev/null |
|
|
| 401 | done |
|
|
| 402 | |
|
|
| 403 | if [[ -n "${MY_SUFFIX}" ]] ; then |
|
|
| 404 | local notcatched=$(ls "${D}/usr/share/mysql"/*) |
|
|
| 405 | if [[ -n "${notcatched}" ]] ; then |
|
|
| 406 | ewarn "QA notice" |
|
|
| 407 | ewarn "${notcatched} files in /usr/share/mysql" |
|
|
| 408 | ewarn "bug mysql-herd to manage them" |
|
|
| 409 | fi |
|
|
| 410 | rm -rf "${D}/usr/share/mysql" |
|
|
| 411 | fi |
|
|
| 412 | |
|
|
| 413 | # clean up stuff for a minimal build |
641 | # Clean up stuff for a minimal build |
| 414 | # this is anything server-specific |
|
|
| 415 | if useq minimal; then |
642 | if useq "minimal" ; then |
| 416 | rm -rf ${D}${MY_SHAREDSTATEDIR}/{mysql-test,sql-bench} |
643 | rm -Rf "${D}${MY_SHAREDSTATEDIR}"/{mysql-test,sql-bench} |
| 417 | 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} |
644 | 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} |
| 418 | rm -f "${D}/usr/sbin/mysqld${MY_SUFFIX}" |
645 | rm -f "${D}/usr/sbin/mysqld" |
| 419 | rm -f ${D}${MY_LIBDIR}/lib{heap,merge,nisam,my{sys,strings,sqld,isammrg,isam},vio,dbug}.a |
646 | rm -f "${D}${MY_LIBDIR}"/lib{heap,merge,nisam,my{sys,strings,sqld,isammrg,isam},vio,dbug}.a |
| 420 | fi |
647 | fi |
| 421 | |
648 | |
| 422 | # config stuff |
649 | # Configuration stuff |
|
|
650 | if mysql_version_is_at_least "4.01.00.00" ; then |
|
|
651 | mysql_mycnf_version="4.1" |
|
|
652 | else |
|
|
653 | mysql_mycnf_version="4.0" |
|
|
654 | fi |
| 423 | insinto "${MY_SYSCONFDIR}" |
655 | insinto "${MY_SYSCONFDIR}" |
| 424 | doins scripts/mysqlaccess.conf |
656 | doins "scripts/mysqlaccess.conf" |
| 425 | sed -e "s!@MY_SUFFIX@!${MY_SUFFIX}!g" \ |
|
|
| 426 | -e "s!@DATADIR@!${DATADIR}!g" \ |
657 | sed -e "s!@DATADIR@!${DATADIR}!g" \ |
| 427 | "${FILESDIR}/my.cnf-4.1-r1" \ |
658 | "${FILESDIR}/my.cnf-${mysql_mycnf_version}" \ |
| 428 | > "${TMPDIR}/my.cnf.ok" |
659 | > "${TMPDIR}/my.cnf.ok" |
|
|
660 | if mysql_version_is_at_least "4.01.00.00" && useq "latin1" ; then |
|
|
661 | sed -e "s|utf8|latin1|g" -i "${TMPDIR}/my.cnf.ok" |
|
|
662 | fi |
| 429 | newins "${TMPDIR}/my.cnf.ok" my.cnf |
663 | newins "${TMPDIR}/my.cnf.ok" my.cnf |
| 430 | |
664 | |
| 431 | insinto "/etc/conf.d" |
665 | insinto "/etc/conf.d" |
| 432 | newins "${FILESDIR}/mysql-slot.conf.d-r1" "mysql" |
666 | newins "${FILESDIR}/mysql.conf.d" "mysql" |
| 433 | mysql_version_is_at_least "5.00.11.00" \ |
667 | mysql_version_is_at_least "5.00.11.00" \ |
| 434 | && newins "${FILESDIR}/mysqlmanager-slot.conf.d" "mysqlmanager" |
668 | && newins "${FILESDIR}/mysqlmanager.conf.d" "mysqlmanager" |
| 435 | |
669 | |
| 436 | # minimal builds don't have the server |
670 | # Minimal builds don't have the MySQL server |
| 437 | if ! useq minimal; then |
671 | if ! useq "minimal" ; then |
| 438 | exeinto /etc/init.d |
672 | exeinto "/etc/init.d" |
| 439 | newexe "${FILESDIR}/mysql-slot.rc6-r3" "mysql" |
673 | newexe "${FILESDIR}/mysql.rc6" "mysql" |
| 440 | |
|
|
| 441 | mysql_version_is_at_least "5.00.11.00" \ |
674 | mysql_version_is_at_least "5.00.11.00" \ |
| 442 | && newexe "${FILESDIR}/mysqlmanager-slot.rc6" "mysqlmanager" |
675 | && newexe "${FILESDIR}/mysqlmanager.rc6" "mysqlmanager" |
|
|
676 | |
| 443 | insinto /etc/logrotate.d |
677 | insinto "/etc/logrotate.d" |
| 444 | sed -e "s!___MY_SUFFIX___!${MY_SUFFIX}!g" \ |
|
|
| 445 | "${FILESDIR}/logrotate-slot.mysql" \ |
|
|
| 446 | > "${TMPDIR}/logrotate.mysql" |
|
|
| 447 | newins "${TMPDIR}/logrotate.mysql" "mysql${MY_SUFFIX}" |
678 | newins "${FILESDIR}/logrotate.mysql" "mysql" |
| 448 | |
679 | |
| 449 | #empty dirs... |
680 | # Empty directories ... |
| 450 | diropts "-m0750" |
681 | diropts "-m0750" |
| 451 | if [[ "${PREVIOUS_DATADIR}" != "yes" ]] ; then |
682 | if [[ "${PREVIOUS_DATADIR}" != "yes" ]] ; then |
| 452 | dodir "${DATADIR}" |
683 | dodir "${DATADIR}" |
| 453 | keepdir "${DATADIR}" |
684 | keepdir "${DATADIR}" |
| 454 | chown -R mysql:mysql "${D}/${DATADIR}" |
685 | chown -R mysql:mysql "${D}/${DATADIR}" |
| … | |
… | |
| 460 | keepdir "${folder}" |
691 | keepdir "${folder}" |
| 461 | chown -R mysql:mysql "${D}/${folder}" |
692 | chown -R mysql:mysql "${D}/${folder}" |
| 462 | done |
693 | done |
| 463 | fi |
694 | fi |
| 464 | |
695 | |
| 465 | # docs |
696 | # Docs |
| 466 | dodoc README COPYING ChangeLog EXCEPTIONS-CLIENT INSTALL-SOURCE |
697 | dodoc README COPYING ChangeLog EXCEPTIONS-CLIENT INSTALL-SOURCE |
|
|
698 | |
| 467 | # minimal builds don't have the server |
699 | # Minimal builds don't have the MySQL server |
| 468 | if ! useq minimal; then |
700 | if ! useq "minimal" ; then |
| 469 | docinto "support-files" |
701 | docinto "support-files" |
| 470 | for script in \ |
702 | for script in \ |
| 471 | support-files/my-*.cnf \ |
703 | support-files/my-*.cnf \ |
| 472 | support-files/magic \ |
704 | support-files/magic \ |
| 473 | support-files/ndb-config-2-node.ini |
705 | support-files/ndb-config-2-node.ini |
| … | |
… | |
| 479 | for script in scripts/mysql* ; do |
711 | for script in scripts/mysql* ; do |
| 480 | [[ "${script%.sh}" == "${script}" ]] && dodoc "${script}" |
712 | [[ "${script%.sh}" == "${script}" ]] && dodoc "${script}" |
| 481 | done |
713 | done |
| 482 | fi |
714 | fi |
| 483 | |
715 | |
| 484 | # oops, temporary fix |
716 | ROOT="${D}" mysql_lib_symlinks |
| 485 | mysql_check_version_range "5.00.16.00 to 5.00.18.99" \ |
|
|
| 486 | && cp -f \ |
|
|
| 487 | "${WORKDIR}/mysql-extras/fill_help_tables.sql-5.0" \ |
|
|
| 488 | "${D}/usr/share/mysql${MY_SUFFIX}/fill_help_tables.sql" |
|
|
| 489 | } |
717 | } |
| 490 | |
718 | |
| 491 | mysql_pkg_preinst() { |
719 | mysql_pkg_preinst() { |
| 492 | |
|
|
| 493 | # create a list of files, to be used |
|
|
| 494 | # by external utilities |
|
|
| 495 | # will be used in pkg_postinst |
|
|
| 496 | local filelist="${TMPDIR}/FILELIST" |
|
|
| 497 | pushd "${D}/" &>/dev/null |
|
|
| 498 | mkdir -p "${ROOT}/var/lib/eselect/mysql/" |
|
|
| 499 | env -i find usr/bin/ usr/sbin/ usr/share/man \ |
|
|
| 500 | -type f -name "*${MY_SUFFIX}*" \ |
|
|
| 501 | -and -not -name "mysql_config${MY_SUFFIX}" \ |
|
|
| 502 | > "${filelist}" |
|
|
| 503 | echo "${MY_SYSCONFDIR#"/"}" >> "${filelist}" |
|
|
| 504 | echo "${MY_LIBDIR#"/"}" >> "${filelist}" |
|
|
| 505 | echo "${MY_SHAREDSTATEDIR#"/"}" >> "${filelist}" |
|
|
| 506 | popd &>/dev/null |
|
|
| 507 | |
|
|
| 508 | enewgroup mysql 60 || die "problem adding group mysql" |
720 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
| 509 | enewuser mysql 60 -1 /dev/null mysql \ |
721 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
| 510 | || die "problem adding user mysql" |
|
|
| 511 | } |
722 | } |
| 512 | |
723 | |
| 513 | mysql_pkg_postinst() { |
724 | mysql_pkg_postinst() { |
| 514 | |
725 | # Make sure the vars are correctly initialized |
| 515 | mysql_init_vars |
726 | mysql_init_vars |
| 516 | mysql_lib_symlinks |
|
|
| 517 | |
727 | |
| 518 | # mind at FEATURES=collision-protect before to remove this |
728 | # Check FEATURES="collision-protect" before removing this |
| 519 | [ -d "${ROOT}/var/log/mysql" ] \ |
729 | [[ -d "${ROOT}/var/log/mysql" ]] \ |
| 520 | || install -d -m0750 -o mysql -g mysql "${ROOT}${MY_LOGDIR}" |
730 | || install -d -m0750 -o mysql -g mysql "${ROOT}${MY_LOGDIR}" |
| 521 | |
731 | |
| 522 | #secure the logfiles... does this bother anybody? |
732 | # Secure the logfiles |
| 523 | touch "${ROOT}${MY_LOGDIR}"/mysql.{log,err} |
733 | touch "${ROOT}${MY_LOGDIR}"/mysql.{log,err} |
| 524 | chown mysql:mysql "${ROOT}${MY_LOGDIR}"/mysql* |
734 | chown mysql:mysql "${ROOT}${MY_LOGDIR}"/mysql* |
| 525 | chmod 0660 "${ROOT}${MY_LOGDIR}"/mysql* |
735 | chmod 0660 "${ROOT}${MY_LOGDIR}"/mysql* |
| 526 | |
736 | |
| 527 | # list of files, to be used |
|
|
| 528 | # by external utilities |
|
|
| 529 | mkdir -p "${ROOT}/var/lib/eselect/mysql/" |
|
|
| 530 | cp "${TMPDIR}/FILELIST" "${ROOT}/var/lib/eselect/mysql/mysql${MY_SUFFIX}" |
|
|
| 531 | |
|
|
| 532 | if ! useq minimal; then |
737 | if ! useq "minimal" ; then |
| 533 | if [[ ${SLOT} -gt 0 ]] ; then |
|
|
| 534 | if [[ -f "${ROOT}/usr/sbin/mysqld" ]] ; then |
|
|
| 535 | einfo "you may want to read:" |
|
|
| 536 | einfo "http://www.gentoo.org/doc/en/mysql-upgrade-slotted.xml" |
|
|
| 537 | else |
|
|
| 538 | local tmpres="$( eselect mysql show )" |
|
|
| 539 | # "like grep -q unset" |
|
|
| 540 | if [[ "{$tmpres}" == "{$tmpres/unset/}" ]] ; then |
|
|
| 541 | eselect mysql set 1 |
|
|
| 542 | else |
|
|
| 543 | einfo "The version of mysql emerged now stils is _NOT_ the default" |
|
|
| 544 | einfo "you may want to run \"eselect myqsl list\" followed by a " |
|
|
| 545 | einfo "\"eselect myqsl set 1\" to chose the default mysql server" |
|
|
| 546 | fi |
|
|
| 547 | fi |
|
|
| 548 | fi |
|
|
| 549 | |
|
|
| 550 | # your friendly public service announcement... |
738 | # Your friendly public service announcement ... |
| 551 | einfo |
739 | einfo |
| 552 | einfo "You might want to run:" |
740 | einfo "You might want to run:" |
| 553 | einfo "\"emerge --config =${CATEGORY}/${PF}\"" |
741 | einfo "\"emerge --config =${CATEGORY}/${PF}\"" |
| 554 | einfo "if this is a new install." |
742 | einfo "if this is a new install." |
| 555 | einfo |
743 | einfo |
|
|
744 | mysql_version_is_at_least "5.01.00.00" \ |
| 556 | einfo "InnoDB is not optional as of MySQL-4.0.24, at the request of upstream." |
745 | || einfo "InnoDB is *not* optional as of MySQL-4.0.24, at the request of upstream." |
| 557 | fi |
746 | fi |
|
|
747 | useq "berkdb" && ewarn "Berkley DB support is deprecated and will be removed in future versions" |
| 558 | } |
748 | } |
| 559 | |
749 | |
| 560 | mysql_pkg_config() { |
750 | mysql_pkg_config() { |
|
|
751 | # Make sure the vars are correctly initialized |
| 561 | mysql_init_vars |
752 | mysql_init_vars |
|
|
753 | |
| 562 | [[ -z "${DATADIR}" ]] && die "sorry, unable to find DATADIR" |
754 | [[ -z "${DATADIR}" ]] && die "Sorry, unable to find DATADIR" |
| 563 | |
755 | |
| 564 | if built_with_use dev-db/mysql minimal; then |
756 | if built_with_use dev-db/mysql minimal ; then |
| 565 | die "Minimal builds do NOT include the MySQL server" |
757 | die "Minimal builds do NOT include the MySQL server" |
| 566 | fi |
758 | fi |
| 567 | |
759 | |
| 568 | local pwd1="a" |
760 | local pwd1="a" |
| 569 | local pwd2="b" |
761 | local pwd2="b" |
| … | |
… | |
| 575 | ewarn "Please rename or delete it if you wish to replace it." |
767 | ewarn "Please rename or delete it if you wish to replace it." |
| 576 | die "MySQL database already exists!" |
768 | die "MySQL database already exists!" |
| 577 | fi |
769 | fi |
| 578 | |
770 | |
| 579 | einfo "Creating the mysql database and setting proper" |
771 | einfo "Creating the mysql database and setting proper" |
| 580 | einfo "permissions on it..." |
772 | einfo "permissions on it ..." |
| 581 | |
773 | |
| 582 | einfo "Insert a password for the mysql 'root' user" |
774 | einfo "Insert a password for the mysql 'root' user" |
| 583 | ewarn "Avoid [\"'\\_%] characters in the password" |
775 | ewarn "Avoid [\"'\\_%] characters in the password" |
| 584 | |
|
|
| 585 | read -rsp " >" pwd1 ; echo |
776 | read -rsp " >" pwd1 ; echo |
|
|
777 | |
| 586 | einfo "Check the password" |
778 | einfo "Retype the password" |
| 587 | read -rsp " >" pwd2 ; echo |
779 | read -rsp " >" pwd2 ; echo |
| 588 | |
780 | |
| 589 | if [[ "x$pwd1" != "x$pwd2" ]] ; then |
781 | if [[ "x$pwd1" != "x$pwd2" ]] ; then |
| 590 | die "Passwords are not the same" |
782 | die "Passwords are not the same" |
| 591 | fi |
783 | fi |
| 592 | |
784 | |
| 593 | local options="" |
785 | local options="" |
| 594 | local sqltmp="$(emktemp)" |
786 | local sqltmp="$(emktemp)" |
| 595 | |
787 | |
| 596 | local help_tables="${MY_SHAREDSTATEDIR}/fill_help_tables.sql" |
788 | local help_tables="${ROOT}${MY_SHAREDSTATEDIR}/fill_help_tables.sql" |
| 597 | [[ -r "${help_tables}" ]] \ |
789 | [[ -r "${help_tables}" ]] \ |
| 598 | && cp "${help_tables}" "${TMPDIR}/fill_help_tables.sql" \ |
790 | && cp "${help_tables}" "${TMPDIR}/fill_help_tables.sql" \ |
| 599 | || touch "${TMPDIR}/fill_help_tables.sql" |
791 | || touch "${TMPDIR}/fill_help_tables.sql" |
| 600 | help_tables="${TMPDIR}/fill_help_tables.sql" |
792 | help_tables="${TMPDIR}/fill_help_tables.sql" |
| 601 | |
793 | |
| 602 | pushd "${TMPDIR}" &>/dev/null |
794 | pushd "${TMPDIR}" &>/dev/null |
| 603 | ${ROOT}/usr/bin/mysql_install_db${MY_SUFFIX} | grep -B5 -A999 -i "ERROR" |
795 | "${ROOT}/usr/bin/mysql_install_db" | grep -B5 -A999 -i "ERROR" |
| 604 | popd &>/dev/null |
796 | popd &>/dev/null |
| 605 | [[ -f ${ROOT}/${DATADIR}/mysql/user.frm ]] || die "MySQL databases not installed" |
797 | [[ -f "${ROOT}/${DATADIR}/mysql/user.frm" ]] \ |
|
|
798 | || die "MySQL databases not installed" |
| 606 | chown -R mysql:mysql ${ROOT}/${DATADIR} 2> /dev/null |
799 | chown -R mysql:mysql "${ROOT}/${DATADIR}" 2> /dev/null |
| 607 | chmod 0750 ${ROOT}/${DATADIR} 2> /dev/null |
800 | chmod 0750 "${ROOT}/${DATADIR}" 2> /dev/null |
| 608 | |
801 | |
| 609 | if mysql_version_is_at_least "4.01.03.00" ; then |
802 | if mysql_version_is_at_least "4.01.03.00" ; then |
| 610 | options="--skip-ndbcluster" |
803 | options="--skip-ndbcluster" |
| 611 | |
804 | |
| 612 | # Filling timezones, see |
805 | # Filling timezones, see |
| 613 | # http://dev.mysql.com/doc/mysql/en/time-zone-support.html |
806 | # http://dev.mysql.com/doc/mysql/en/time-zone-support.html |
| 614 | ${ROOT}/usr/bin/mysql_tzinfo_to_sql${MY_SUFFIX} ${ROOT}/usr/share/zoneinfo \ |
807 | "${ROOT}/usr/bin/mysql_tzinfo_to_sql" "${ROOT}/usr/share/zoneinfo" > "${sqltmp}" 2>/dev/null |
| 615 | > "${sqltmp}" 2>/dev/null |
|
|
| 616 | |
808 | |
| 617 | if [[ -r "${help_tables}" ]] ; then |
809 | if [[ -r "${help_tables}" ]] ; then |
| 618 | cat "${help_tables}" >> "${sqltmp}" |
810 | cat "${help_tables}" >> "${sqltmp}" |
| 619 | fi |
811 | fi |
| 620 | fi |
812 | fi |
| 621 | |
813 | |
| 622 | local socket=${ROOT}/var/run/mysqld/mysqld${MY_SUFFIX}${RANDOM}.sock |
814 | local socket="${ROOT}/var/run/mysqld/mysqld${RANDOM}.sock" |
| 623 | local pidfile=${ROOT}/var/run/mysqld/mysqld${MY_SUFFIX}${RANDOM}.sock |
815 | local pidfile="${ROOT}/var/run/mysqld/mysqld${RANDOM}.pid" |
| 624 | local mysqld="${ROOT}/usr/sbin/mysqld${MY_SUFFIX} \ |
816 | local mysqld="${ROOT}/usr/sbin/mysqld \ |
| 625 | ${options} \ |
817 | ${options} \ |
| 626 | --user=mysql \ |
818 | --user=mysql \ |
| 627 | --skip-grant-tables \ |
819 | --skip-grant-tables \ |
| 628 | --basedir=${ROOT}/usr \ |
820 | --basedir=${ROOT}/usr \ |
| 629 | --datadir=${ROOT}/${DATADIR} \ |
821 | --datadir=${ROOT}/${DATADIR} \ |
| … | |
… | |
| 632 | --skip-networking \ |
824 | --skip-networking \ |
| 633 | --max_allowed_packet=8M \ |
825 | --max_allowed_packet=8M \ |
| 634 | --net_buffer_length=16K \ |
826 | --net_buffer_length=16K \ |
| 635 | --socket=${socket} \ |
827 | --socket=${socket} \ |
| 636 | --pid-file=${pidfile}" |
828 | --pid-file=${pidfile}" |
| 637 | $mysqld & |
829 | ${mysqld} & |
| 638 | while ! [[ -S "${socket}" || "${maxtry}" -lt 1 ]] ; do |
830 | while ! [[ -S "${socket}" || "${maxtry}" -lt 1 ]] ; do |
| 639 | maxtry=$(($maxtry-1)) |
831 | maxtry=$((${maxtry}-1)) |
| 640 | echo -n "." |
832 | echo -n "." |
| 641 | sleep 1 |
833 | sleep 1 |
| 642 | done |
834 | done |
| 643 | |
835 | |
| 644 | # do this from memory we don't want clear text password in temp files |
836 | # Do this from memory, as we don't want clear text passwords in temp files |
| 645 | local sql="UPDATE mysql.user SET Password = PASSWORD('${pwd1}') WHERE USER='root'" |
837 | local sql="UPDATE mysql.user SET Password = PASSWORD('${pwd1}') WHERE USER='root'" |
| 646 | ${ROOT}/usr/bin/mysql${MY_SUFFIX} \ |
838 | "${ROOT}/usr/bin/mysql" \ |
| 647 | --socket=${socket} \ |
839 | --socket=${socket} \ |
| 648 | -hlocalhost \ |
840 | -hlocalhost \ |
| 649 | -e "${sql}" |
841 | -e "${sql}" |
| 650 | |
842 | |
| 651 | einfo "Loading \"zoneinfo\" this step may require few seconds" |
843 | einfo "Loading \"zoneinfo\", this step may require a few seconds ..." |
| 652 | |
844 | |
| 653 | ${ROOT}/usr/bin/mysql${MY_SUFFIX} \ |
845 | "${ROOT}/usr/bin/mysql" \ |
| 654 | --socket=${socket} \ |
846 | --socket=${socket} \ |
| 655 | -hlocalhost \ |
847 | -hlocalhost \ |
| 656 | -uroot \ |
848 | -uroot \ |
| 657 | -p"${pwd1}" \ |
849 | -p"${pwd1}" \ |
| 658 | mysql < "${sqltmp}" |
850 | mysql < "${sqltmp}" |
| 659 | |
851 | |
| 660 | # server stop and cleanup |
852 | # Stop the server and cleanup |
| 661 | kill $(< "${pidfile}" ) |
853 | kill $(< "${pidfile}" ) |
| 662 | rm "${sqltmp}" |
854 | rm -f "${sqltmp}" |
| 663 | einfo "stopping the server," |
855 | einfo "Stopping the server ..." |
| 664 | wait %1 |
856 | wait %1 |
| 665 | einfo "done" |
857 | einfo "Done" |
| 666 | } |
858 | } |
| 667 | |
859 | |
| 668 | mysql_pkg_postrm() { |
860 | mysql_pkg_postrm() { |
| 669 | mysql_lib_symlinks |
861 | mysql_lib_symlinks |
| 670 | if [[ ${SLOT} -gt 0 ]] ; then |
|
|
| 671 | einfo "you may want to run \"eselect myqsl list\" followed by a " |
|
|
| 672 | einfo "\"eselect myqsl list\" to chose the default mysql server" |
|
|
| 673 | fi |
|
|
| 674 | } |
862 | } |