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