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