1 | # Copyright 1999-2006 Gentoo Foundation |
1 | # Copyright 1999-2007 Gentoo Foundation |
2 | # Distributed under the terms of the GNU General Public License v2 |
2 | # Distributed under the terms of the GNU General Public License v2 |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/Attic/mysql.eclass,v 1.43 2006/10/23 12:26:45 vivo Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/Attic/mysql.eclass,v 1.73 2007/04/15 13:00:51 robbat2 Exp $ |
4 | |
4 | |
5 | # Author: Francesco Riosa <vivo@gentoo.org> |
5 | # Author: Francesco Riosa (Retired) <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! |
9 | # Note that MYSQL_VERSION_ID must be empty !!! |
9 | # Note that MYSQL_VERSION_ID must be empty! |
|
|
10 | |
|
|
11 | WANT_AUTOCONF="latest" |
|
|
12 | WANT_AUTOMAKE="latest" |
|
|
13 | |
|
|
14 | inherit eutils flag-o-matic gnuconfig autotools mysql_fx |
|
|
15 | |
|
|
16 | # Shorten the path because the socket path length must be shorter than 107 chars |
|
|
17 | # and we will run a mysql server during test phase |
|
|
18 | S="${WORKDIR}/mysql" |
|
|
19 | |
|
|
20 | [[ "${MY_EXTRAS_VER}" == "latest" ]] && MY_EXTRAS_VER="20070108" |
|
|
21 | |
|
|
22 | if [[ ${PR#r} -lt 60 ]] ; then |
|
|
23 | IS_BITKEEPER=0 |
|
|
24 | elif [[ ${PR#r} -lt 90 ]] ; then |
|
|
25 | IS_BITKEEPER=60 |
|
|
26 | else |
|
|
27 | IS_BITKEEPER=90 |
|
|
28 | fi |
10 | |
29 | |
11 | # MYSQL_VERSION_ID will be: |
30 | # MYSQL_VERSION_ID will be: |
12 | # major * 10e6 + minor * 10e4 + micro * 10e2 + gentoo revision number, all [0..99] |
31 | # 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 |
32 | # This is an important part, because many of the choices the MySQL ebuild will do |
14 | # depend on this variable. |
33 | # depend on this variable. |
15 | # In particular, the code below transforms a $PVR like "5.0.18-r3" in "5001803" |
34 | # In particular, the code below transforms a $PVR like "5.0.18-r3" in "5001803" |
16 | |
35 | |
17 | if [[ -z "${MYSQL_VERSION_ID}" ]] ; then |
36 | MYSQL_VERSION_ID="" |
18 | tpv=( ${PV//[-._]/ } ) ; tpv[3]="${PVR:${#PV}}" ; tpv[3]="${tpv[3]##*-r}" |
37 | tpv=( ${PV//[-._]/ } ) ; tpv[3]="${PVR:${#PV}}" ; tpv[3]="${tpv[3]##*-r}" |
19 | for vatom in 0 1 2 3 ; do |
38 | for vatom in 0 1 2 3 ; do |
20 | # pad to length 2 |
39 | # pad to length 2 |
21 | tpv[${vatom}]="00${tpv[${vatom}]}" |
40 | tpv[${vatom}]="00${tpv[${vatom}]}" |
22 | MYSQL_VERSION_ID="${MYSQL_VERSION_ID}${tpv[${vatom}]:0-2}" |
41 | MYSQL_VERSION_ID="${MYSQL_VERSION_ID}${tpv[${vatom}]:0-2}" |
23 | done |
42 | done |
24 | # strip leading "0" (otherwise it's considered an octal number by BASH) |
43 | # strip leading "0" (otherwise it's considered an octal number by BASH) |
25 | MYSQL_VERSION_ID=${MYSQL_VERSION_ID##"0"} |
44 | MYSQL_VERSION_ID=${MYSQL_VERSION_ID##"0"} |
26 | fi |
|
|
27 | |
|
|
28 | inherit eutils flag-o-matic gnuconfig autotools mysql_fx |
|
|
29 | |
45 | |
30 | # Be warned, *DEPEND are version-dependant |
46 | # Be warned, *DEPEND are version-dependant |
31 | DEPEND="ssl? ( >=dev-libs/openssl-0.9.6d ) |
47 | DEPEND="ssl? ( >=dev-libs/openssl-0.9.6d ) |
32 | userland_GNU? ( sys-process/procps ) |
48 | userland_GNU? ( sys-process/procps ) |
33 | >=sys-apps/sed-4 |
49 | >=sys-apps/sed-4 |
34 | >=sys-apps/texinfo-4.7-r1 |
50 | >=sys-apps/texinfo-4.7-r1 |
35 | >=sys-libs/readline-4.1 |
51 | >=sys-libs/readline-4.1 |
36 | >=sys-libs/zlib-1.2.3" |
52 | >=sys-libs/zlib-1.2.3" |
37 | |
53 | |
|
|
54 | # Having different flavours at the same time is not a good idea |
|
|
55 | for i in "" "-community" ; do |
|
|
56 | [[ "${i}" == ${PN#mysql} ]] || |
|
|
57 | DEPEND="${DEPEND} !dev-db/mysql${i}" |
|
|
58 | done |
|
|
59 | |
38 | mysql_version_is_at_least "5.01.00.00" \ |
60 | mysql_version_is_at_least "5.1" \ |
39 | || DEPEND="${DEPEND} berkdb? ( sys-apps/ed )" |
61 | || DEPEND="${DEPEND} berkdb? ( sys-apps/ed )" |
40 | |
62 | |
41 | RDEPEND="${DEPEND} selinux? ( sec-policy/selinux-mysql )" |
63 | mysql_version_is_at_least "5.1.12" \ |
|
|
64 | && DEPEND="${DEPEND} innodb? ( >=dev-util/cmake-2.4.3 )" |
42 | |
65 | |
43 | # dev-perl/DBD-mysql is needed by some scripts installed by MySQL |
66 | # dev-perl/DBD-mysql is needed by some scripts installed by MySQL |
44 | PDEPEND="perl? ( >=dev-perl/DBD-mysql-2.9004 )" |
67 | PDEPEND="perl? ( >=dev-perl/DBD-mysql-2.9004 )" |
45 | |
68 | |
46 | # Shorten the path because the socket path length must be shorter than 107 chars |
69 | # BitKeeper dependency, compile-time only |
47 | # and we will run a mysql server during test phase |
70 | [[ ${IS_BITKEEPER} -eq 90 ]] && DEPEND="${DEPEND} dev-util/bk_client" |
48 | S="${WORKDIR}/${PN/_alpha/-bk-}" # BitKeeper ebuilds |
|
|
49 | |
|
|
50 | # Define $MY_FIXED_PV for MySQL patchsets |
|
|
51 | MY_FIXED_PV="${PV/_alpha/}" |
|
|
52 | #MY_FIXED_PV="${MY_FIXED_PV/_beta/}" |
|
|
53 | #MY_FIXED_PV="${MY_FIXED_PV/_rc/}" |
|
|
54 | |
|
|
55 | MY_P="${P/_/-}" |
|
|
56 | MY_P="${MY_P/-alpha/-bk-}" # BitKeeper ebuilds |
|
|
57 | |
71 | |
58 | # Define correct SRC_URIs |
72 | # Define correct SRC_URIs |
59 | SRC_URI="mirror://mysql/Downloads/MySQL-${PV%.*}/${MY_P}${MYSQL_RERELEASE}.tar.gz" |
73 | SRC_URI="${SERVER_URI} |
60 | if [[ -n "${MYSQL_PATCHSET_REV}" ]] ; then |
74 | mirror://gentoo/mysql-extras-${MY_EXTRAS_VER}.tar.bz2 |
61 | MYSQL_PATCHSET_FILENAME="${PN}-patchset-${MY_FIXED_PV}-r${MYSQL_PATCHSET_REV}.tar.bz2" |
75 | http://g3nt8.org/patches/mysql-extras-${MY_EXTRAS_VER}.tar.bz2" |
62 | # We add the Gentoo mirror here, as we only use primaryuri for the MySQL tarball |
76 | mysql_version_is_at_least "5.1.12" \ |
63 | SRC_URI="${SRC_URI} http://gentoo.longitekk.com/${MYSQL_PATCHSET_FILENAME}" |
77 | && [[ -n "${PBXT_VERSION}" ]] \ |
64 | fi |
78 | && SRC_URI="${SRC_URI} pbxt? ( mirror://sourceforge/pbxt/pbxt-${PBXT_VERSION}.tar.gz )" |
65 | |
79 | |
66 | DESCRIPTION="A fast, multi-threaded, multi-user SQL database server." |
80 | DESCRIPTION="A fast, multi-threaded, multi-user SQL database server." |
67 | HOMEPAGE="http://www.mysql.com/" |
81 | HOMEPAGE="http://www.mysql.com/" |
|
|
82 | LICENSE="GPL-2" |
68 | SLOT="0" |
83 | SLOT="0" |
69 | LICENSE="GPL-2" |
|
|
70 | IUSE="big-tables debug embedded minimal perl selinux srvdir ssl static" |
84 | IUSE="big-tables debug embedded minimal perl selinux ssl static" |
71 | RESTRICT="confcache" |
85 | RESTRICT="confcache" |
72 | |
86 | |
73 | mysql_version_is_at_least "4.01.00.00" \ |
87 | mysql_version_is_at_least "4.1" \ |
74 | && IUSE="${IUSE} latin1" |
88 | && IUSE="${IUSE} latin1" |
75 | |
89 | |
76 | mysql_version_is_at_least "4.01.03.00" \ |
90 | mysql_version_is_at_least "4.1.3" \ |
77 | && IUSE="${IUSE} cluster extraengine" |
91 | && IUSE="${IUSE} cluster extraengine" |
78 | |
92 | |
79 | mysql_version_is_at_least "5.00.00.00" \ |
93 | mysql_version_is_at_least "5.0" \ |
80 | || IUSE="${IUSE} raid" |
94 | || IUSE="${IUSE} raid" |
81 | |
95 | |
82 | mysql_version_is_at_least "5.00.18.00" \ |
96 | mysql_version_is_at_least "5.0.18" \ |
83 | && IUSE="${IUSE} max-idx-128" |
97 | && IUSE="${IUSE} max-idx-128" |
84 | |
98 | |
85 | mysql_version_is_at_least "5.01.00.00" \ |
99 | mysql_version_is_at_least "5.1" \ |
86 | && IUSE="${IUSE} innodb" |
100 | && IUSE="${IUSE} innodb" |
87 | |
101 | |
88 | mysql_version_is_at_least "5.01.00.00" \ |
102 | mysql_version_is_at_least "5.1" \ |
89 | || IUSE="${IUSE} berkdb" |
103 | || IUSE="${IUSE} berkdb" |
|
|
104 | |
|
|
105 | mysql_version_is_at_least "5.1.12" \ |
|
|
106 | && IUSE="${IUSE} pbxt" |
|
|
107 | |
|
|
108 | RDEPEND="${DEPEND} |
|
|
109 | !minimal? ( dev-db/mysql-init-scripts ) |
|
|
110 | selinux? ( sec-policy/selinux-mysql )" |
90 | |
111 | |
91 | EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_preinst \ |
112 | EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_preinst \ |
92 | pkg_postinst pkg_config pkg_postrm |
113 | pkg_postinst pkg_config pkg_postrm |
93 | |
114 | |
94 | # |
115 | # |
95 | # HELPER FUNCTIONS: |
116 | # HELPER FUNCTIONS: |
96 | # |
117 | # |
|
|
118 | |
|
|
119 | bitkeeper_fetch() { |
|
|
120 | local reposuf |
|
|
121 | if [[ -z "${1}" ]] ; then |
|
|
122 | local tpv |
|
|
123 | tpv=( ${PV//[-._]/ } ) |
|
|
124 | reposuf="mysql-${tpv[0]}.${tpv[1]}" |
|
|
125 | else |
|
|
126 | reposuf="${1}" |
|
|
127 | fi |
|
|
128 | einfo "Using '${reposuf}' repository." |
|
|
129 | local repo_uri="bk://mysql.bkbits.net/${reposuf}" |
|
|
130 | ## -- ebk_store_dir: bitkeeper sources store directory |
|
|
131 | local ebk_store_dir="${PORTAGE_ACTUAL_DISTDIR-${DISTDIR}}/bk-src" |
|
|
132 | ## -- ebk_fetch_cmd: bitkeeper fetch command |
|
|
133 | # always fetch the latest revision, use -r<revision> if a specified revision is wanted |
|
|
134 | # hint: does not work |
|
|
135 | local ebk_fetch_cmd="sfioball" |
|
|
136 | ## -- ebk_update_cmd: bitkeeper update command |
|
|
137 | local ebk_update_cmd="update" |
|
|
138 | |
|
|
139 | # addread "/etc/bitkeeper" |
|
|
140 | addwrite "${ebk_store_dir}" |
|
|
141 | |
|
|
142 | if [[ ! -d "${ebk_store_dir}" ]] ; then |
|
|
143 | debug-print "${FUNCNAME}: initial checkout, creating bitkeeper directory ..." |
|
|
144 | mkdir -p "${ebk_store_dir}" || die "BK: couldn't mkdir ${ebk_store_dir}" |
|
|
145 | fi |
|
|
146 | |
|
|
147 | pushd "${ebk_store_dir}" || die "BK: couldn't chdir to ${ebk_store_dir}" |
|
|
148 | |
|
|
149 | local wc_path=${reposuf} |
|
|
150 | |
|
|
151 | if [[ ! -d "${wc_path}" ]] ; then |
|
|
152 | local options="-r+" |
|
|
153 | |
|
|
154 | # first checkout |
|
|
155 | einfo "bitkeeper checkout start -->" |
|
|
156 | einfo " repository: ${repo_uri}" |
|
|
157 | |
|
|
158 | ${ebk_fetch_cmd} ${options} "${repo_uri}" "${wc_path}" \ |
|
|
159 | || die "BK: couldn't fetch from ${repo_uri}" |
|
|
160 | else |
|
|
161 | if [[ ! -d "${wc_path}/BK" ]] ; then |
|
|
162 | popd |
|
|
163 | die "Looks like ${wc_path} is not a bitkeeper path" |
|
|
164 | fi |
|
|
165 | |
|
|
166 | # update working copy |
|
|
167 | einfo "bitkeeper update start -->" |
|
|
168 | einfo " repository: ${repo_uri}" |
|
|
169 | |
|
|
170 | ${ebk_update_cmd} "${repo_uri}" "${wc_path}" \ |
|
|
171 | || die "BK: couldn't update from ${repo_uri} to ${wc_path}" |
|
|
172 | fi |
|
|
173 | |
|
|
174 | einfo " working copy: ${wc_path}" |
|
|
175 | cd "${wc_path}" |
|
|
176 | rsync -rlpgo --exclude="BK/" . "${S}" || die "BK: couldn't export to ${S}" |
|
|
177 | |
|
|
178 | echo |
|
|
179 | popd |
|
|
180 | } |
|
|
181 | |
|
|
182 | mysql_disable_test() { |
|
|
183 | local testname="${1}" ; shift |
|
|
184 | local reason="${@}" |
|
|
185 | local mysql_disable_file="${S}/mysql-test/t/disabled.def" |
|
|
186 | echo ${testname} : ${reason} >> "${mysql_disable_file}" |
|
|
187 | ewarn "test '${testname}' disabled: '${reason}'" |
|
|
188 | } |
97 | |
189 | |
98 | # void mysql_init_vars() |
190 | # void mysql_init_vars() |
99 | # |
191 | # |
100 | # Initialize global variables |
192 | # Initialize global variables |
101 | # 2005-11-19 <vivo@gentoo.org> |
193 | # 2005-11-19 <vivo@gentoo.org> |
… | |
… | |
113 | if [[ -f "${MY_SYSCONFDIR}/my.cnf" ]] ; then |
205 | if [[ -f "${MY_SYSCONFDIR}/my.cnf" ]] ; then |
114 | DATADIR=`"my_print_defaults" mysqld 2>/dev/null \ |
206 | DATADIR=`"my_print_defaults" mysqld 2>/dev/null \ |
115 | | sed -ne '/datadir/s|^--datadir=||p' \ |
207 | | sed -ne '/datadir/s|^--datadir=||p' \ |
116 | | tail -n1` |
208 | | tail -n1` |
117 | if [[ -z "${DATADIR}" ]] ; then |
209 | if [[ -z "${DATADIR}" ]] ; then |
118 | if useq "srvdir" ; then |
|
|
119 | DATADIR="${ROOT}/srv/localhost/mysql/datadir" |
|
|
120 | else |
|
|
121 | DATADIR=`grep ^datadir "${MY_SYSCONFDIR}/my.cnf" \ |
210 | DATADIR=`grep ^datadir "${MY_SYSCONFDIR}/my.cnf" \ |
122 | | sed -e 's/.*=\s*//'` |
211 | | sed -e 's/.*=\s*//'` |
123 | fi |
|
|
124 | fi |
212 | fi |
125 | fi |
213 | fi |
126 | if [[ -z "${DATADIR}" ]] ; then |
214 | if [[ -z "${DATADIR}" ]] ; then |
127 | if useq "srvdir" ; then |
|
|
128 | DATADIR="${ROOT}/srv/localhost/mysql/datadir" |
|
|
129 | else |
|
|
130 | DATADIR="${MY_LOCALSTATEDIR}" |
215 | DATADIR="${MY_LOCALSTATEDIR}" |
131 | fi |
|
|
132 | einfo "Using default DATADIR" |
216 | einfo "Using default DATADIR" |
133 | fi |
217 | fi |
134 | elog "MySQL DATADIR is ${DATADIR}" |
218 | elog "MySQL DATADIR is ${DATADIR}" |
135 | |
219 | |
136 | if [[ -z "${PREVIOUS_DATADIR}" ]] ; then |
220 | if [[ -z "${PREVIOUS_DATADIR}" ]] ; then |
… | |
… | |
143 | fi |
227 | fi |
144 | export PREVIOUS_DATADIR |
228 | export PREVIOUS_DATADIR |
145 | fi |
229 | fi |
146 | fi |
230 | fi |
147 | |
231 | |
|
|
232 | MY_SOURCEDIR=${SERVER_URI##*/} |
|
|
233 | MY_SOURCEDIR=${MY_SOURCEDIR%.tar*} |
|
|
234 | |
148 | export MY_SHAREDSTATEDIR MY_SYSCONFDIR |
235 | export MY_SHAREDSTATEDIR MY_SYSCONFDIR |
149 | export MY_LIBDIR MY_LOCALSTATEDIR MY_LOGDIR |
236 | export MY_LIBDIR MY_LOCALSTATEDIR MY_LOGDIR |
150 | export MY_INCLUDEDIR |
237 | export MY_INCLUDEDIR DATADIR MY_SOURCEDIR |
151 | export DATADIR |
|
|
152 | } |
238 | } |
153 | |
239 | |
154 | configure_minimal() { |
240 | configure_minimal() { |
155 | # These are things we exclude from a minimal build, please |
241 | # These are things we exclude from a minimal build, please |
156 | # note that the server actually does get built and installed, |
242 | # note that the server actually does get built and installed, |
157 | # but we then delete it before packaging. |
243 | # but we then delete it before packaging. |
158 | local minimal_exclude_list="server embedded-server extra-tools innodb bench berkeley-db row-based-replication" |
244 | local minimal_exclude_list="server embedded-server extra-tools innodb bench berkeley-db row-based-replication" |
159 | |
245 | |
160 | for i in ${minimal_exclude_list} ; do |
246 | for i in ${minimal_exclude_list} ; do |
161 | myconf="${myconf} --without-${i}" |
247 | myconf="${myconf} --without-${i}" |
162 | done |
248 | done |
163 | myconf="${myconf} --with-extra-charsets=none" |
249 | myconf="${myconf} --with-extra-charsets=none" |
|
|
250 | myconf="${myconf} --enable-local-infile" |
|
|
251 | |
|
|
252 | if use static ; then |
|
|
253 | myconf="${myconf} --with-client-ldflags=-all-static" |
|
|
254 | myconf="${myconf} --disable-shared" |
|
|
255 | else |
|
|
256 | myconf="${myconf} --enable-shared --enable-static" |
|
|
257 | fi |
|
|
258 | |
|
|
259 | if mysql_version_is_at_least "4.1" && ! use latin1 ; then |
|
|
260 | myconf="${myconf} --with-charset=utf8" |
|
|
261 | myconf="${myconf} --with-collation=utf8_general_ci" |
|
|
262 | else |
|
|
263 | myconf="${myconf} --with-charset=latin1" |
|
|
264 | myconf="${myconf} --with-collation=latin1_swedish_ci" |
|
|
265 | fi |
164 | } |
266 | } |
165 | |
267 | |
166 | configure_common() { |
268 | configure_common() { |
167 | myconf="${myconf} $(use_with big-tables)" |
269 | myconf="${myconf} $(use_with big-tables)" |
168 | myconf="${myconf} --enable-local-infile" |
270 | myconf="${myconf} --enable-local-infile" |
… | |
… | |
170 | myconf="${myconf} --with-mysqld-user=mysql" |
272 | myconf="${myconf} --with-mysqld-user=mysql" |
171 | myconf="${myconf} --with-server" |
273 | myconf="${myconf} --with-server" |
172 | myconf="${myconf} --with-unix-socket-path=/var/run/mysqld/mysqld.sock" |
274 | myconf="${myconf} --with-unix-socket-path=/var/run/mysqld/mysqld.sock" |
173 | myconf="${myconf} --without-libwrap" |
275 | myconf="${myconf} --without-libwrap" |
174 | |
276 | |
175 | if useq "static" ; then |
277 | if use static ; then |
176 | myconf="${myconf} --with-mysqld-ldflags=-all-static" |
278 | myconf="${myconf} --with-mysqld-ldflags=-all-static" |
177 | myconf="${myconf} --with-client-ldflags=-all-static" |
279 | myconf="${myconf} --with-client-ldflags=-all-static" |
178 | myconf="${myconf} --disable-shared" |
280 | myconf="${myconf} --disable-shared" |
179 | else |
281 | else |
180 | myconf="${myconf} --enable-shared --enable-static" |
282 | myconf="${myconf} --enable-shared --enable-static" |
181 | fi |
283 | fi |
182 | |
284 | |
183 | if useq "debug" ; then |
285 | if use debug ; then |
184 | myconf="${myconf} --with-debug=full" |
286 | myconf="${myconf} --with-debug=full" |
185 | else |
287 | else |
186 | myconf="${myconf} --without-debug" |
288 | myconf="${myconf} --without-debug" |
187 | mysql_version_is_at_least "4.01.03.00" \ |
289 | mysql_version_is_at_least "4.1.3" \ |
188 | && useq "cluster" \ |
290 | && use cluster \ |
189 | && myconf="${myconf} --without-ndb-debug" |
291 | && myconf="${myconf} --without-ndb-debug" |
190 | fi |
292 | fi |
191 | |
293 | |
192 | if mysql_version_is_at_least "4.01.00.00" && ! useq "latin1" ; then |
294 | if mysql_version_is_at_least "4.1" && ! use latin1 ; then |
193 | myconf="${myconf} --with-charset=utf8" |
295 | myconf="${myconf} --with-charset=utf8" |
194 | myconf="${myconf} --with-collation=utf8_general_ci" |
296 | myconf="${myconf} --with-collation=utf8_general_ci" |
195 | else |
297 | else |
196 | myconf="${myconf} --with-charset=latin1" |
298 | myconf="${myconf} --with-charset=latin1" |
197 | myconf="${myconf} --with-collation=latin1_swedish_ci" |
299 | myconf="${myconf} --with-collation=latin1_swedish_ci" |
198 | fi |
300 | fi |
199 | |
301 | |
200 | if useq "embedded" ; then |
302 | if use embedded ; then |
201 | myconf="${myconf} --with-embedded-privilege-control" |
303 | myconf="${myconf} --with-embedded-privilege-control" |
202 | myconf="${myconf} --with-embedded-server" |
304 | myconf="${myconf} --with-embedded-server" |
203 | else |
305 | else |
204 | myconf="${myconf} --without-embedded-privilege-control" |
306 | myconf="${myconf} --without-embedded-privilege-control" |
205 | myconf="${myconf} --without-embedded-server" |
307 | myconf="${myconf} --without-embedded-server" |
… | |
… | |
211 | myconf="${myconf} $(use_with perl bench)" |
313 | myconf="${myconf} $(use_with perl bench)" |
212 | myconf="${myconf} --enable-assembler" |
314 | myconf="${myconf} --enable-assembler" |
213 | myconf="${myconf} --with-extra-tools" |
315 | myconf="${myconf} --with-extra-tools" |
214 | myconf="${myconf} --with-innodb" |
316 | myconf="${myconf} --with-innodb" |
215 | myconf="${myconf} --without-readline" |
317 | myconf="${myconf} --without-readline" |
216 | mysql_version_is_at_least "5.00.00.00" || myconf="${myconf} $(use_with raid)" |
318 | mysql_version_is_at_least "5.0" || myconf="${myconf} $(use_with raid)" |
217 | |
319 | |
218 | if useq "ssl" ; then |
|
|
219 | # --with-vio is not needed anymore, it's on by default and |
320 | # --with-vio is not needed anymore, it's on by default and |
220 | # has been removed from configure |
321 | # has been removed from configure |
|
|
322 | if use ssl ; then |
221 | mysql_version_is_at_least "5.00.04.00" || myconf="${myconf} --with-vio" |
323 | mysql_version_is_at_least "5.0.4" || myconf="${myconf} --with-vio" |
|
|
324 | fi |
|
|
325 | |
222 | if mysql_version_is_at_least "5.00.06.00" ; then |
326 | if mysql_version_is_at_least "5.1.11" ; then |
223 | # myconf="${myconf} --with-yassl" |
327 | myconf="${myconf} $(use_with ssl)" |
224 | myconf="${myconf} --with-openssl" |
|
|
225 | else |
328 | else |
226 | myconf="${myconf} --with-openssl" |
329 | myconf="${myconf} $(use_with ssl openssl)" |
227 | fi |
|
|
228 | else |
|
|
229 | myconf="${myconf} --without-openssl" |
|
|
230 | fi |
330 | fi |
231 | |
331 | |
232 | # The following fix is due to a bug with bdb on SPARC's. See: |
332 | # The following fix is due to a bug with bdb on SPARC's. See: |
233 | # http://www.geocrawler.com/mail/msg.php3?msg_id=4754814&list=8 |
333 | # http://www.geocrawler.com/mail/msg.php3?msg_id=4754814&list=8 |
234 | # It comes down to non-64-bit safety problems. |
334 | # It comes down to non-64-bit safety problems. |
235 | if useq "sparc" || useq "alpha" || useq "hppa" || useq "mips" || useq "amd64" ; then |
335 | if use alpha || use amd64 || use hppa || use mips || use sparc ; then |
236 | elog "Berkeley DB support was disabled due to incompatible arch" |
336 | elog "Berkeley DB support was disabled due to incompatible arch" |
237 | myconf="${myconf} --without-berkeley-db" |
337 | myconf="${myconf} --without-berkeley-db" |
238 | else |
338 | else |
239 | if useq "berkdb" ; then |
339 | if use berkdb ; then |
240 | myconf="${myconf} --with-berkeley-db=./bdb" |
340 | myconf="${myconf} --with-berkeley-db=./bdb" |
241 | else |
341 | else |
242 | myconf="${myconf} --without-berkeley-db" |
342 | myconf="${myconf} --without-berkeley-db" |
243 | fi |
343 | fi |
244 | fi |
344 | fi |
245 | |
345 | |
246 | if mysql_version_is_at_least "4.01.03.00" ; then |
346 | if mysql_version_is_at_least "4.1.3" ; then |
247 | myconf="${myconf} --with-geometry" |
347 | myconf="${myconf} --with-geometry" |
248 | myconf="${myconf} $(use_with cluster ndbcluster)" |
348 | myconf="${myconf} $(use_with cluster ndbcluster)" |
249 | fi |
349 | fi |
250 | |
350 | |
251 | if mysql_version_is_at_least "4.01.03.00" && useq "extraengine" ; then |
351 | if mysql_version_is_at_least "4.1.3" && use extraengine ; then |
252 | # http://dev.mysql.com/doc/mysql/en/archive-storage-engine.html |
352 | # http://dev.mysql.com/doc/mysql/en/archive-storage-engine.html |
253 | myconf="${myconf} --with-archive-storage-engine" |
353 | myconf="${myconf} --with-archive-storage-engine" |
254 | |
354 | |
255 | # http://dev.mysql.com/doc/mysql/en/csv-storage-engine.html |
355 | # http://dev.mysql.com/doc/mysql/en/csv-storage-engine.html |
256 | myconf="${myconf} --with-csv-storage-engine" |
356 | myconf="${myconf} --with-csv-storage-engine" |
… | |
… | |
259 | myconf="${myconf} --with-blackhole-storage-engine" |
359 | myconf="${myconf} --with-blackhole-storage-engine" |
260 | |
360 | |
261 | # http://dev.mysql.com/doc/mysql/en/federated-storage-engine.html |
361 | # http://dev.mysql.com/doc/mysql/en/federated-storage-engine.html |
262 | # http://dev.mysql.com/doc/mysql/en/federated-description.html |
362 | # http://dev.mysql.com/doc/mysql/en/federated-description.html |
263 | # http://dev.mysql.com/doc/mysql/en/federated-limitations.html |
363 | # http://dev.mysql.com/doc/mysql/en/federated-limitations.html |
264 | if mysql_version_is_at_least "5.00.03.00" ; then |
364 | if mysql_version_is_at_least "5.0.3" ; then |
265 | elog "Before using the Federated storage engine, please be sure to read" |
365 | elog "Before using the Federated storage engine, please be sure to read" |
266 | elog "http://dev.mysql.com/doc/mysql/en/federated-limitations.html" |
366 | elog "http://dev.mysql.com/doc/mysql/en/federated-limitations.html" |
267 | myconf="${myconf} --with-federated-storage-engine" |
367 | myconf="${myconf} --with-federated-storage-engine" |
268 | fi |
368 | fi |
269 | fi |
369 | fi |
270 | |
370 | |
271 | mysql_version_is_at_least "5.00.18.00" \ |
371 | mysql_version_is_at_least "5.0.18" \ |
272 | && useq "max-idx-128" \ |
372 | && use max-idx-128 \ |
273 | && myconf="${myconf} --with-max-indexes=128" |
373 | && myconf="${myconf} --with-max-indexes=128" |
274 | } |
374 | } |
275 | |
375 | |
276 | configure_51() { |
376 | configure_51() { |
277 | # TODO: !!!! readd --without-readline |
377 | # TODO: !!!! readd --without-readline |
… | |
… | |
282 | myconf="${myconf} --with-geometry" |
382 | myconf="${myconf} --with-geometry" |
283 | myconf="${myconf} --with-readline" |
383 | myconf="${myconf} --with-readline" |
284 | myconf="${myconf} --with-row-based-replication" |
384 | myconf="${myconf} --with-row-based-replication" |
285 | myconf="${myconf} --with-zlib=/usr/$(get_libdir)" |
385 | myconf="${myconf} --with-zlib=/usr/$(get_libdir)" |
286 | myconf="${myconf} --without-pstack" |
386 | myconf="${myconf} --without-pstack" |
287 | useq "max-idx-128" && myconf="${myconf} --with-max-indexes=128" |
387 | use max-idx-128 && myconf="${myconf} --with-max-indexes=128" |
288 | |
388 | |
289 | # 5.1 introduces a new way to manage storage engines (plugins) |
389 | # 5.1 introduces a new way to manage storage engines (plugins) |
290 | # like configuration=none |
390 | # like configuration=none |
291 | local plugins="csv,myisam,myisammrg,heap" |
391 | local plugins="csv,myisam,myisammrg,heap" |
292 | if useq "extraengine" ; then |
392 | if use extraengine ; then |
293 | # like configuration=max-no-ndb, archive and example removed in 5.1.11 |
393 | # like configuration=max-no-ndb, archive and example removed in 5.1.11 |
294 | plugins="${plugins},archive,blackhole,example,federated,ftexample,partition" |
394 | plugins="${plugins},archive,blackhole,example,federated,partition" |
295 | |
395 | |
296 | elog "Before using the Federated storage engine, please be sure to read" |
396 | elog "Before using the Federated storage engine, please be sure to read" |
297 | elog "http://dev.mysql.com/doc/refman/5.1/en/federated-limitations.html" |
397 | elog "http://dev.mysql.com/doc/refman/5.1/en/federated-limitations.html" |
298 | fi |
398 | fi |
299 | |
399 | |
300 | if useq "innodb" ; then |
400 | if use innodb ; then |
301 | plugins="${plugins},innobase" |
401 | plugins="${plugins},innobase" |
302 | fi |
402 | fi |
303 | |
403 | |
304 | # like configuration=max-no-ndb |
404 | # like configuration=max-no-ndb |
305 | if useq "cluster" ; then |
405 | if use cluster ; then |
306 | plugins="${plugins},ndbcluster" |
406 | plugins="${plugins},ndbcluster" |
307 | myconf="${myconf} --with-ndb-binlog" |
407 | myconf="${myconf} --with-ndb-binlog" |
308 | fi |
408 | fi |
309 | |
409 | |
|
|
410 | if mysql_version_is_at_least "5.2" ; then |
|
|
411 | plugins="${plugins},falcon" |
|
|
412 | fi |
|
|
413 | |
310 | myconf="${myconf} --with-plugins=${plugins}" |
414 | myconf="${myconf} --with-plugins=${plugins}" |
|
|
415 | } |
|
|
416 | |
|
|
417 | pbxt_src_compile() { |
|
|
418 | mysql_init_vars |
|
|
419 | |
|
|
420 | pushd "${WORKDIR}/pbxt-${PBXT_VERSION}" &>/dev/null |
|
|
421 | |
|
|
422 | einfo "Reconfiguring dir '${PWD}'" |
|
|
423 | AT_GNUCONF_UPDATE="yes" eautoreconf |
|
|
424 | |
|
|
425 | local myconf="" |
|
|
426 | myconf="${myconf} --with-mysql=${S} --libdir=${D}/${MY_LIBDIR}" |
|
|
427 | use debug && myconf="${myconf} --with-debug=full" |
|
|
428 | # TODO: is it safe/needed to use econf here ? |
|
|
429 | ./configure ${myconf} || die "Problem configuring PBXT storage engine" |
|
|
430 | # TODO: is it safe/needed to use emake here ? |
|
|
431 | make || die "Problem making PBXT storage engine (${myconf})" |
|
|
432 | |
|
|
433 | popd |
|
|
434 | # TODO: modify test suite for PBXT |
|
|
435 | } |
|
|
436 | |
|
|
437 | pbxt_src_install() { |
|
|
438 | pushd "${WORKDIR}/pbxt-${PBXT_VERSION}" &>/dev/null |
|
|
439 | make install || die "Failed to install PBXT" |
|
|
440 | popd |
311 | } |
441 | } |
312 | |
442 | |
313 | # |
443 | # |
314 | # EBUILD FUNCTIONS |
444 | # EBUILD FUNCTIONS |
315 | # |
445 | # |
316 | |
446 | |
317 | mysql_pkg_setup() { |
447 | mysql_pkg_setup() { |
318 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
448 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
319 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
449 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
320 | |
450 | |
321 | if mysql_version_is_at_least "5.01.12.00" && useq "innodb" ; then |
|
|
322 | eerror "InnoDB now uses cmake to build, this is a TODO item, will be fixed shortly!" |
|
|
323 | die "InnoDB now uses cmake to build, this is a TODO item, will be fixed shortly!" |
|
|
324 | fi |
|
|
325 | |
|
|
326 | # Check for USE flag problems in pkg_setup |
451 | # Check for USE flag problems in pkg_setup |
327 | if useq "static" && useq "ssl" ; then |
452 | if use static && use ssl ; then |
328 | eerror "MySQL does not support being built statically with SSL support enabled!" |
453 | eerror "MySQL does not support being built statically with SSL support enabled!" |
329 | die "MySQL does not support being built statically with SSL support enabled!" |
454 | die "MySQL does not support being built statically with SSL support enabled!" |
330 | fi |
455 | fi |
331 | |
456 | |
332 | if ! mysql_version_is_at_least "5.00.00.00" \ |
457 | if ! mysql_version_is_at_least "5.0" \ |
333 | && useq "raid" \ |
458 | && use raid \ |
334 | && useq "static" ; then |
459 | && use static ; then |
335 | eerror "USE flags 'raid' and 'static' conflict, you cannot build MySQL statically" |
460 | eerror "USE flags 'raid' and 'static' conflict, you cannot build MySQL statically" |
336 | eerror "with RAID support enabled." |
461 | eerror "with RAID support enabled." |
337 | die "USE flags 'raid' and 'static' conflict!" |
462 | die "USE flags 'raid' and 'static' conflict!" |
338 | fi |
463 | fi |
339 | |
464 | |
340 | if mysql_version_is_at_least "4.01.03.00" \ |
465 | if mysql_version_is_at_least "4.1.3" \ |
341 | && ( useq "cluster" || useq "extraengine" ) \ |
466 | && ( use cluster || use extraengine ) \ |
342 | && useq "minimal" ; then |
467 | && use minimal ; then |
343 | eerror "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
468 | eerror "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
344 | die "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
469 | die "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
345 | fi |
470 | fi |
346 | |
471 | |
347 | mysql_check_version_range "4.00.00.00 to 5.00.99.99" \ |
472 | mysql_check_version_range "4.0 to 5.0.99.99" \ |
348 | && useq "berkdb" \ |
473 | && use berkdb \ |
349 | && elog "Berkeley DB support is deprecated and will be removed in future versions!" |
474 | && elog "Berkeley DB support is deprecated and will be removed in future versions!" |
350 | } |
475 | } |
351 | |
476 | |
352 | mysql_src_unpack() { |
477 | mysql_src_unpack() { |
353 | # Initialize the proper variables first |
478 | # Initialize the proper variables first |
354 | mysql_init_vars |
479 | mysql_init_vars |
355 | |
480 | |
356 | unpack ${A} |
481 | unpack ${A} |
357 | |
482 | if [[ ${IS_BITKEEPER} -eq 90 ]] ; then |
358 | mv -f "${WORKDIR}/${MY_P}${MYSQL_RERELEASE}" "${S}" |
483 | if mysql_check_version_range "5.1 to 5.1.99" ; then |
|
|
484 | bitkeeper_fetch "mysql-5.1-ndb" |
|
|
485 | elif mysql_check_version_range "5.2 to 5.2.99" ; then |
|
|
486 | bitkeeper_fetch "mysql-5.2-falcon" |
|
|
487 | else |
|
|
488 | bitkeeper_fetch |
|
|
489 | fi |
359 | cd "${S}" |
490 | cd "${S}" |
|
|
491 | einfo "Running upstream autorun over BK sources ..." |
|
|
492 | BUILD/autorun.sh |
|
|
493 | else |
|
|
494 | mv -f "${WORKDIR}/${MY_SOURCEDIR}" "${S}" |
|
|
495 | cd "${S}" |
|
|
496 | fi |
360 | |
497 | |
361 | # Apply the patches for this MySQL version |
498 | # Apply the patches for this MySQL version |
362 | if [[ -d "${WORKDIR}/${MY_FIXED_PV}" ]] ; then |
499 | EPATCH_SUFFIX="patch" |
363 | EPATCH_SOURCE="${WORKDIR}/${MY_FIXED_PV}" EPATCH_SUFFIX="patch" epatch |
500 | mkdir -p "${EPATCH_SOURCE}" || die "Unable to create epatch directory" |
364 | fi |
501 | mysql_mv_patches |
|
|
502 | epatch |
365 | |
503 | |
366 | # Additional checks, remove bundled zlib |
504 | # Additional checks, remove bundled zlib |
367 | rm -f "${S}/zlib/"*.[ch] |
505 | rm -f "${S}/zlib/"*.[ch] |
368 | sed -i -e "s/zlib\/Makefile dnl/dnl zlib\/Makefile/" "${S}/configure.in" |
506 | sed -i -e "s/zlib\/Makefile dnl/dnl zlib\/Makefile/" "${S}/configure.in" |
369 | rm -f "scripts/mysqlbug" |
507 | rm -f "scripts/mysqlbug" |
370 | |
508 | |
371 | # Make charsets install in the right place |
509 | # Make charsets install in the right place |
372 | find . -name 'Makefile.am' \ |
510 | find . -name 'Makefile.am' \ |
373 | -exec sed --in-place -e 's!$(pkgdatadir)!'${MY_SHAREDSTATEDIR}'!g' {} \; |
511 | -exec sed --in-place -e 's!$(pkgdatadir)!'${MY_SHAREDSTATEDIR}'!g' {} \; |
374 | |
512 | |
375 | # Manage mysqlmanager |
|
|
376 | mysql_version_is_at_least "5.00.15.00" \ |
|
|
377 | && sed -i -e "s!@GENTOO_EXT@!!g" \ |
|
|
378 | -e "s!@GENTOO_SOCK_PATH@!var/run/mysqld!g" \ |
|
|
379 | "${S}/server-tools/instance-manager/Makefile.am" |
|
|
380 | |
|
|
381 | if mysql_version_is_at_least "4.01.00.00" ; then |
513 | if mysql_version_is_at_least "4.1" ; then |
382 | # Remove what needs to be recreated, so we're sure it's actually done |
514 | # Remove what needs to be recreated, so we're sure it's actually done |
383 | find . -name Makefile \ |
515 | find . -name Makefile \ |
384 | -o -name Makefile.in \ |
516 | -o -name Makefile.in \ |
385 | -o -name configure \ |
517 | -o -name configure \ |
386 | -exec rm -f {} \; |
518 | -exec rm -f {} \; |
387 | rm -f "ltmain.sh" |
519 | rm -f "ltmain.sh" |
388 | rm -f "scripts/mysqlbug" |
520 | rm -f "scripts/mysqlbug" |
389 | fi |
521 | fi |
390 | |
522 | |
391 | local rebuilddirlist bdbdir d |
523 | local rebuilddirlist d |
392 | |
524 | |
393 | if mysql_version_is_at_least "5.01.12.00" ; then |
525 | if mysql_version_is_at_least "5.1.12" ; then |
394 | # TODO: innodb is using cmake now? |
|
|
395 | rebuilddirlist="." |
526 | rebuilddirlist="." |
396 | bdbdir='' |
527 | # TODO: check this with a cmake expert |
|
|
528 | use innodb \ |
|
|
529 | && cmake \ |
|
|
530 | -DCMAKE_C_COMPILER=$(type -P $(tc-getCC)) \ |
|
|
531 | -DCMAKE_CXX_COMPILER=$(type -P $(tc-getCC)) \ |
|
|
532 | "storage/innobase" |
397 | else |
533 | else |
398 | rebuilddirlist=". innobase" |
534 | rebuilddirlist=". innobase" |
399 | bdbdir='bdb/dist' |
|
|
400 | fi |
535 | fi |
401 | |
536 | |
402 | for d in ${rebuilddirlist} ; do |
537 | for d in ${rebuilddirlist} ; do |
403 | einfo "Reconfiguring dir '${d}'" |
538 | einfo "Reconfiguring dir '${d}'" |
404 | pushd "${d}" &>/dev/null |
539 | pushd "${d}" &>/dev/null |
405 | AT_GNUCONF_UPDATE="yes" eautoreconf |
540 | AT_GNUCONF_UPDATE="yes" eautoreconf |
406 | popd &>/dev/null |
541 | popd &>/dev/null |
407 | done |
542 | done |
408 | |
543 | |
409 | if mysql_check_version_range "4.01.00.00 to 5.00.99.99" \ |
544 | if mysql_check_version_range "4.1 to 5.0.99.99" \ |
410 | && useq "berkdb" ; then |
545 | && use berkdb ; then |
411 | [[ -w "${bdbdir}/ltmain.sh" ]] && cp -f "ltmain.sh" "${bdbdir}/ltmain.sh" |
546 | [[ -w "bdb/dist/ltmain.sh" ]] && cp -f "ltmain.sh" "bdb/dist/ltmain.sh" |
412 | pushd "${bdbdir}" \ |
547 | cp -f "/usr/share/aclocal/libtool.m4" "bdb/dist/aclocal/libtool.ac" \ |
|
|
548 | || die "Could not copy libtool.m4 to bdb/dist/" |
|
|
549 | pushd "bdb/dist" &>/dev/null |
413 | && sh s_all \ |
550 | sh s_all \ |
414 | || die "Failed bdb reconfigure" \ |
551 | || die "Failed bdb reconfigure" |
415 | &>/dev/null |
|
|
416 | popd &>/dev/null |
552 | popd &>/dev/null |
417 | fi |
553 | fi |
418 | } |
554 | } |
419 | |
555 | |
420 | mysql_src_compile() { |
556 | mysql_src_compile() { |
… | |
… | |
422 | mysql_init_vars |
558 | mysql_init_vars |
423 | |
559 | |
424 | # $myconf is modified by the configure_* functions |
560 | # $myconf is modified by the configure_* functions |
425 | local myconf="" |
561 | local myconf="" |
426 | |
562 | |
427 | if useq "minimal" ; then |
563 | if use minimal ; then |
428 | configure_minimal |
564 | configure_minimal |
429 | else |
565 | else |
430 | configure_common |
566 | configure_common |
431 | if mysql_version_is_at_least "5.01.10.00" ; then |
567 | if mysql_version_is_at_least "5.1.10" ; then |
432 | configure_51 |
568 | configure_51 |
433 | else |
569 | else |
434 | configure_40_41_50 |
570 | configure_40_41_50 |
435 | fi |
571 | fi |
436 | fi |
572 | fi |
… | |
… | |
439 | filter-flags "-O" "-O[01]" |
575 | filter-flags "-O" "-O[01]" |
440 | |
576 | |
441 | # glib-2.3.2_pre fix, bug #16496 |
577 | # glib-2.3.2_pre fix, bug #16496 |
442 | append-flags "-DHAVE_ERRNO_AS_DEFINE=1" |
578 | append-flags "-DHAVE_ERRNO_AS_DEFINE=1" |
443 | |
579 | |
444 | append-flags "-fno-exceptions -fno-strict-aliasing" |
580 | CXXFLAGS="${CXXFLAGS} -fno-exceptions -fno-strict-aliasing" |
445 | CXXFLAGS="${CXXFLAGS} -felide-constructors -fno-rtti" |
581 | CXXFLAGS="${CXXFLAGS} -felide-constructors -fno-rtti" |
446 | mysql_version_is_at_least "5.00.00.00" \ |
582 | mysql_version_is_at_least "5.0" \ |
447 | && CXXFLAGS="${CXXFLAGS} -fno-implicit-templates" |
583 | && CXXFLAGS="${CXXFLAGS} -fno-implicit-templates" |
448 | export CXXFLAGS |
584 | export CXXFLAGS |
449 | |
585 | |
450 | econf \ |
586 | econf \ |
451 | --libexecdir="/usr/sbin" \ |
587 | --libexecdir="/usr/sbin" \ |
… | |
… | |
465 | find . -type f -name Makefile -print0 \ |
601 | find . -type f -name Makefile -print0 \ |
466 | | xargs -0 -n100 sed -i \ |
602 | | xargs -0 -n100 sed -i \ |
467 | -e 's|^pkglibdir *= *$(libdir)/mysql|pkglibdir = $(libdir)|;s|^pkgincludedir *= *$(includedir)/mysql|pkgincludedir = $(includedir)|' |
603 | -e 's|^pkglibdir *= *$(libdir)/mysql|pkglibdir = $(libdir)|;s|^pkgincludedir *= *$(includedir)/mysql|pkgincludedir = $(includedir)|' |
468 | |
604 | |
469 | emake || die "emake failed" |
605 | emake || die "emake failed" |
|
|
606 | |
|
|
607 | mysql_version_is_at_least "5.1.12" && use pbxt && pbxt_src_compile |
470 | } |
608 | } |
471 | |
609 | |
472 | mysql_src_install() { |
610 | mysql_src_install() { |
473 | # Make sure the vars are correctly initialized |
611 | # Make sure the vars are correctly initialized |
474 | mysql_init_vars |
612 | mysql_init_vars |
475 | |
613 | |
476 | emake install DESTDIR="${D}" benchdir_root="${MY_SHAREDSTATEDIR}" || die "emake install failed" |
614 | emake install DESTDIR="${D}" benchdir_root="${MY_SHAREDSTATEDIR}" || die "emake install failed" |
|
|
615 | |
|
|
616 | mysql_version_is_at_least "5.1.12" && use pbxt && pbxt_src_install |
477 | |
617 | |
478 | insinto "${MY_INCLUDEDIR}" |
618 | insinto "${MY_INCLUDEDIR}" |
479 | doins "${MY_INCLUDEDIR}"/my_{config,dir}.h |
619 | doins "${MY_INCLUDEDIR}"/my_{config,dir}.h |
480 | |
620 | |
481 | # Convenience links |
621 | # Convenience links |
… | |
… | |
490 | do |
630 | do |
491 | rm -f "${D}"/usr/share/mysql/${removeme} |
631 | rm -f "${D}"/usr/share/mysql/${removeme} |
492 | done |
632 | done |
493 | |
633 | |
494 | # Clean up stuff for a minimal build |
634 | # Clean up stuff for a minimal build |
495 | if useq "minimal" ; then |
635 | if use minimal ; then |
496 | rm -Rf "${D}${MY_SHAREDSTATEDIR}"/{mysql-test,sql-bench} |
636 | rm -Rf "${D}${MY_SHAREDSTATEDIR}"/{mysql-test,sql-bench} |
497 | 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} |
637 | 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} |
498 | rm -f "${D}/usr/sbin/mysqld" |
638 | rm -f "${D}/usr/sbin/mysqld" |
499 | rm -f "${D}${MY_LIBDIR}"/lib{heap,merge,nisam,my{sys,strings,sqld,isammrg,isam},vio,dbug}.a |
639 | rm -f "${D}${MY_LIBDIR}"/lib{heap,merge,nisam,my{sys,strings,sqld,isammrg,isam},vio,dbug}.a |
500 | fi |
640 | fi |
501 | |
641 | |
502 | # Configuration stuff |
642 | # Configuration stuff |
503 | if mysql_version_is_at_least "4.01.00.00" ; then |
643 | if mysql_version_is_at_least "4.1" ; then |
504 | mysql_mycnf_version="4.1" |
644 | mysql_mycnf_version="4.1" |
505 | else |
645 | else |
506 | mysql_mycnf_version="4.0" |
646 | mysql_mycnf_version="4.0" |
507 | fi |
647 | fi |
508 | insinto "${MY_SYSCONFDIR}" |
648 | insinto "${MY_SYSCONFDIR}" |
509 | doins "scripts/mysqlaccess.conf" |
649 | doins scripts/mysqlaccess.conf |
510 | sed -e "s!@DATADIR@!${DATADIR}!g" \ |
650 | sed -e "s!@DATADIR@!${DATADIR}!g" \ |
511 | "${FILESDIR}/my.cnf-${mysql_mycnf_version}" \ |
651 | "${FILESDIR}/my.cnf-${mysql_mycnf_version}" \ |
512 | > "${TMPDIR}/my.cnf.ok" |
652 | > "${TMPDIR}/my.cnf.ok" |
513 | if mysql_version_is_at_least "4.01.00.00" && useq "latin1" ; then |
653 | if mysql_version_is_at_least "4.1" && use latin1 ; then |
514 | sed -e "s|utf8|latin1|g" -i "${TMPDIR}/my.cnf.ok" |
654 | sed -e "s|utf8|latin1|g" -i "${TMPDIR}/my.cnf.ok" |
515 | fi |
655 | fi |
516 | newins "${TMPDIR}/my.cnf.ok" my.cnf |
656 | newins "${TMPDIR}/my.cnf.ok" my.cnf |
517 | |
657 | |
518 | insinto "/etc/conf.d" |
|
|
519 | newins "${FILESDIR}/mysql.conf.d" "mysql" |
|
|
520 | mysql_version_is_at_least "5.00.11.00" \ |
|
|
521 | && newins "${FILESDIR}/mysqlmanager.conf.d" "mysqlmanager" |
|
|
522 | |
|
|
523 | # Minimal builds don't have the MySQL server |
658 | # Minimal builds don't have the MySQL server |
524 | if ! useq "minimal" ; then |
659 | if ! use minimal ; then |
525 | exeinto "/etc/init.d" |
|
|
526 | newexe "${FILESDIR}/mysql.rc6" "mysql" |
|
|
527 | mysql_version_is_at_least "5.00.11.00" \ |
|
|
528 | && newexe "${FILESDIR}/mysqlmanager.rc6" "mysqlmanager" |
|
|
529 | |
|
|
530 | insinto "/etc/logrotate.d" |
|
|
531 | newins "${FILESDIR}/logrotate.mysql" "mysql" |
|
|
532 | |
|
|
533 | # Empty directories ... |
660 | # Empty directories ... |
534 | diropts "-m0750" |
661 | diropts "-m0750" |
535 | if [[ "${PREVIOUS_DATADIR}" != "yes" ]] ; then |
662 | if [[ "${PREVIOUS_DATADIR}" != "yes" ]] ; then |
536 | dodir "${DATADIR}" |
663 | dodir "${DATADIR}" |
537 | keepdir "${DATADIR}" |
664 | keepdir "${DATADIR}" |
… | |
… | |
548 | |
675 | |
549 | # Docs |
676 | # Docs |
550 | dodoc README COPYING ChangeLog EXCEPTIONS-CLIENT INSTALL-SOURCE |
677 | dodoc README COPYING ChangeLog EXCEPTIONS-CLIENT INSTALL-SOURCE |
551 | |
678 | |
552 | # Minimal builds don't have the MySQL server |
679 | # Minimal builds don't have the MySQL server |
553 | if ! useq "minimal" ; then |
680 | if ! use minimal ; then |
554 | docinto "support-files" |
681 | docinto "support-files" |
555 | for script in \ |
682 | for script in \ |
556 | support-files/my-*.cnf \ |
683 | support-files/my-*.cnf \ |
557 | support-files/magic \ |
684 | support-files/magic \ |
558 | support-files/ndb-config-2-node.ini |
685 | support-files/ndb-config-2-node.ini |
… | |
… | |
564 | for script in scripts/mysql* ; do |
691 | for script in scripts/mysql* ; do |
565 | [[ "${script%.sh}" == "${script}" ]] && dodoc "${script}" |
692 | [[ "${script%.sh}" == "${script}" ]] && dodoc "${script}" |
566 | done |
693 | done |
567 | fi |
694 | fi |
568 | |
695 | |
569 | ROOT="${D}" mysql_lib_symlinks |
696 | mysql_lib_symlinks "${D}" |
570 | } |
697 | } |
571 | |
698 | |
572 | mysql_pkg_preinst() { |
699 | mysql_pkg_preinst() { |
573 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
700 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
574 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
701 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
… | |
… | |
577 | mysql_pkg_postinst() { |
704 | mysql_pkg_postinst() { |
578 | # Make sure the vars are correctly initialized |
705 | # Make sure the vars are correctly initialized |
579 | mysql_init_vars |
706 | mysql_init_vars |
580 | |
707 | |
581 | # Check FEATURES="collision-protect" before removing this |
708 | # Check FEATURES="collision-protect" before removing this |
582 | [[ -d "${ROOT}/var/log/mysql" ]] \ |
|
|
583 | || install -d -m0750 -o mysql -g mysql "${ROOT}${MY_LOGDIR}" |
709 | [[ -d "${ROOT}/var/log/mysql" ]] || install -d -m0750 -o mysql -g mysql "${ROOT}${MY_LOGDIR}" |
584 | |
710 | |
585 | # Secure the logfiles |
711 | # Secure the logfiles |
586 | touch "${ROOT}${MY_LOGDIR}"/mysql.{log,err} |
712 | touch "${ROOT}${MY_LOGDIR}"/mysql.{log,err} |
587 | chown mysql:mysql "${ROOT}${MY_LOGDIR}"/mysql* |
713 | chown mysql:mysql "${ROOT}${MY_LOGDIR}"/mysql* |
588 | chmod 0660 "${ROOT}${MY_LOGDIR}"/mysql* |
714 | chmod 0660 "${ROOT}${MY_LOGDIR}"/mysql* |
589 | |
715 | |
|
|
716 | # Minimal builds don't have the MySQL server |
590 | if ! useq "minimal" ; then |
717 | if ! use minimal ; then |
591 | # Your friendly public service announcement ... |
718 | docinto "support-files" |
|
|
719 | for script in \ |
|
|
720 | support-files/my-*.cnf \ |
|
|
721 | support-files/magic \ |
|
|
722 | support-files/ndb-config-2-node.ini |
|
|
723 | do |
|
|
724 | dodoc "${script}" |
|
|
725 | done |
|
|
726 | |
|
|
727 | docinto "scripts" |
|
|
728 | for script in scripts/mysql* ; do |
|
|
729 | [[ "${script%.sh}" == "${script}" ]] && dodoc "${script}" |
|
|
730 | done |
|
|
731 | |
592 | einfo |
732 | einfo |
593 | elog "You might want to run:" |
733 | elog "You might want to run:" |
594 | elog "\"emerge --config =${CATEGORY}/${PF}\"" |
734 | elog "\"emerge --config =${CATEGORY}/${PF}\"" |
595 | elog "if this is a new install." |
735 | elog "if this is a new install." |
596 | einfo |
736 | einfo |
597 | mysql_version_is_at_least "5.01.00.00" \ |
|
|
598 | || elog "InnoDB is *not* optional as of MySQL-4.0.24, at the request of upstream." |
|
|
599 | fi |
737 | fi |
|
|
738 | |
|
|
739 | if mysql_version_is_at_least "5.1.12" && use pbxt ; then |
|
|
740 | # TODO: explain it better |
|
|
741 | elog " mysql> INSTALL PLUGIN pbxt SONAME 'libpbxt.so';" |
|
|
742 | elog " mysql> CREATE TABLE t1 (c1 int, c2 text) ENGINE=pbxt;" |
|
|
743 | elog "if, after that, you cannot start the MySQL server," |
|
|
744 | elog "remove the ${MY_DATADIR}/mysql/plugin.* files, then" |
|
|
745 | elog "use the MySQL upgrade script to restore the table" |
|
|
746 | elog "or execute the following SQL command:" |
|
|
747 | elog " CREATE TABLE IF NOT EXISTS plugin (" |
|
|
748 | elog " name char(64) binary DEFAULT '' NOT NULL," |
|
|
749 | elog " dl char(128) DEFAULT '' NOT NULL," |
|
|
750 | elog " PRIMARY KEY (name)" |
|
|
751 | elog " ) CHARACTER SET utf8 COLLATE utf8_bin;" |
|
|
752 | fi |
|
|
753 | |
600 | mysql_check_version_range "4.00.00.00 to 5.00.99.99" \ |
754 | mysql_check_version_range "4.0 to 5.0.99.99" \ |
601 | && useq "berkdb" \ |
755 | && use berkdb \ |
602 | && elog "Berkeley DB support is deprecated and will be removed in future versions!" |
756 | && elog "Berkeley DB support is deprecated and will be removed in future versions!" |
603 | } |
757 | } |
604 | |
758 | |
605 | mysql_pkg_config() { |
759 | mysql_pkg_config() { |
606 | # Make sure the vars are correctly initialized |
760 | # Make sure the vars are correctly initialized |
607 | mysql_init_vars |
761 | mysql_init_vars |
608 | |
762 | |
609 | [[ -z "${DATADIR}" ]] && die "Sorry, unable to find DATADIR" |
763 | [[ -z "${DATADIR}" ]] && die "Sorry, unable to find DATADIR" |
610 | |
764 | |
611 | if built_with_use dev-db/mysql minimal ; then |
765 | if built_with_use ${CATEGORY}/${PN} minimal ; then |
612 | die "Minimal builds do NOT include the MySQL server" |
766 | die "Minimal builds do NOT include the MySQL server" |
613 | fi |
767 | fi |
614 | |
768 | |
615 | local pwd1="a" |
769 | local pwd1="a" |
616 | local pwd2="b" |
770 | local pwd2="b" |
… | |
… | |
652 | [[ -f "${ROOT}/${DATADIR}/mysql/user.frm" ]] \ |
806 | [[ -f "${ROOT}/${DATADIR}/mysql/user.frm" ]] \ |
653 | || die "MySQL databases not installed" |
807 | || die "MySQL databases not installed" |
654 | chown -R mysql:mysql "${ROOT}/${DATADIR}" 2> /dev/null |
808 | chown -R mysql:mysql "${ROOT}/${DATADIR}" 2> /dev/null |
655 | chmod 0750 "${ROOT}/${DATADIR}" 2> /dev/null |
809 | chmod 0750 "${ROOT}/${DATADIR}" 2> /dev/null |
656 | |
810 | |
657 | if mysql_version_is_at_least "4.01.03.00" ; then |
811 | if mysql_version_is_at_least "4.1.3" ; then |
658 | options="--skip-ndbcluster" |
812 | options="--skip-ndbcluster" |
659 | |
813 | |
660 | # Filling timezones, see |
814 | # Filling timezones, see |
661 | # http://dev.mysql.com/doc/mysql/en/time-zone-support.html |
815 | # http://dev.mysql.com/doc/mysql/en/time-zone-support.html |
662 | "${ROOT}/usr/bin/mysql_tzinfo_to_sql" "${ROOT}/usr/share/zoneinfo" > "${sqltmp}" 2>/dev/null |
816 | "${ROOT}/usr/bin/mysql_tzinfo_to_sql" "${ROOT}/usr/share/zoneinfo" > "${sqltmp}" 2>/dev/null |
… | |
… | |
711 | wait %1 |
865 | wait %1 |
712 | einfo "Done" |
866 | einfo "Done" |
713 | } |
867 | } |
714 | |
868 | |
715 | mysql_pkg_postrm() { |
869 | mysql_pkg_postrm() { |
716 | mysql_lib_symlinks |
870 | : # mysql_lib_symlinks "${D}" |
717 | } |
871 | } |