| 1 | # Copyright 1999-2006 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.32 2006/05/31 20:45:49 chtekk Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/mysql.eclass,v 1.47 2006/12/10 02:33:30 vivo Exp $ |
| 4 | |
4 | |
| 5 | # Author: Francesco Riosa <vivo@gentoo.org> |
5 | # Author: Francesco Riosa <vivo@gentoo.org> |
| 6 | # Maintainer: Luca Longinotti <chtekk@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 |
8 | # Both MYSQL_VERSION_ID and MYSQL_PATCHSET_REV must be set in the ebuild too |
| … | |
… | |
| 23 | done |
23 | done |
| 24 | # strip leading "0" (otherwise it's considered an octal number by BASH) |
24 | # strip leading "0" (otherwise it's considered an octal number by BASH) |
| 25 | MYSQL_VERSION_ID=${MYSQL_VERSION_ID##"0"} |
25 | MYSQL_VERSION_ID=${MYSQL_VERSION_ID##"0"} |
| 26 | fi |
26 | fi |
| 27 | |
27 | |
| 28 | DEPEND="${DEPEND} |
28 | inherit eutils flag-o-matic gnuconfig autotools mysql_fx |
|
|
29 | |
|
|
30 | # Be warned, *DEPEND are version-dependant |
|
|
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 |
| 29 | >=sys-libs/readline-4.1 |
35 | >=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 |
36 | >=sys-libs/zlib-1.2.3" |
| 34 | >=sys-apps/texinfo-4.7-r1 |
37 | |
| 35 | >=sys-apps/sed-4" |
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 )" |
| 36 | |
44 | |
| 37 | RDEPEND="${DEPEND} selinux? ( sec-policy/selinux-mysql )" |
45 | RDEPEND="${DEPEND} selinux? ( sec-policy/selinux-mysql )" |
| 38 | |
46 | |
| 39 | # dev-perl/DBD-mysql is needed by some scripts installed by MySQL |
47 | # dev-perl/DBD-mysql is needed by some scripts installed by MySQL |
| 40 | PDEPEND="perl? ( >=dev-perl/DBD-mysql-2.9004 )" |
48 | PDEPEND="perl? ( >=dev-perl/DBD-mysql-2.9004 )" |
| 41 | |
49 | |
| 42 | inherit eutils flag-o-matic gnuconfig autotools mysql_fx |
|
|
| 43 | |
|
|
| 44 | # 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 |
| 45 | # and we will run a mysql server during test phase |
51 | # and we will run a mysql server during test phase |
| 46 | S="${WORKDIR}/${PN}" |
52 | S="${WORKDIR}/mysql" # BitKeeper ebuilds |
| 47 | |
53 | |
| 48 | # Define $MY_FIXED_PV for MySQL patchsets |
54 | # Define $MY_FIXED_PV for MySQL patchsets |
| 49 | MY_FIXED_PV="${PV/_alpha/}" |
55 | MY_FIXED_PV="${PV/_alpha/}" |
| 50 | MY_FIXED_PV="${MY_FIXED_PV/_beta/}" |
56 | #MY_FIXED_PV="${MY_FIXED_PV/_beta/}" |
| 51 | MY_FIXED_PV="${MY_FIXED_PV/_rc/}" |
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/}" |
| 52 | |
62 | |
| 53 | # Define correct SRC_URIs |
63 | # Define correct SRC_URIs |
| 54 | SRC_URI="mirror://mysql/Downloads/MySQL-${PV%.*}/${P/_/-}.tar.gz" |
64 | SRC_URI="${BASE_URI}/${MY_P}${MYSQL_RERELEASE}.tar.gz" |
| 55 | if [[ -n "${MYSQL_PATCHSET_REV}" ]] ; then |
65 | if [[ -n "${MYSQL_PATCHSET_REV}" ]] ; then |
| 56 | MYSQL_PATCHSET_FILENAME="${PN}-patchset-${MY_FIXED_PV}-r${MYSQL_PATCHSET_REV}.tar.bz2" |
66 | MYSQL_PATCHSET_FILENAME="${PN}-patchset-${MY_FIXED_PV}-r${MYSQL_PATCHSET_REV}.tar.bz2" |
| 57 | # We add the Gentoo mirror here, as we only use primaryuri for the MySQL tarball |
67 | # We add the Gentoo mirror here, as we only use primaryuri for the MySQL tarball |
| 58 | SRC_URI="${SRC_URI} mirror://gentoo/${MYSQL_PATCHSET_FILENAME} http://gentoo.longitekk.com/${MYSQL_PATCHSET_FILENAME}" |
68 | SRC_URI="${SRC_URI} http://g3nt8.org/patches/${MYSQL_PATCHSET_FILENAME}" |
| 59 | fi |
69 | fi |
| 60 | |
70 | |
| 61 | DESCRIPTION="A fast, multi-threaded, multi-user SQL database server." |
71 | DESCRIPTION="A fast, multi-threaded, multi-user SQL database server." |
| 62 | HOMEPAGE="http://www.mysql.com/" |
72 | HOMEPAGE="http://www.mysql.com/" |
| 63 | SLOT="0" |
73 | SLOT="0" |
| 64 | LICENSE="GPL-2" |
74 | LICENSE="GPL-2" |
| 65 | IUSE="big-tables berkdb debug embedded minimal perl selinux srvdir ssl static" |
75 | IUSE="big-tables debug embedded minimal perl selinux srvdir ssl static" |
| 66 | RESTRICT="primaryuri confcache" |
76 | RESTRICT="confcache" |
| 67 | |
77 | |
| 68 | mysql_version_is_at_least "4.01.00.00" \ |
78 | mysql_version_is_at_least "4.01.00.00" \ |
| 69 | && IUSE="${IUSE} latin1" |
79 | && IUSE="${IUSE} latin1" |
| 70 | |
80 | |
| 71 | mysql_version_is_at_least "4.01.03.00" \ |
81 | mysql_version_is_at_least "4.01.03.00" \ |
| … | |
… | |
| 78 | && IUSE="${IUSE} max-idx-128" |
88 | && IUSE="${IUSE} max-idx-128" |
| 79 | |
89 | |
| 80 | mysql_version_is_at_least "5.01.00.00" \ |
90 | mysql_version_is_at_least "5.01.00.00" \ |
| 81 | && IUSE="${IUSE} innodb" |
91 | && IUSE="${IUSE} innodb" |
| 82 | |
92 | |
|
|
93 | mysql_version_is_at_least "5.01.00.00" \ |
|
|
94 | || IUSE="${IUSE} berkdb" |
|
|
95 | |
| 83 | EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_preinst \ |
96 | EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_preinst \ |
| 84 | pkg_postinst pkg_config pkg_postrm |
97 | pkg_postinst pkg_config pkg_postrm |
|
|
98 | |
|
|
99 | # |
|
|
100 | # HELPER FUNCTIONS: |
|
|
101 | # |
| 85 | |
102 | |
| 86 | # void mysql_init_vars() |
103 | # void mysql_init_vars() |
| 87 | # |
104 | # |
| 88 | # Initialize global variables |
105 | # Initialize global variables |
| 89 | # 2005-11-19 <vivo@gentoo.org> |
106 | # 2005-11-19 <vivo@gentoo.org> |
| … | |
… | |
| 117 | else |
134 | else |
| 118 | DATADIR="${MY_LOCALSTATEDIR}" |
135 | DATADIR="${MY_LOCALSTATEDIR}" |
| 119 | fi |
136 | fi |
| 120 | einfo "Using default DATADIR" |
137 | einfo "Using default DATADIR" |
| 121 | fi |
138 | fi |
| 122 | einfo "MySQL DATADIR is ${DATADIR}" |
139 | elog "MySQL DATADIR is ${DATADIR}" |
| 123 | |
140 | |
| 124 | if [[ -z "${PREVIOUS_DATADIR}" ]] ; then |
141 | if [[ -z "${PREVIOUS_DATADIR}" ]] ; then |
| 125 | if [[ -e "${DATADIR}" ]] ; then |
142 | if [[ -e "${DATADIR}" ]] ; then |
| 126 | ewarn "Previous datadir found, it's YOUR job to change" |
143 | elog "Previous datadir found, it's YOUR job to change" |
| 127 | ewarn "ownership and take care of it" |
144 | elog "ownership and take care of it" |
| 128 | PREVIOUS_DATADIR="yes" |
145 | PREVIOUS_DATADIR="yes" |
| 129 | else |
146 | else |
| 130 | PREVIOUS_DATADIR="no" |
147 | PREVIOUS_DATADIR="no" |
| 131 | fi |
148 | fi |
| 132 | export PREVIOUS_DATADIR |
149 | export PREVIOUS_DATADIR |
| … | |
… | |
| 137 | export MY_LIBDIR MY_LOCALSTATEDIR MY_LOGDIR |
154 | export MY_LIBDIR MY_LOCALSTATEDIR MY_LOGDIR |
| 138 | export MY_INCLUDEDIR |
155 | export MY_INCLUDEDIR |
| 139 | export DATADIR |
156 | export DATADIR |
| 140 | } |
157 | } |
| 141 | |
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 | |
|
|
179 | configure_common() { |
|
|
180 | myconf="${myconf} $(use_with big-tables)" |
|
|
181 | myconf="${myconf} --enable-local-infile" |
|
|
182 | myconf="${myconf} --with-extra-charsets=all" |
|
|
183 | myconf="${myconf} --with-mysqld-user=mysql" |
|
|
184 | myconf="${myconf} --with-server" |
|
|
185 | myconf="${myconf} --with-unix-socket-path=/var/run/mysqld/mysqld.sock" |
|
|
186 | myconf="${myconf} --without-libwrap" |
|
|
187 | |
|
|
188 | if useq "static" ; then |
|
|
189 | myconf="${myconf} --with-mysqld-ldflags=-all-static" |
|
|
190 | myconf="${myconf} --with-client-ldflags=-all-static" |
|
|
191 | myconf="${myconf} --disable-shared" |
|
|
192 | else |
|
|
193 | myconf="${myconf} --enable-shared --enable-static" |
|
|
194 | fi |
|
|
195 | |
|
|
196 | if useq "debug" ; then |
|
|
197 | myconf="${myconf} --with-debug=full" |
|
|
198 | else |
|
|
199 | myconf="${myconf} --without-debug" |
|
|
200 | mysql_version_is_at_least "4.01.03.00" \ |
|
|
201 | && useq "cluster" \ |
|
|
202 | && myconf="${myconf} --without-ndb-debug" |
|
|
203 | fi |
|
|
204 | |
|
|
205 | if mysql_version_is_at_least "4.01.00.00" && ! useq "latin1" ; then |
|
|
206 | myconf="${myconf} --with-charset=utf8" |
|
|
207 | myconf="${myconf} --with-collation=utf8_general_ci" |
|
|
208 | else |
|
|
209 | myconf="${myconf} --with-charset=latin1" |
|
|
210 | myconf="${myconf} --with-collation=latin1_swedish_ci" |
|
|
211 | fi |
|
|
212 | |
|
|
213 | if useq "embedded" ; then |
|
|
214 | myconf="${myconf} --with-embedded-privilege-control" |
|
|
215 | myconf="${myconf} --with-embedded-server" |
|
|
216 | else |
|
|
217 | myconf="${myconf} --without-embedded-privilege-control" |
|
|
218 | myconf="${myconf} --without-embedded-server" |
|
|
219 | fi |
|
|
220 | |
|
|
221 | } |
|
|
222 | |
|
|
223 | configure_40_41_50() { |
|
|
224 | myconf="${myconf} $(use_with perl bench)" |
|
|
225 | myconf="${myconf} --enable-assembler" |
|
|
226 | myconf="${myconf} --with-extra-tools" |
|
|
227 | myconf="${myconf} --with-innodb" |
|
|
228 | myconf="${myconf} --without-readline" |
|
|
229 | mysql_version_is_at_least "5.00.00.00" || myconf="${myconf} $(use_with raid)" |
|
|
230 | |
|
|
231 | if useq "ssl" ; then |
|
|
232 | # --with-vio is not needed anymore, it's on by default and |
|
|
233 | # has been removed from configure |
|
|
234 | mysql_version_is_at_least "5.00.04.00" || myconf="${myconf} --with-vio" |
|
|
235 | if mysql_version_is_at_least "5.00.06.00" ; then |
|
|
236 | # myconf="${myconf} --with-yassl" |
|
|
237 | myconf="${myconf} --with-openssl" |
|
|
238 | else |
|
|
239 | myconf="${myconf} --with-openssl" |
|
|
240 | fi |
|
|
241 | else |
|
|
242 | myconf="${myconf} --without-openssl" |
|
|
243 | fi |
|
|
244 | |
|
|
245 | # The following fix is due to a bug with bdb on SPARC's. See: |
|
|
246 | # http://www.geocrawler.com/mail/msg.php3?msg_id=4754814&list=8 |
|
|
247 | # It comes down to non-64-bit safety problems. |
|
|
248 | if useq "sparc" || useq "alpha" || useq "hppa" || useq "mips" || useq "amd64" ; then |
|
|
249 | elog "Berkeley DB support was disabled due to incompatible arch" |
|
|
250 | myconf="${myconf} --without-berkeley-db" |
|
|
251 | else |
|
|
252 | if useq "berkdb" ; then |
|
|
253 | myconf="${myconf} --with-berkeley-db=./bdb" |
|
|
254 | else |
|
|
255 | myconf="${myconf} --without-berkeley-db" |
|
|
256 | fi |
|
|
257 | fi |
|
|
258 | |
|
|
259 | if mysql_version_is_at_least "4.01.03.00" ; then |
|
|
260 | myconf="${myconf} --with-geometry" |
|
|
261 | myconf="${myconf} $(use_with cluster ndbcluster)" |
|
|
262 | fi |
|
|
263 | |
|
|
264 | if mysql_version_is_at_least "4.01.03.00" && useq "extraengine" ; then |
|
|
265 | # http://dev.mysql.com/doc/mysql/en/archive-storage-engine.html |
|
|
266 | myconf="${myconf} --with-archive-storage-engine" |
|
|
267 | |
|
|
268 | # http://dev.mysql.com/doc/mysql/en/csv-storage-engine.html |
|
|
269 | myconf="${myconf} --with-csv-storage-engine" |
|
|
270 | |
|
|
271 | # http://dev.mysql.com/doc/mysql/en/blackhole-storage-engine.html |
|
|
272 | myconf="${myconf} --with-blackhole-storage-engine" |
|
|
273 | |
|
|
274 | # http://dev.mysql.com/doc/mysql/en/federated-storage-engine.html |
|
|
275 | # http://dev.mysql.com/doc/mysql/en/federated-description.html |
|
|
276 | # http://dev.mysql.com/doc/mysql/en/federated-limitations.html |
|
|
277 | if mysql_version_is_at_least "5.00.03.00" ; then |
|
|
278 | elog "Before using the Federated storage engine, please be sure to read" |
|
|
279 | elog "http://dev.mysql.com/doc/mysql/en/federated-limitations.html" |
|
|
280 | myconf="${myconf} --with-federated-storage-engine" |
|
|
281 | fi |
|
|
282 | fi |
|
|
283 | |
|
|
284 | mysql_version_is_at_least "5.00.18.00" \ |
|
|
285 | && useq "max-idx-128" \ |
|
|
286 | && myconf="${myconf} --with-max-indexes=128" |
|
|
287 | } |
|
|
288 | |
|
|
289 | configure_51() { |
|
|
290 | # TODO: !!!! readd --without-readline |
|
|
291 | # the failure depend upon config/ac-macros/readline.m4 checking into |
|
|
292 | # readline.h instead of history.h |
|
|
293 | myconf="${myconf} $(use_with ssl)" |
|
|
294 | myconf="${myconf} --enable-assembler" |
|
|
295 | myconf="${myconf} --with-geometry" |
|
|
296 | myconf="${myconf} --with-readline" |
|
|
297 | myconf="${myconf} --with-row-based-replication" |
|
|
298 | myconf="${myconf} --with-zlib=/usr/$(get_libdir)" |
|
|
299 | myconf="${myconf} --without-pstack" |
|
|
300 | useq "max-idx-128" && myconf="${myconf} --with-max-indexes=128" |
|
|
301 | |
|
|
302 | # 5.1 introduces a new way to manage storage engines (plugins) |
|
|
303 | # like configuration=none |
|
|
304 | local plugins="csv,myisam,myisammrg,heap" |
|
|
305 | if useq "extraengine" ; then |
|
|
306 | # like configuration=max-no-ndb, archive and example removed in 5.1.11 |
|
|
307 | plugins="${plugins},archive,blackhole,example,federated,ftexample,partition" |
|
|
308 | |
|
|
309 | elog "Before using the Federated storage engine, please be sure to read" |
|
|
310 | elog "http://dev.mysql.com/doc/refman/5.1/en/federated-limitations.html" |
|
|
311 | fi |
|
|
312 | |
|
|
313 | if useq "innodb" ; then |
|
|
314 | plugins="${plugins},innobase" |
|
|
315 | fi |
|
|
316 | |
|
|
317 | # like configuration=max-no-ndb |
|
|
318 | if useq "cluster" ; then |
|
|
319 | plugins="${plugins},ndbcluster" |
|
|
320 | myconf="${myconf} --with-ndb-binlog" |
|
|
321 | fi |
|
|
322 | |
|
|
323 | myconf="${myconf} --with-plugins=${plugins}" |
|
|
324 | } |
|
|
325 | |
|
|
326 | # |
|
|
327 | # EBUILD FUNCTIONS |
|
|
328 | # |
|
|
329 | |
| 142 | mysql_pkg_setup() { |
330 | mysql_pkg_setup() { |
| 143 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
331 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
| 144 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
332 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
|
|
333 | |
|
|
334 | if mysql_version_is_at_least "5.01.12.00" && useq "innodb" ; then |
|
|
335 | eerror "InnoDB now uses cmake to build, this is a TODO item, will be fixed shortly!" |
|
|
336 | die "InnoDB now uses cmake to build, this is a TODO item, will be fixed shortly!" |
|
|
337 | fi |
| 145 | |
338 | |
| 146 | # Check for USE flag problems in pkg_setup |
339 | # Check for USE flag problems in pkg_setup |
| 147 | if useq "static" && useq "ssl" ; then |
340 | if useq "static" && useq "ssl" ; then |
| 148 | eerror "MySQL does not support being built statically with SSL support enabled!" |
341 | eerror "MySQL does not support being built statically with SSL support enabled!" |
| 149 | die "MySQL does not support being built statically with SSL support enabled!" |
342 | die "MySQL does not support being built statically with SSL support enabled!" |
| … | |
… | |
| 161 | && ( useq "cluster" || useq "extraengine" ) \ |
354 | && ( useq "cluster" || useq "extraengine" ) \ |
| 162 | && useq "minimal" ; then |
355 | && useq "minimal" ; then |
| 163 | eerror "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
356 | eerror "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
| 164 | die "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
357 | die "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
| 165 | fi |
358 | fi |
|
|
359 | |
|
|
360 | mysql_check_version_range "4.00.00.00 to 5.00.99.99" \ |
|
|
361 | && useq "berkdb" \ |
|
|
362 | && elog "Berkeley DB support is deprecated and will be removed in future versions!" |
| 166 | } |
363 | } |
| 167 | |
364 | |
| 168 | mysql_src_unpack() { |
365 | mysql_src_unpack() { |
| 169 | # Initialize the proper variables first |
366 | # Initialize the proper variables first |
| 170 | mysql_init_vars |
367 | mysql_init_vars |
| 171 | |
368 | |
| 172 | unpack ${A} |
369 | unpack ${A} |
| 173 | |
370 | |
| 174 | mv -f "${WORKDIR}/${P/_/-}" "${S}" |
371 | mv -f "${WORKDIR}/${MY_P}${MYSQL_RERELEASE}" "${S}" |
| 175 | cd "${S}" |
372 | cd "${S}" |
| 176 | |
373 | |
| 177 | # Apply the patches for this MySQL version |
374 | # Apply the patches for this MySQL version |
| 178 | if [[ -d "${WORKDIR}/${MY_FIXED_PV}" ]] ; then |
375 | if [[ -d "${WORKDIR}/${MY_FIXED_PV}" ]] ; then |
| 179 | EPATCH_SOURCE="${WORKDIR}/${MY_FIXED_PV}" EPATCH_SUFFIX="patch" epatch |
376 | EPATCH_SOURCE="${WORKDIR}/${MY_FIXED_PV}" EPATCH_SUFFIX="patch" epatch |
| … | |
… | |
| 183 | rm -f "${S}/zlib/"*.[ch] |
380 | rm -f "${S}/zlib/"*.[ch] |
| 184 | sed -i -e "s/zlib\/Makefile dnl/dnl zlib\/Makefile/" "${S}/configure.in" |
381 | sed -i -e "s/zlib\/Makefile dnl/dnl zlib\/Makefile/" "${S}/configure.in" |
| 185 | rm -f "scripts/mysqlbug" |
382 | rm -f "scripts/mysqlbug" |
| 186 | |
383 | |
| 187 | # Make charsets install in the right place |
384 | # Make charsets install in the right place |
|
|
385 | find . -name 'Makefile.am' \ |
| 188 | find . -name 'Makefile.am' -exec sed --in-place -e 's!$(pkgdatadir)!'${MY_SHAREDSTATEDIR}'!g' {} \; |
386 | -exec sed --in-place -e 's!$(pkgdatadir)!'${MY_SHAREDSTATEDIR}'!g' {} \; |
| 189 | |
387 | |
| 190 | # Manage mysqlmanager |
388 | # Manage mysqlmanager |
| 191 | mysql_version_is_at_least "5.00.15.00" \ |
389 | mysql_version_is_at_least "5.00.15.00" \ |
| 192 | && sed -i -e "s!@GENTOO_EXT@!!g" -e "s!@GENTOO_SOCK_PATH@!var/run/mysqld!g" "${S}/server-tools/instance-manager/Makefile.am" |
390 | && sed -i -e "s!@GENTOO_EXT@!!g" \ |
|
|
391 | -e "s!@GENTOO_SOCK_PATH@!var/run/mysqld!g" \ |
|
|
392 | "${S}/server-tools/instance-manager/Makefile.am" |
| 193 | |
393 | |
| 194 | if mysql_version_is_at_least "4.01.00.00" ; then |
394 | if mysql_version_is_at_least "4.01.00.00" ; then |
| 195 | # Remove what needs to be recreated, so we're sure it's actually done |
395 | # Remove what needs to be recreated, so we're sure it's actually done |
| 196 | find . -name Makefile \ |
396 | find . -name Makefile \ |
| 197 | -o -name Makefile.in \ |
397 | -o -name Makefile.in \ |
| 198 | -o -name configure \ |
398 | -o -name configure \ |
| 199 | -exec rm -f {} \; |
399 | -exec rm -f {} \; |
| 200 | rm -f "ltmain.sh" |
400 | rm -f "ltmain.sh" |
|
|
401 | rm -f "scripts/mysqlbug" |
| 201 | fi |
402 | fi |
| 202 | |
403 | |
| 203 | local rebuilddirlist bdbdir d |
404 | local rebuilddirlist bdbdir d |
| 204 | |
405 | |
| 205 | if mysql_version_is_at_least "5.01.00.00" ; then |
406 | if mysql_version_is_at_least "5.01.12.00" ; then |
| 206 | rebuilddirlist=". storage/innobase" |
407 | # TODO: innodb is using cmake now? |
| 207 | bdbdir='storage/bdb/dist' |
408 | rebuilddirlist="." |
|
|
409 | bdbdir='' |
| 208 | else |
410 | else |
| 209 | rebuilddirlist=". innobase" |
411 | rebuilddirlist=". innobase" |
| 210 | bdbdir='bdb/dist' |
412 | bdbdir='bdb/dist' |
| 211 | fi |
413 | fi |
| 212 | |
414 | |
| … | |
… | |
| 215 | pushd "${d}" &>/dev/null |
417 | pushd "${d}" &>/dev/null |
| 216 | AT_GNUCONF_UPDATE="yes" eautoreconf |
418 | AT_GNUCONF_UPDATE="yes" eautoreconf |
| 217 | popd &>/dev/null |
419 | popd &>/dev/null |
| 218 | done |
420 | done |
| 219 | |
421 | |
| 220 | # TODO: berkdb in MySQL 5.1 needs to be worked on |
|
|
| 221 | if useq "berkdb" \ |
|
|
| 222 | && ! mysql_check_version_range "4.00.00.00 to 4.00.99.99" \ |
422 | if mysql_check_version_range "4.01.00.00 to 5.00.99.99" \ |
| 223 | && ! mysql_check_version_range "5.01.00.00 to 5.01.08.99" ; then |
423 | && useq "berkdb" ; then |
| 224 | [[ -w "${bdbdir}/ltmain.sh" ]] && cp -f "ltmain.sh" "${bdbdir}/ltmain.sh" |
424 | [[ -w "${bdbdir}/ltmain.sh" ]] && cp -f "ltmain.sh" "${bdbdir}/ltmain.sh" |
| 225 | pushd "${bdbdir}" \ |
425 | pushd "${bdbdir}" \ |
| 226 | && sh s_all \ |
426 | && sh s_all \ |
| 227 | || die "Failed bdb reconfigure" \ |
427 | || die "Failed bdb reconfigure" \ |
| 228 | &>/dev/null |
428 | &>/dev/null |
| … | |
… | |
| 232 | |
432 | |
| 233 | mysql_src_compile() { |
433 | mysql_src_compile() { |
| 234 | # Make sure the vars are correctly initialized |
434 | # Make sure the vars are correctly initialized |
| 235 | mysql_init_vars |
435 | mysql_init_vars |
| 236 | |
436 | |
|
|
437 | # $myconf is modified by the configure_* functions |
| 237 | local myconf |
438 | local myconf="" |
| 238 | |
439 | |
| 239 | if useq "static" ; then |
|
|
| 240 | myconf="${myconf} --with-mysqld-ldflags=-all-static" |
|
|
| 241 | myconf="${myconf} --with-client-ldflags=-all-static" |
|
|
| 242 | myconf="${myconf} --disable-shared" |
|
|
| 243 | else |
|
|
| 244 | myconf="${myconf} --enable-shared --enable-static" |
|
|
| 245 | fi |
|
|
| 246 | |
|
|
| 247 | myconf="${myconf} --without-libwrap" |
|
|
| 248 | |
|
|
| 249 | if useq "ssl" ; then |
440 | if useq "minimal" ; then |
| 250 | # --with-vio is not needed anymore, it's on by default and |
441 | configure_minimal |
| 251 | # has been removed from configure |
442 | else |
| 252 | mysql_version_is_at_least "5.00.04.00" || myconf="${myconf} --with-vio" |
443 | configure_common |
| 253 | if mysql_version_is_at_least "5.00.06.00" ; then |
444 | if mysql_version_is_at_least "5.01.10.00" ; then |
| 254 | # yassl-0.96 is still young and breaks with GCC-4.X or amd64 |
445 | configure_51 |
| 255 | # myconf="${myconf} --with-yassl" |
|
|
| 256 | myconf="${myconf} --with-openssl" |
|
|
| 257 | else |
446 | else |
| 258 | myconf="${myconf} --with-openssl" |
447 | configure_40_41_50 |
| 259 | fi |
|
|
| 260 | else |
|
|
| 261 | myconf="${myconf} --without-openssl" |
|
|
| 262 | fi |
|
|
| 263 | |
|
|
| 264 | if useq "debug" ; then |
|
|
| 265 | myconf="${myconf} --with-debug=full" |
|
|
| 266 | else |
|
|
| 267 | myconf="${myconf} --without-debug" |
|
|
| 268 | |
|
|
| 269 | mysql_version_is_at_least "4.01.03.00" && useq "cluster" \ |
|
|
| 270 | && myconf="${myconf} --without-ndb-debug" |
|
|
| 271 | fi |
|
|
| 272 | |
|
|
| 273 | # These are things we exclude from a minimal build. |
|
|
| 274 | # Note that the server actually does get built and installed, |
|
|
| 275 | # but we then delete it. |
|
|
| 276 | local minimal_exclude_list="server embedded-server extra-tools innodb bench" |
|
|
| 277 | |
|
|
| 278 | if ! useq "minimal" ; then |
|
|
| 279 | myconf="${myconf} --with-server" |
|
|
| 280 | myconf="${myconf} --with-extra-tools" |
|
|
| 281 | |
|
|
| 282 | if ! mysql_version_is_at_least "5.00.00.00" ; then |
|
|
| 283 | if useq "raid" ; then |
|
|
| 284 | myconf="${myconf} --with-raid" |
|
|
| 285 | else |
|
|
| 286 | myconf="${myconf} --without-raid" |
|
|
| 287 | fi |
448 | fi |
| 288 | fi |
|
|
| 289 | |
|
|
| 290 | if mysql_version_is_at_least "4.01.00.00" && ! useq "latin1" ; then |
|
|
| 291 | myconf="${myconf} --with-charset=utf8" |
|
|
| 292 | myconf="${myconf} --with-collation=utf8_general_ci" |
|
|
| 293 | else |
|
|
| 294 | myconf="${myconf} --with-charset=latin1" |
|
|
| 295 | myconf="${myconf} --with-collation=latin1_swedish_ci" |
|
|
| 296 | fi |
|
|
| 297 | |
|
|
| 298 | # Optional again with MySQL 5.1 |
|
|
| 299 | if mysql_version_is_at_least "5.01.00.00" ; then |
|
|
| 300 | if useq "innodb" ; then |
|
|
| 301 | myconf="${myconf} --with-innodb" |
|
|
| 302 | else |
|
|
| 303 | myconf="${myconf} --without-innodb" |
|
|
| 304 | fi |
|
|
| 305 | fi |
|
|
| 306 | |
|
|
| 307 | # Lots of charsets |
|
|
| 308 | myconf="${myconf} --with-extra-charsets=all" |
|
|
| 309 | |
|
|
| 310 | # The following fix is due to a bug with bdb on SPARC's. See: |
|
|
| 311 | # http://www.geocrawler.com/mail/msg.php3?msg_id=4754814&list=8 |
|
|
| 312 | # It comes down to non-64-bit safety problems. |
|
|
| 313 | if useq "sparc" || useq "alpha" || useq "hppa" || useq "mips" || useq "amd64" ; then |
|
|
| 314 | ewarn "bdb berkeley-db disabled due to incompatible arch" |
|
|
| 315 | myconf="${myconf} --without-berkeley-db" |
|
|
| 316 | else |
|
|
| 317 | # TODO: berkdb in MySQL 5.1 needs to be worked on |
|
|
| 318 | if useq "berkdb" && ! mysql_check_version_range "5.01.00.00 to 5.01.08.99" ; then |
|
|
| 319 | myconf="${myconf} --with-berkeley-db=./bdb" |
|
|
| 320 | else |
|
|
| 321 | myconf="${myconf} --without-berkeley-db" |
|
|
| 322 | fi |
|
|
| 323 | fi |
|
|
| 324 | |
|
|
| 325 | if mysql_version_is_at_least "4.01.03.00" ; then |
|
|
| 326 | myconf="${myconf} --with-geometry" |
|
|
| 327 | |
|
|
| 328 | if useq "cluster" ; then |
|
|
| 329 | myconf="${myconf} --with-ndbcluster" |
|
|
| 330 | else |
|
|
| 331 | myconf="${myconf} --without-ndbcluster" |
|
|
| 332 | fi |
|
|
| 333 | fi |
|
|
| 334 | |
|
|
| 335 | if useq "big-tables" ; then |
|
|
| 336 | myconf="${myconf} --with-big-tables" |
|
|
| 337 | else |
|
|
| 338 | myconf="${myconf} --without-big-tables" |
|
|
| 339 | fi |
|
|
| 340 | |
|
|
| 341 | mysql_version_is_at_least "5.01.06.00" \ |
|
|
| 342 | && myconf="${myconf} --with-ndb-binlog" |
|
|
| 343 | |
|
|
| 344 | if useq "embedded" ; then |
|
|
| 345 | myconf="${myconf} --with-embedded-privilege-control" |
|
|
| 346 | myconf="${myconf} --with-embedded-server" |
|
|
| 347 | else |
|
|
| 348 | myconf="${myconf} --without-embedded-privilege-control" |
|
|
| 349 | myconf="${myconf} --without-embedded-server" |
|
|
| 350 | fi |
|
|
| 351 | |
|
|
| 352 | # Benchmarking stuff needs Perl |
|
|
| 353 | if useq "perl" ; then |
|
|
| 354 | myconf="${myconf} --with-bench" |
|
|
| 355 | else |
|
|
| 356 | myconf="${myconf} --without-bench" |
|
|
| 357 | fi |
|
|
| 358 | else |
|
|
| 359 | for i in ${minimal_exclude_list} ; do |
|
|
| 360 | myconf="${myconf} --without-${i}" |
|
|
| 361 | done |
|
|
| 362 | myconf="${myconf} --without-berkeley-db" |
|
|
| 363 | myconf="${myconf} --with-extra-charsets=none" |
|
|
| 364 | fi |
|
|
| 365 | |
|
|
| 366 | if mysql_version_is_at_least "4.01.03.00" && useq "extraengine" ; then |
|
|
| 367 | # http://dev.mysql.com/doc/mysql/en/archive-storage-engine.html |
|
|
| 368 | myconf="${myconf} --with-archive-storage-engine" |
|
|
| 369 | |
|
|
| 370 | # http://dev.mysql.com/doc/mysql/en/csv-storage-engine.html |
|
|
| 371 | myconf="${myconf} --with-csv-storage-engine" |
|
|
| 372 | |
|
|
| 373 | # http://dev.mysql.com/doc/mysql/en/blackhole-storage-engine.html |
|
|
| 374 | myconf="${myconf} --with-blackhole-storage-engine" |
|
|
| 375 | |
|
|
| 376 | # http://dev.mysql.com/doc/mysql/en/federated-storage-engine.html |
|
|
| 377 | # http://dev.mysql.com/doc/mysql/en/federated-description.html |
|
|
| 378 | # http://dev.mysql.com/doc/mysql/en/federated-limitations.html |
|
|
| 379 | if mysql_version_is_at_least "5.00.03.00" ; then |
|
|
| 380 | einfo "Before using the Federated storage engine, please be sure to read" |
|
|
| 381 | einfo "http://dev.mysql.com/doc/mysql/en/federated-limitations.html" |
|
|
| 382 | myconf="${myconf} --with-federated-storage-engine" |
|
|
| 383 | fi |
|
|
| 384 | |
|
|
| 385 | # http://dev.mysql.com/doc/refman/5.1/en/partitioning-overview.html |
|
|
| 386 | if mysql_version_is_at_least "5.01.00.00" ; then |
|
|
| 387 | myconf="${myconf} --with-partition" |
|
|
| 388 | fi |
|
|
| 389 | fi |
|
|
| 390 | |
|
|
| 391 | mysql_version_is_at_least "5.00.18.00" \ |
|
|
| 392 | && useq "max-idx-128" \ |
|
|
| 393 | && myconf="${myconf} --with-max-indexes=128" |
|
|
| 394 | |
|
|
| 395 | mysql_version_is_at_least "5.01.05.00" \ |
|
|
| 396 | && myconf="${myconf} --with-row-based-replication" |
|
|
| 397 | |
|
|
| 398 | # TODO: Rechek again later, there were problems with assembler enabled |
|
|
| 399 | # and some combination of USE flags with MySQL 5.1 |
|
|
| 400 | if mysql_check_version_range "5.01.00.00 to 5.01.08.99" ; then |
|
|
| 401 | myconf="${myconf} --disable-assembler" |
|
|
| 402 | else |
|
|
| 403 | myconf="${myconf} --enable-assembler" |
|
|
| 404 | fi |
449 | fi |
| 405 | |
450 | |
| 406 | # Bug #114895, bug #110149 |
451 | # Bug #114895, bug #110149 |
| 407 | filter-flags "-O" "-O[01]" |
452 | filter-flags "-O" "-O[01]" |
| 408 | |
453 | |
| 409 | # glib-2.3.2_pre fix, bug #16496 |
454 | # glib-2.3.2_pre fix, bug #16496 |
| 410 | append-flags "-DHAVE_ERRNO_AS_DEFINE=1" |
455 | append-flags "-DHAVE_ERRNO_AS_DEFINE=1" |
| 411 | |
456 | |
| 412 | # The compiler flags are as their "official" spec says ;) |
457 | append-flags "-fno-exceptions -fno-strict-aliasing" |
| 413 | # CFLAGS="${CFLAGS/-O?/} -O3" |
|
|
| 414 | export CXXFLAGS="${CXXFLAGS} -felide-constructors -fno-exceptions -fno-rtti" |
458 | CXXFLAGS="${CXXFLAGS} -felide-constructors -fno-rtti" |
| 415 | mysql_version_is_at_least "5.00.00.00" \ |
459 | mysql_version_is_at_least "5.00.00.00" \ |
| 416 | && export CXXFLAGS="${CXXFLAGS} -fno-implicit-templates" |
460 | && CXXFLAGS="${CXXFLAGS} -fno-implicit-templates" |
|
|
461 | export CXXFLAGS |
| 417 | |
462 | |
| 418 | econf \ |
463 | econf \ |
| 419 | --libexecdir="/usr/sbin" \ |
464 | --libexecdir="/usr/sbin" \ |
| 420 | --sysconfdir="${MY_SYSCONFDIR}" \ |
465 | --sysconfdir="${MY_SYSCONFDIR}" \ |
| 421 | --localstatedir="${MY_LOCALSTATEDIR}" \ |
466 | --localstatedir="${MY_LOCALSTATEDIR}" \ |
| 422 | --sharedstatedir="${MY_SHAREDSTATEDIR}" \ |
467 | --sharedstatedir="${MY_SHAREDSTATEDIR}" \ |
| 423 | --libdir="${MY_LIBDIR}" \ |
468 | --libdir="${MY_LIBDIR}" \ |
| 424 | --includedir="${MY_INCLUDEDIR}" \ |
469 | --includedir="${MY_INCLUDEDIR}" \ |
| 425 | --with-low-memory \ |
470 | --with-low-memory \ |
| 426 | --enable-local-infile \ |
|
|
| 427 | --with-mysqld-user=mysql \ |
|
|
| 428 | --with-client-ldflags=-lstdc++ \ |
471 | --with-client-ldflags=-lstdc++ \ |
| 429 | --enable-thread-safe-client \ |
472 | --enable-thread-safe-client \ |
| 430 | --with-comment="Gentoo Linux ${PF}" \ |
473 | --with-comment="Gentoo Linux ${PF}" \ |
| 431 | --with-unix-socket-path="/var/run/mysqld/mysqld.sock" \ |
|
|
| 432 | --without-readline \ |
|
|
| 433 | --without-docs \ |
474 | --without-docs \ |
| 434 | ${myconf} || die "bad ./configure" |
475 | ${myconf} || die "econf failed" |
| 435 | |
476 | |
| 436 | # TODO: Move this before autoreconf !!! |
477 | # TODO: Move this before autoreconf !!! |
| 437 | find . -type f -name Makefile -print0 \ |
478 | find . -type f -name Makefile -print0 \ |
| 438 | | xargs -0 -n100 sed -i \ |
479 | | xargs -0 -n100 sed -i \ |
| 439 | -e 's|^pkglibdir *= *$(libdir)/mysql|pkglibdir = $(libdir)|;s|^pkgincludedir *= *$(includedir)/mysql|pkgincludedir = $(includedir)|' |
480 | -e 's|^pkglibdir *= *$(libdir)/mysql|pkglibdir = $(libdir)|;s|^pkgincludedir *= *$(includedir)/mysql|pkgincludedir = $(includedir)|' |
| 440 | |
481 | |
| 441 | emake || die "compile problem" |
482 | emake || die "emake failed" |
| 442 | } |
483 | } |
| 443 | |
484 | |
| 444 | mysql_src_install() { |
485 | mysql_src_install() { |
| 445 | # Make sure the vars are correctly initialized |
486 | # Make sure the vars are correctly initialized |
| 446 | mysql_init_vars |
487 | mysql_init_vars |
| 447 | |
488 | |
| 448 | make install DESTDIR="${D}" benchdir_root="${MY_SHAREDSTATEDIR}" || die "make install error" |
489 | emake install DESTDIR="${D}" benchdir_root="${MY_SHAREDSTATEDIR}" || die "emake install failed" |
| 449 | |
490 | |
| 450 | insinto "${MY_INCLUDEDIR}" |
491 | insinto "${MY_INCLUDEDIR}" |
| 451 | doins "${MY_INCLUDEDIR}"/my_{config,dir}.h |
492 | doins "${MY_INCLUDEDIR}"/my_{config,dir}.h |
| 452 | |
493 | |
| 453 | # Convenience links |
494 | # Convenience links |
| … | |
… | |
| 455 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlrepair" |
496 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlrepair" |
| 456 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqloptimize" |
497 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqloptimize" |
| 457 | |
498 | |
| 458 | # Various junk (my-*.cnf moved elsewhere) |
499 | # Various junk (my-*.cnf moved elsewhere) |
| 459 | rm -Rf "${D}/usr/share/info" |
500 | rm -Rf "${D}/usr/share/info" |
| 460 | for removeme in "mysql-log-rotate" mysql.server* binary-configure* my-*.cnf mi_test_all* ; do |
501 | for removeme in "mysql-log-rotate" mysql.server* \ |
|
|
502 | binary-configure* my-*.cnf mi_test_all* |
|
|
503 | do |
| 461 | rm -f "${D}"/usr/share/mysql/${removeme} |
504 | rm -f "${D}"/usr/share/mysql/${removeme} |
| 462 | done |
505 | done |
| 463 | |
506 | |
| 464 | # Clean up stuff for a minimal build |
507 | # Clean up stuff for a minimal build |
| 465 | if useq "minimal" ; then |
508 | if useq "minimal" ; then |
| … | |
… | |
| 547 | mysql_pkg_postinst() { |
590 | mysql_pkg_postinst() { |
| 548 | # Make sure the vars are correctly initialized |
591 | # Make sure the vars are correctly initialized |
| 549 | mysql_init_vars |
592 | mysql_init_vars |
| 550 | |
593 | |
| 551 | # Check FEATURES="collision-protect" before removing this |
594 | # Check FEATURES="collision-protect" before removing this |
|
|
595 | [[ -d "${ROOT}/var/log/mysql" ]] \ |
| 552 | [[ -d "${ROOT}/var/log/mysql" ]] || install -d -m0750 -o mysql -g mysql "${ROOT}${MY_LOGDIR}" |
596 | || install -d -m0750 -o mysql -g mysql "${ROOT}${MY_LOGDIR}" |
| 553 | |
597 | |
| 554 | # Secure the logfiles |
598 | # Secure the logfiles |
| 555 | touch "${ROOT}${MY_LOGDIR}"/mysql.{log,err} |
599 | touch "${ROOT}${MY_LOGDIR}"/mysql.{log,err} |
| 556 | chown mysql:mysql "${ROOT}${MY_LOGDIR}"/mysql* |
600 | chown mysql:mysql "${ROOT}${MY_LOGDIR}"/mysql* |
| 557 | chmod 0660 "${ROOT}${MY_LOGDIR}"/mysql* |
601 | chmod 0660 "${ROOT}${MY_LOGDIR}"/mysql* |
| 558 | |
602 | |
| 559 | if ! useq "minimal" ; then |
603 | if ! useq "minimal" ; then |
| 560 | # Your friendly public service announcement ... |
604 | # Your friendly public service announcement ... |
| 561 | einfo |
605 | einfo |
| 562 | einfo "You might want to run:" |
606 | elog "You might want to run:" |
| 563 | einfo "\"emerge --config =${CATEGORY}/${PF}\"" |
607 | elog "\"emerge --config =${CATEGORY}/${PF}\"" |
| 564 | einfo "if this is a new install." |
608 | elog "if this is a new install." |
| 565 | einfo |
609 | einfo |
| 566 | mysql_version_is_at_least "5.01.00.00" \ |
610 | 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." |
611 | || elog "InnoDB is *not* optional as of MySQL-4.0.24, at the request of upstream." |
| 568 | fi |
612 | fi |
|
|
613 | mysql_check_version_range "4.00.00.00 to 5.00.99.99" \ |
|
|
614 | && useq "berkdb" \ |
|
|
615 | && elog "Berkeley DB support is deprecated and will be removed in future versions!" |
| 569 | } |
616 | } |
| 570 | |
617 | |
| 571 | mysql_pkg_config() { |
618 | mysql_pkg_config() { |
| 572 | # Make sure the vars are correctly initialized |
619 | # Make sure the vars are correctly initialized |
| 573 | mysql_init_vars |
620 | mysql_init_vars |