| 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.51 2006/12/29 20:34:02 vivo Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/mysql.eclass,v 1.57 2007/01/04 11:17:05 vivo Exp $ |
|
|
4 | # kate: encoding utf-8; eol unix; |
|
|
5 | # kate: indent-width 4; mixedindent off; remove-trailing-space on; space-indent off; |
|
|
6 | # kate: word-wrap-column 80; word-wrap off; |
| 4 | |
7 | |
| 5 | # Author: Francesco Riosa <vivo@gentoo.org> |
8 | # Author: Francesco Riosa (Retired) <vivo@gentoo.org> |
| 6 | # Maintainer: Luca Longinotti <chtekk@gentoo.org> |
9 | # Maintainer: Luca Longinotti <chtekk@gentoo.org> |
| 7 | |
10 | |
| 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 !!! |
11 | # Note that MYSQL_VERSION_ID must be empty !!! |
| 10 | |
12 | |
|
|
13 | ECLASS="mysql" |
|
|
14 | INHERITED="$INHERITED $ECLASS" |
|
|
15 | inherit eutils flag-o-matic gnuconfig autotools mysql_fx |
|
|
16 | |
|
|
17 | # avoid running userspace code 8 times per ebuild :( |
|
|
18 | if [[ "${_MYPVR}" != "${PVR}" ]] && [[ -z "${MYSQL_VERSION_ID}" ]] |
|
|
19 | then |
|
|
20 | _MYPVR=${PVR} |
|
|
21 | |
|
|
22 | [[ -z ${MY_EXTRAS_VER} ]] && MY_EXTRAS_VER="20070103" |
|
|
23 | |
|
|
24 | if [[ ${PR#r} -lt 60 ]] ; then |
|
|
25 | IS_BITKEEPER=0 |
|
|
26 | elif [[ ${PR#r} -lt 90 ]] ; then |
|
|
27 | IS_BITKEEPER=60 |
|
|
28 | else |
|
|
29 | IS_BITKEEPER=90 |
|
|
30 | fi |
|
|
31 | |
| 11 | # MYSQL_VERSION_ID will be: |
32 | # MYSQL_VERSION_ID will be: |
| 12 | # major * 10e6 + minor * 10e4 + micro * 10e2 + gentoo revision number, all [0..99] |
33 | # 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 |
34 | # This is an important part, because many of the choices the MySQL ebuild will do |
| 14 | # depend on this variable. |
35 | # depend on this variable. |
| 15 | # In particular, the code below transforms a $PVR like "5.0.18-r3" in "5001803" |
36 | # In particular, the code below transforms a $PVR like "5.0.18-r3" in "5001803" |
| 16 | |
37 | MYSQL_VERSION_ID="" |
| 17 | if [[ -z "${MYSQL_VERSION_ID}" ]] ; then |
|
|
| 18 | tpv=( ${PV//[-._]/ } ) ; tpv[3]="${PVR:${#PV}}" ; tpv[3]="${tpv[3]##*-r}" |
38 | tpv=( ${PV//[-._]/ } ) ; tpv[3]="${PVR:${#PV}}" ; tpv[3]="${tpv[3]##*-r}" |
| 19 | for vatom in 0 1 2 3 ; do |
39 | for vatom in 0 1 2 3 ; do |
| 20 | # pad to length 2 |
40 | # pad to length 2 |
| 21 | tpv[${vatom}]="00${tpv[${vatom}]}" |
41 | tpv[${vatom}]="00${tpv[${vatom}]}" |
| 22 | MYSQL_VERSION_ID="${MYSQL_VERSION_ID}${tpv[${vatom}]:0-2}" |
42 | MYSQL_VERSION_ID="${MYSQL_VERSION_ID}${tpv[${vatom}]:0-2}" |
| 23 | done |
43 | done |
| 24 | # strip leading "0" (otherwise it's considered an octal number by BASH) |
44 | # strip leading "0" (otherwise it's considered an octal number by BASH) |
| 25 | MYSQL_VERSION_ID=${MYSQL_VERSION_ID##"0"} |
45 | MYSQL_VERSION_ID=${MYSQL_VERSION_ID##"0"} |
| 26 | fi |
|
|
| 27 | |
46 | |
| 28 | inherit eutils flag-o-matic gnuconfig autotools mysql_fx |
|
|
| 29 | |
|
|
| 30 | # Be warned, *DEPEND are version-dependant |
47 | # Be warned, *DEPEND are version-dependant |
| 31 | DEPEND="ssl? ( >=dev-libs/openssl-0.9.6d ) |
48 | DEPEND="ssl? ( >=dev-libs/openssl-0.9.6d ) |
| 32 | userland_GNU? ( sys-process/procps ) |
49 | userland_GNU? ( sys-process/procps ) |
| 33 | >=sys-apps/sed-4 |
50 | >=sys-apps/sed-4 |
| 34 | >=sys-apps/texinfo-4.7-r1 |
51 | >=sys-apps/texinfo-4.7-r1 |
| 35 | >=sys-libs/readline-4.1 |
52 | >=sys-libs/readline-4.1 |
| 36 | >=sys-libs/zlib-1.2.3" |
53 | >=sys-libs/zlib-1.2.3" |
| 37 | |
54 | |
| 38 | # LEAVE THE SURROUNDING SPACES THERE |
55 | # having different flavours at the same time is not a good idea |
| 39 | MYSQL_MUTUALLY_EXCLUSIVE=" !dev-db/mysql !dev-db/mysql-community " |
56 | for i in "" "-community" "-slotted" ; do |
| 40 | DEPEND="${DEPEND} ${MYSQL_MUTUALLY_EXCLUSIVE/ !${CATEGORY}\/${PN} /}" |
57 | [[ "${i}" == ${PN#mysql} ]] || |
|
|
58 | DEPEND="${DEPEND} !dev-db/mysql${i}" |
|
|
59 | done |
| 41 | |
60 | |
| 42 | mysql_version_is_at_least "5.01.00.00" \ |
61 | mysql_version_is_at_least "5.1" \ |
| 43 | || DEPEND="${DEPEND} berkdb? ( sys-apps/ed )" |
62 | || DEPEND="${DEPEND} berkdb? ( sys-apps/ed )" |
| 44 | |
63 | |
| 45 | RDEPEND="${DEPEND} selinux? ( sec-policy/selinux-mysql )" |
|
|
| 46 | |
|
|
| 47 | # dev-perl/DBD-mysql is needed by some scripts installed by MySQL |
64 | # dev-perl/DBD-mysql is needed by some scripts installed by MySQL |
| 48 | PDEPEND="perl? ( >=dev-perl/DBD-mysql-2.9004 )" |
65 | PDEPEND="perl? ( >=dev-perl/DBD-mysql-2.9004 )" |
| 49 | |
66 | |
|
|
67 | if mysql_version_is_at_least "5.1.12" ; then |
|
|
68 | DEPEND="${DEPEND} innodb? ( >=dev-util/cmake-2.4.3 )" |
|
|
69 | fi |
|
|
70 | |
| 50 | # Shorten the path because the socket path length must be shorter than 107 chars |
71 | # Shorten the path because the socket path length must be shorter than 107 chars |
| 51 | # and we will run a mysql server during test phase |
72 | # and we will run a mysql server during test phase |
| 52 | S="${WORKDIR}/mysql" # BitKeeper ebuilds |
73 | S="${WORKDIR}/mysql" |
| 53 | |
74 | |
| 54 | # Define $MY_FIXED_PV for MySQL patchsets |
75 | # BitKeeper dependency, compile-time only |
| 55 | MY_FIXED_PV="${PV/_alpha/}" |
76 | [[ ${IS_BITKEEPER} -eq 90 ]] && DEPEND="${DEPEND} dev-util/bk_client" |
| 56 | #MY_FIXED_PV="${MY_FIXED_PV/_beta/}" |
|
|
| 57 | #MY_FIXED_PV="${MY_FIXED_PV/_rc/}" |
|
|
| 58 | |
77 | |
| 59 | MY_P="${P/_/-}" |
78 | if [[ ${PN} == "mysql-slotted" ]] ; then |
| 60 | MY_P="${MY_P/-alpha/-bk-}" # BitKeeper ebuilds |
79 | DEPEND="${DEPEND} app-admin/eselect-mysql" |
| 61 | MY_P="${MY_P/-community/}" |
80 | fi |
| 62 | |
81 | |
|
|
82 | if [[ ${PN} == "mysql-slotted" ]] ; then |
|
|
83 | SLOT="" |
|
|
84 | tpv=( ${PV//[-._]/ } ) |
|
|
85 | for vatom in 0 1 2 ; do |
|
|
86 | SLOT="${SLOT}${tpv[${vatom}]}_" |
|
|
87 | done |
|
|
88 | #finally SLOT=5_0_24 |
|
|
89 | SLOT=${SLOT:0:${#SLOT}-1} |
|
|
90 | else |
|
|
91 | SLOT="0" |
|
|
92 | fi |
|
|
93 | |
| 63 | # Define correct SRC_URIs |
94 | # Define correct SRC_URIs |
| 64 | SRC_URI="${BASE_URI}/${MY_P}${MYSQL_RERELEASE}.tar.gz" |
95 | SRC_URI=" |
| 65 | if [[ -n "${MYSQL_PATCHSET_REV}" ]] ; then |
96 | ${SERVER_URI} |
| 66 | MYSQL_PATCHSET_FILENAME="${PN}-patchset-${MY_FIXED_PV}-r${MYSQL_PATCHSET_REV}.tar.bz2" |
97 | http://g3nt8.org/patches/mysql-extras-${MY_EXTRAS_VER}.tar.bz2 |
| 67 | # We add the Gentoo mirror here, as we only use primaryuri for the MySQL tarball |
98 | " |
| 68 | SRC_URI="${SRC_URI} http://g3nt8.org/patches/${MYSQL_PATCHSET_FILENAME}" |
99 | mysql_version_is_at_least "5.1.12" \ |
| 69 | fi |
100 | && [[ -n "${PBXT_VERSION}" ]] \ |
|
|
101 | && SRC_URI="${SRC_URI} pbxt? ( mirror://sourceforge/pbxt/pbxt-${PBXT_VERSION}.tar.gz )" |
| 70 | |
102 | |
| 71 | DESCRIPTION="A fast, multi-threaded, multi-user SQL database server." |
103 | DESCRIPTION="A fast, multi-threaded, multi-user SQL database server." |
| 72 | HOMEPAGE="http://www.mysql.com/" |
104 | HOMEPAGE="http://www.mysql.com/" |
| 73 | SLOT="0" |
|
|
| 74 | LICENSE="GPL-2" |
105 | LICENSE="GPL-2" |
| 75 | IUSE="big-tables debug embedded minimal perl selinux srvdir ssl static" |
106 | IUSE="big-tables debug embedded minimal perl selinux ssl static" |
| 76 | RESTRICT="confcache" |
107 | RESTRICT="confcache" |
| 77 | |
108 | |
| 78 | mysql_version_is_at_least "4.01.00.00" \ |
109 | mysql_version_is_at_least "4.1" \ |
| 79 | && IUSE="${IUSE} latin1" |
110 | && IUSE="${IUSE} latin1" |
| 80 | |
111 | |
| 81 | mysql_version_is_at_least "4.01.03.00" \ |
112 | mysql_version_is_at_least "4.1.3" \ |
| 82 | && IUSE="${IUSE} cluster extraengine" |
113 | && IUSE="${IUSE} cluster extraengine" |
| 83 | |
114 | |
| 84 | mysql_version_is_at_least "5.00.00.00" \ |
115 | mysql_version_is_at_least "5.0" \ |
| 85 | || IUSE="${IUSE} raid" |
116 | || IUSE="${IUSE} raid" |
| 86 | |
117 | |
| 87 | mysql_version_is_at_least "5.00.18.00" \ |
118 | mysql_version_is_at_least "5.0.18" \ |
| 88 | && IUSE="${IUSE} max-idx-128" |
119 | && IUSE="${IUSE} max-idx-128" |
| 89 | |
120 | |
| 90 | mysql_version_is_at_least "5.01.00.00" \ |
121 | mysql_version_is_at_least "5.1" \ |
| 91 | && IUSE="${IUSE} innodb" |
122 | && IUSE="${IUSE} innodb" |
| 92 | |
123 | |
| 93 | mysql_version_is_at_least "5.01.00.00" \ |
124 | mysql_version_is_at_least "5.1" \ |
| 94 | || IUSE="${IUSE} berkdb" |
125 | || IUSE="${IUSE} berkdb" |
|
|
126 | |
|
|
127 | mysql_version_is_at_least "5.1.12" \ |
|
|
128 | && IUSE="${IUSE} pbxt" |
|
|
129 | |
|
|
130 | RDEPEND="${DEPEND} selinux? ( sec-policy/selinux-mysql )" |
|
|
131 | |
|
|
132 | fi # if [[ "${_MYPVR}" != "${PVR}" ]] |
| 95 | |
133 | |
| 96 | EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_preinst \ |
134 | EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_preinst \ |
| 97 | pkg_postinst pkg_config pkg_postrm |
135 | pkg_postinst pkg_config pkg_postrm |
| 98 | |
136 | |
| 99 | # |
137 | # |
| 100 | # HELPER FUNCTIONS: |
138 | # HELPER FUNCTIONS: |
| 101 | # |
139 | # |
| 102 | |
140 | |
| 103 | bitkeeper_fetch() { |
141 | bitkeeper_fetch() { |
| 104 | |
142 | |
|
|
143 | local reposuf |
|
|
144 | if [[ -z "${1}" ]] ; then |
|
|
145 | local tpv |
| 105 | local tpv=( ${PV//[-._]/ } ) |
146 | tpv=( ${PV//[-._]/ } ) |
| 106 | local reposuf="${tpv[0]}.${tpv[1]}" |
147 | reposuf="mysql-${tpv[0]}.${tpv[1]}" |
| 107 | useq "cluster" && reposuf="${reposuf}-ndb" |
148 | else |
|
|
149 | reposuf="${1}" |
|
|
150 | fi |
|
|
151 | einfo "using \"${reposuf}\" repository." |
| 108 | local repo_uri="bk://mysql.bkbits.net/mysql-${reposuf}" |
152 | local repo_uri="bk://mysql.bkbits.net/${reposuf}" |
| 109 | ## -- ebk_store_dir: bitkeeper sources store directory |
153 | ## -- ebk_store_dir: bitkeeper sources store directory |
| 110 | local ebk_store_dir="${PORTAGE_ACTUAL_DISTDIR-${DISTDIR}}/bk-src" |
154 | local ebk_store_dir="${PORTAGE_ACTUAL_DISTDIR-${DISTDIR}}/bk-src" |
| 111 | ## -- ebk_fetch_cmd: bitkeeper fetch command |
155 | ## -- ebk_fetch_cmd: bitkeeper fetch command |
| 112 | # always fetch the latest revision, use -r<revision> if a specified revision is wanted |
156 | # always fetch the latest revision, use -r<revision> if a specified revision is wanted |
| 113 | # hint: does not work |
157 | # hint: does not work |
| … | |
… | |
| 123 | mkdir -p "${ebk_store_dir}" || die "${EBK}: can't mkdir ${ebk_store_dir}." |
167 | mkdir -p "${ebk_store_dir}" || die "${EBK}: can't mkdir ${ebk_store_dir}." |
| 124 | fi |
168 | fi |
| 125 | |
169 | |
| 126 | pushd "${ebk_store_dir}" || die "${EBK}: can't chdir to ${ebk_store_dir}" |
170 | pushd "${ebk_store_dir}" || die "${EBK}: can't chdir to ${ebk_store_dir}" |
| 127 | |
171 | |
| 128 | local wc_path=mysql-${reposuf} |
172 | local wc_path=${reposuf} |
| 129 | |
173 | |
| 130 | if [[ ! -d "${wc_path}" ]]; then |
174 | if [[ ! -d "${wc_path}" ]]; then |
| 131 | local options="-r+" |
175 | local options="-r+" |
| 132 | # first check out |
176 | # first check out |
| 133 | einfo "bitkeeper check out start -->" |
177 | einfo "bitkeeper check out start -->" |
| … | |
… | |
| 144 | einfo "bitkeeper update start -->" |
188 | einfo "bitkeeper update start -->" |
| 145 | einfo " repository: ${repo_uri}" |
189 | einfo " repository: ${repo_uri}" |
| 146 | |
190 | |
| 147 | ${ebk_update_cmd} "${repo_uri}" "${wc_path}" \ |
191 | ${ebk_update_cmd} "${repo_uri}" "${wc_path}" \ |
| 148 | || die "BK: can't update from ${repo_uri} to ${wc_path}." |
192 | || die "BK: can't update from ${repo_uri} to ${wc_path}." |
| 149 | |
|
|
| 150 | fi |
193 | fi |
| 151 | |
194 | |
| 152 | einfo " working copy: ${wc_path}" |
195 | einfo " working copy: ${wc_path}" |
| 153 | cd "${wc_path}" |
196 | cd "${wc_path}" |
| 154 | rsync -rlpgo --exclude="BK/" . "${S}" || die "BK: can't export to ${S}." |
197 | rsync -rlpgo --exclude="BK/" . "${S}" || die "BK: can't export to ${S}." |
| 155 | |
198 | |
| 156 | echo |
199 | echo |
| 157 | popd |
200 | popd |
| 158 | |
201 | |
| 159 | } |
202 | } |
| 160 | |
203 | |
| … | |
… | |
| 170 | # |
213 | # |
| 171 | # Initialize global variables |
214 | # Initialize global variables |
| 172 | # 2005-11-19 <vivo@gentoo.org> |
215 | # 2005-11-19 <vivo@gentoo.org> |
| 173 | |
216 | |
| 174 | mysql_init_vars() { |
217 | mysql_init_vars() { |
|
|
218 | if [[ ${SLOT} == "0" ]] ; then |
|
|
219 | MY_SUFFIX="" |
|
|
220 | else |
|
|
221 | MY_SUFFIX=${MY_SUFFIX:-"-${SLOT}"} |
|
|
222 | fi |
| 175 | MY_SHAREDSTATEDIR=${MY_SHAREDSTATEDIR="/usr/share/mysql"} |
223 | MY_SHAREDSTATEDIR=${MY_SHAREDSTATEDIR:-"/usr/share/mysql${MY_SUFFIX}"} |
| 176 | MY_SYSCONFDIR=${MY_SYSCONFDIR="/etc/mysql"} |
224 | MY_SYSCONFDIR=${MY_SYSCONFDIR="/etc/mysql${MY_SUFFIX}"} |
| 177 | MY_LIBDIR=${MY_LIBDIR="/usr/$(get_libdir)/mysql"} |
225 | MY_LIBDIR=${MY_LIBDIR="/usr/$(get_libdir)/mysql${MY_SUFFIX}"} |
| 178 | MY_LOCALSTATEDIR=${MY_LOCALSTATEDIR="/var/lib/mysql"} |
226 | MY_LOCALSTATEDIR=${MY_LOCALSTATEDIR="/var/lib/mysql${MY_SUFFIX}"} |
| 179 | MY_LOGDIR=${MY_LOGDIR="/var/log/mysql"} |
227 | MY_LOGDIR=${MY_LOGDIR="/var/log/mysql${MY_SUFFIX}"} |
| 180 | MY_INCLUDEDIR=${MY_INCLUDEDIR="/usr/include/mysql"} |
228 | MY_INCLUDEDIR=${MY_INCLUDEDIR="/usr/include/mysql${MY_SUFFIX}"} |
| 181 | |
229 | |
| 182 | if [[ -z "${DATADIR}" ]] ; then |
230 | if [[ -z "${DATADIR}" ]] ; then |
| 183 | DATADIR="" |
231 | DATADIR="" |
| 184 | if [[ -f "${MY_SYSCONFDIR}/my.cnf" ]] ; then |
232 | if [[ -f "${MY_SYSCONFDIR}/my.cnf" ]] ; then |
| 185 | DATADIR=`"my_print_defaults" mysqld 2>/dev/null \ |
233 | DATADIR=`"my_print_defaults${MY_SUFFIX}" mysqld 2>/dev/null \ |
| 186 | | sed -ne '/datadir/s|^--datadir=||p' \ |
234 | | sed -ne '/datadir/s|^--datadir=||p' \ |
| 187 | | tail -n1` |
235 | | tail -n1` |
| 188 | if [[ -z "${DATADIR}" ]] ; then |
236 | if [[ -z "${DATADIR}" ]] ; then |
| 189 | if useq "srvdir" ; then |
|
|
| 190 | DATADIR="${ROOT}/srv/localhost/mysql/datadir" |
|
|
| 191 | else |
|
|
| 192 | DATADIR=`grep ^datadir "${MY_SYSCONFDIR}/my.cnf" \ |
237 | DATADIR=`grep ^datadir "${MY_SYSCONFDIR}/my.cnf" \ |
| 193 | | sed -e 's/.*=\s*//'` |
238 | | sed -e 's/.*=\s*//'` |
| 194 | fi |
|
|
| 195 | fi |
239 | fi |
| 196 | fi |
240 | fi |
| 197 | if [[ -z "${DATADIR}" ]] ; then |
241 | if [[ -z "${DATADIR}" ]] ; then |
| 198 | if useq "srvdir" ; then |
|
|
| 199 | DATADIR="${ROOT}/srv/localhost/mysql/datadir" |
|
|
| 200 | else |
|
|
| 201 | DATADIR="${MY_LOCALSTATEDIR}" |
242 | DATADIR="${MY_LOCALSTATEDIR}" |
| 202 | fi |
|
|
| 203 | einfo "Using default DATADIR" |
243 | einfo "Using default DATADIR" |
| 204 | fi |
244 | fi |
| 205 | elog "MySQL DATADIR is ${DATADIR}" |
245 | elog "MySQL DATADIR is ${DATADIR}" |
| 206 | |
246 | |
| 207 | if [[ -z "${PREVIOUS_DATADIR}" ]] ; then |
247 | if [[ -z "${PREVIOUS_DATADIR}" ]] ; then |
| … | |
… | |
| 214 | fi |
254 | fi |
| 215 | export PREVIOUS_DATADIR |
255 | export PREVIOUS_DATADIR |
| 216 | fi |
256 | fi |
| 217 | fi |
257 | fi |
| 218 | |
258 | |
|
|
259 | MY_SOURCEDIR=${SERVER_URI##*/} |
|
|
260 | MY_SOURCEDIR=${MY_SOURCEDIR%.tar*} |
|
|
261 | |
| 219 | export MY_SHAREDSTATEDIR MY_SYSCONFDIR |
262 | export MY_SUFFIX MY_SHAREDSTATEDIR MY_SYSCONFDIR |
| 220 | export MY_LIBDIR MY_LOCALSTATEDIR MY_LOGDIR |
263 | export MY_LIBDIR MY_LOCALSTATEDIR MY_LOGDIR |
| 221 | export MY_INCLUDEDIR |
264 | export MY_INCLUDEDIR DATADIR MY_SOURCEDIR |
| 222 | export DATADIR |
|
|
| 223 | } |
265 | } |
| 224 | |
266 | |
| 225 | configure_minimal() { |
267 | configure_minimal() { |
| 226 | # These are things we exclude from a minimal build, please |
268 | # These are things we exclude from a minimal build, please |
| 227 | # note that the server actually does get built and installed, |
269 | # note that the server actually does get built and installed, |
| … | |
… | |
| 376 | # 5.1 introduces a new way to manage storage engines (plugins) |
418 | # 5.1 introduces a new way to manage storage engines (plugins) |
| 377 | # like configuration=none |
419 | # like configuration=none |
| 378 | local plugins="csv,myisam,myisammrg,heap" |
420 | local plugins="csv,myisam,myisammrg,heap" |
| 379 | if useq "extraengine" ; then |
421 | if useq "extraengine" ; then |
| 380 | # like configuration=max-no-ndb, archive and example removed in 5.1.11 |
422 | # like configuration=max-no-ndb, archive and example removed in 5.1.11 |
| 381 | plugins="${plugins},archive,blackhole,example,federated,ftexample,partition" |
423 | plugins="${plugins},archive,blackhole,example,federated,partition" |
| 382 | |
424 | |
| 383 | elog "Before using the Federated storage engine, please be sure to read" |
425 | elog "Before using the Federated storage engine, please be sure to read" |
| 384 | elog "http://dev.mysql.com/doc/refman/5.1/en/federated-limitations.html" |
426 | elog "http://dev.mysql.com/doc/refman/5.1/en/federated-limitations.html" |
| 385 | fi |
427 | fi |
| 386 | |
428 | |
| … | |
… | |
| 430 | # |
472 | # |
| 431 | |
473 | |
| 432 | mysql_pkg_setup() { |
474 | mysql_pkg_setup() { |
| 433 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
475 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
| 434 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
476 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
| 435 | |
477 | |
| 436 | # Check for USE flag problems in pkg_setup |
478 | # Check for USE flag problems in pkg_setup |
| 437 | if useq "static" && useq "ssl" ; then |
479 | if useq "static" && useq "ssl" ; then |
| 438 | eerror "MySQL does not support being built statically with SSL support enabled!" |
480 | eerror "MySQL does not support being built statically with SSL support enabled!" |
| 439 | die "MySQL does not support being built statically with SSL support enabled!" |
481 | die "MySQL does not support being built statically with SSL support enabled!" |
| 440 | fi |
482 | fi |
| … | |
… | |
| 462 | mysql_src_unpack() { |
504 | mysql_src_unpack() { |
| 463 | # Initialize the proper variables first |
505 | # Initialize the proper variables first |
| 464 | mysql_init_vars |
506 | mysql_init_vars |
| 465 | |
507 | |
| 466 | unpack ${A} |
508 | unpack ${A} |
| 467 | |
509 | if [[ ${IS_BITKEEPER} -eq 90 ]] ; then |
| 468 | mv -f "${WORKDIR}/${MY_P}${MYSQL_RERELEASE}" "${S}" |
510 | if mysql_check_version_range "5.1 to 5.1.99" ; then |
|
|
511 | bitkeeper_fetch "mysql-5.1-ndb" |
|
|
512 | elif mysql_check_version_range "5.2 to 5.2.99" ; then |
|
|
513 | bitkeeper_fetch "mysql-5.2-falcon" |
|
|
514 | else |
|
|
515 | bitkeeper_fetch |
|
|
516 | fi |
| 469 | cd "${S}" |
517 | cd "${S}" |
|
|
518 | einfo "running upstream autorun on bk sources" |
|
|
519 | BUILD/autorun.sh |
|
|
520 | else |
|
|
521 | mv -f "${WORKDIR}/${MY_SOURCEDIR}" "${S}" |
|
|
522 | cd "${S}" |
|
|
523 | fi |
| 470 | |
524 | |
| 471 | # Apply the patches for this MySQL version |
525 | # Apply the patches for this MySQL version |
| 472 | if [[ -d "${WORKDIR}/${MY_FIXED_PV}" ]] ; then |
526 | EPATCH_SUFFIX="patch" |
| 473 | EPATCH_SOURCE="${WORKDIR}/${MY_FIXED_PV}" EPATCH_SUFFIX="patch" epatch |
527 | mkdir -p "${EPATCH_SOURCE}" || die "unable to create epatch directory" |
| 474 | fi |
528 | mysql_mv_patches |
|
|
529 | epatch || die "failed to apply all patches" |
| 475 | |
530 | |
| 476 | # Additional checks, remove bundled zlib |
531 | # Additional checks, remove bundled zlib |
| 477 | rm -f "${S}/zlib/"*.[ch] |
532 | rm -f "${S}/zlib/"*.[ch] |
| 478 | sed -i -e "s/zlib\/Makefile dnl/dnl zlib\/Makefile/" "${S}/configure.in" |
533 | sed -i -e "s/zlib\/Makefile dnl/dnl zlib\/Makefile/" "${S}/configure.in" |
| 479 | rm -f "scripts/mysqlbug" |
534 | rm -f "scripts/mysqlbug" |
| 480 | |
535 | |
| 481 | # Make charsets install in the right place |
536 | # Make charsets install in the right place |
| 482 | find . -name 'Makefile.am' \ |
537 | find . -name 'Makefile.am' \ |
| 483 | -exec sed --in-place -e 's!$(pkgdatadir)!'${MY_SHAREDSTATEDIR}'!g' {} \; |
538 | -exec sed --in-place -e 's!$(pkgdatadir)!'${MY_SHAREDSTATEDIR}'!g' {} \; |
| 484 | |
539 | |
| 485 | # Manage mysqlmanager |
|
|
| 486 | mysql_version_is_at_least "5.00.15.00" \ |
|
|
| 487 | && sed -i -e "s!@GENTOO_EXT@!!g" \ |
|
|
| 488 | -e "s!@GENTOO_SOCK_PATH@!var/run/mysqld!g" \ |
|
|
| 489 | "${S}/server-tools/instance-manager/Makefile.am" |
|
|
| 490 | |
|
|
| 491 | if mysql_version_is_at_least "4.01.00.00" ; then |
540 | if mysql_version_is_at_least "4.1" ; then |
| 492 | # Remove what needs to be recreated, so we're sure it's actually done |
541 | # Remove what needs to be recreated, so we're sure it's actually done |
| 493 | find . -name Makefile \ |
542 | find . -name Makefile \ |
| 494 | -o -name Makefile.in \ |
543 | -o -name Makefile.in \ |
| 495 | -o -name configure \ |
544 | -o -name configure \ |
| 496 | -exec rm -f {} \; |
545 | -exec rm -f {} \; |
| … | |
… | |
| 559 | mysql_version_is_at_least "5.0" \ |
608 | mysql_version_is_at_least "5.0" \ |
| 560 | && CXXFLAGS="${CXXFLAGS} -fno-implicit-templates" |
609 | && CXXFLAGS="${CXXFLAGS} -fno-implicit-templates" |
| 561 | export CXXFLAGS |
610 | export CXXFLAGS |
| 562 | |
611 | |
| 563 | econf \ |
612 | econf \ |
|
|
613 | --program-suffix="${MY_SUFFIX}" \ |
| 564 | --libexecdir="/usr/sbin" \ |
614 | --libexecdir="/usr/sbin" \ |
| 565 | --sysconfdir="${MY_SYSCONFDIR}" \ |
615 | --sysconfdir="${MY_SYSCONFDIR}" \ |
| 566 | --localstatedir="${MY_LOCALSTATEDIR}" \ |
616 | --localstatedir="${MY_LOCALSTATEDIR}" \ |
| 567 | --sharedstatedir="${MY_SHAREDSTATEDIR}" \ |
617 | --sharedstatedir="${MY_SHAREDSTATEDIR}" \ |
| 568 | --libdir="${MY_LIBDIR}" \ |
618 | --libdir="${MY_LIBDIR}" \ |
| … | |
… | |
| 578 | find . -type f -name Makefile -print0 \ |
628 | find . -type f -name Makefile -print0 \ |
| 579 | | xargs -0 -n100 sed -i \ |
629 | | xargs -0 -n100 sed -i \ |
| 580 | -e 's|^pkglibdir *= *$(libdir)/mysql|pkglibdir = $(libdir)|;s|^pkgincludedir *= *$(includedir)/mysql|pkgincludedir = $(includedir)|' |
630 | -e 's|^pkglibdir *= *$(libdir)/mysql|pkglibdir = $(libdir)|;s|^pkgincludedir *= *$(includedir)/mysql|pkgincludedir = $(includedir)|' |
| 581 | |
631 | |
| 582 | emake || die "emake failed" |
632 | emake || die "emake failed" |
|
|
633 | |
|
|
634 | mysql_version_is_at_least "5.1.1" && useq "pbxt" && pbxt_src_compile |
| 583 | } |
635 | } |
| 584 | |
636 | |
| 585 | mysql_src_install() { |
637 | mysql_src_install() { |
| 586 | # Make sure the vars are correctly initialized |
638 | # Make sure the vars are correctly initialized |
| 587 | mysql_init_vars |
639 | mysql_init_vars |
| 588 | |
640 | |
| 589 | emake install DESTDIR="${D}" benchdir_root="${MY_SHAREDSTATEDIR}" || die "emake install failed" |
641 | emake install DESTDIR="${D}" benchdir_root="${MY_SHAREDSTATEDIR}" || die |
|
|
642 | |
|
|
643 | mysql_version_is_at_least "5.1.12" && useq "pbxt" && pbxt_src_install |
| 590 | |
644 | |
| 591 | insinto "${MY_INCLUDEDIR}" |
645 | insinto "${MY_INCLUDEDIR}" |
| 592 | doins "${MY_INCLUDEDIR}"/my_{config,dir}.h |
646 | doins "${MY_INCLUDEDIR}"/my_{config,dir}.h |
| 593 | |
647 | |
| 594 | # Convenience links |
648 | # Convenience links |
| 595 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlanalyze" |
649 | dosym "/usr/bin/mysqlcheck${MY_SUFFIX}" "/usr/bin/mysqlanalyze${MY_SUFFIX}" |
| 596 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlrepair" |
650 | dosym "/usr/bin/mysqlcheck${MY_SUFFIX}" "/usr/bin/mysqlrepair${MY_SUFFIX}" |
| 597 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqloptimize" |
651 | dosym "/usr/bin/mysqlcheck${MY_SUFFIX}" "/usr/bin/mysqloptimize${MY_SUFFIX}" |
| 598 | |
652 | |
| 599 | # Various junk (my-*.cnf moved elsewhere) |
653 | # Various junk (my-*.cnf moved elsewhere) |
| 600 | rm -Rf "${D}/usr/share/info" |
654 | rm -Rf "${D}/usr/share/info" |
| 601 | for removeme in "mysql-log-rotate" mysql.server* \ |
655 | for removeme in "mysql-log-rotate" mysql.server* \ |
| 602 | binary-configure* my-*.cnf mi_test_all* |
656 | binary-configure* my-*.cnf mi_test_all* |
| 603 | do |
657 | do |
| 604 | rm -f "${D}"/usr/share/mysql/${removeme} |
658 | rm -f "${D}"/usr/share/mysql/${removeme} |
| 605 | done |
659 | done |
| 606 | |
660 | |
|
|
661 | # TODO change at Makefile-am level |
|
|
662 | if [[ ${PN} == "mysql-slotted" ]] ; then |
|
|
663 | for moveme in "mysql_fix_privilege_tables.sql" \ |
|
|
664 | "fill_help_tables.sql" "ndb-config-2-node.ini" |
|
|
665 | do |
|
|
666 | mv -f "${D}/usr/share/mysql/${moveme}" "${D}/usr/share/mysql${MY_SUFFIX}/" 2>/dev/null |
|
|
667 | done |
|
|
668 | fi |
|
|
669 | |
| 607 | # Clean up stuff for a minimal build |
670 | # clean up stuff for a minimal build |
| 608 | if useq "minimal" ; then |
671 | if useq "minimal" ; then |
| 609 | rm -Rf "${D}${MY_SHAREDSTATEDIR}"/{mysql-test,sql-bench} |
672 | rm -Rf "${D}${MY_SHAREDSTATEDIR}"/{mysql-test,sql-bench} |
| 610 | 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} |
673 | 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} |
| 611 | rm -f "${D}/usr/sbin/mysqld" |
674 | rm -f "${D}/usr/sbin/mysqld" |
| 612 | rm -f "${D}${MY_LIBDIR}"/lib{heap,merge,nisam,my{sys,strings,sqld,isammrg,isam},vio,dbug}.a |
675 | rm -f "${D}${MY_LIBDIR}"/lib{heap,merge,nisam,my{sys,strings,sqld,isammrg,isam},vio,dbug}.a |
| 613 | fi |
676 | fi |
| 614 | |
677 | |
|
|
678 | if [[ ${PN} == "mysql-slotted" ]] ; then |
|
|
679 | local notcatched=$(ls "${D}/usr/share/mysql"/*) |
|
|
680 | if [[ -n "${notcatched}" ]] ; then |
|
|
681 | ewarn "QA notice" |
|
|
682 | ewarn "${notcatched} files in /usr/share/mysql" |
|
|
683 | ewarn "bug mysql-herd to manage them" |
|
|
684 | fi |
|
|
685 | rm -Rf "${D}/usr/share/mysql" |
|
|
686 | fi |
|
|
687 | |
| 615 | # Configuration stuff |
688 | # Configuration stuff |
| 616 | if mysql_version_is_at_least "4.1" ; then |
689 | if mysql_version_is_at_least "4.1" ; then |
| 617 | mysql_mycnf_version="4.1" |
690 | mysql_mycnf_version="4.1" |
| 618 | else |
691 | else |
| 619 | mysql_mycnf_version="4.0" |
692 | mysql_mycnf_version="4.0" |
| 620 | fi |
693 | fi |
| 621 | insinto "${MY_SYSCONFDIR}" |
694 | insinto "${MY_SYSCONFDIR}" |
| 622 | doins "scripts/mysqlaccess.conf" |
695 | doins scripts/mysqlaccess.conf |
|
|
696 | sed -e "s!@MY_SUFFIX@!${MY_SUFFIX}!g" \ |
| 623 | sed -e "s!@DATADIR@!${DATADIR}!g" \ |
697 | -e "s!@DATADIR@!${DATADIR}!g" \ |
| 624 | "${FILESDIR}/my.cnf-${mysql_mycnf_version}" \ |
698 | "${FILESDIR}/my.cnf-${mysql_mycnf_version}" \ |
| 625 | > "${TMPDIR}/my.cnf.ok" |
699 | > "${TMPDIR}/my.cnf.ok" |
| 626 | if mysql_version_is_at_least "4.1" && useq "latin1" ; then |
700 | if mysql_version_is_at_least "4.1" && useq "latin1" ; then |
| 627 | sed -e "s|utf8|latin1|g" -i "${TMPDIR}/my.cnf.ok" |
701 | sed -e "s|utf8|latin1|g" -i "${TMPDIR}/my.cnf.ok" |
| 628 | fi |
702 | fi |
| 629 | newins "${TMPDIR}/my.cnf.ok" my.cnf |
703 | newins "${TMPDIR}/my.cnf.ok" my.cnf |
| 630 | |
704 | |
| 631 | insinto "/etc/conf.d" |
|
|
| 632 | newins "${FILESDIR}/mysql.conf.d" "mysql" |
|
|
| 633 | mysql_version_is_at_least "5.00.11.00" \ |
|
|
| 634 | && newins "${FILESDIR}/mysqlmanager.conf.d" "mysqlmanager" |
|
|
| 635 | |
|
|
| 636 | # Minimal builds don't have the MySQL server |
705 | # Minimal builds don't have the MySQL server |
| 637 | if ! useq "minimal" ; then |
706 | if ! useq "minimal" ; then |
| 638 | exeinto "/etc/init.d" |
|
|
| 639 | newexe "${FILESDIR}/mysql.rc6" "mysql" |
|
|
| 640 | mysql_version_is_at_least "5.00.11.00" \ |
|
|
| 641 | && newexe "${FILESDIR}/mysqlmanager.rc6" "mysqlmanager" |
|
|
| 642 | |
|
|
| 643 | insinto "/etc/logrotate.d" |
|
|
| 644 | newins "${FILESDIR}/logrotate.mysql" "mysql" |
|
|
| 645 | |
|
|
| 646 | # Empty directories ... |
707 | # Empty directories ... |
| 647 | diropts "-m0750" |
708 | diropts "-m0750" |
| 648 | if [[ "${PREVIOUS_DATADIR}" != "yes" ]] ; then |
709 | if [[ "${PREVIOUS_DATADIR}" != "yes" ]] ; then |
| 649 | dodir "${DATADIR}" |
710 | dodir "${DATADIR}" |
| 650 | keepdir "${DATADIR}" |
711 | keepdir "${DATADIR}" |
| … | |
… | |
| 677 | for script in scripts/mysql* ; do |
738 | for script in scripts/mysql* ; do |
| 678 | [[ "${script%.sh}" == "${script}" ]] && dodoc "${script}" |
739 | [[ "${script%.sh}" == "${script}" ]] && dodoc "${script}" |
| 679 | done |
740 | done |
| 680 | fi |
741 | fi |
| 681 | |
742 | |
| 682 | ROOT="${D}" mysql_lib_symlinks |
743 | if [[ ${PN} == "mysql-slotted" ]] ; then |
|
|
744 | # MOVED HERE DUE TO BUG #121445 |
|
|
745 | # create a list of files, to be used |
|
|
746 | # by external utilities |
|
|
747 | mkdir -p "${D}/var/lib/eselect/mysql/" |
|
|
748 | local filelist="${D}/var/lib/eselect/mysql/mysql${MY_SUFFIX}.filelist" |
|
|
749 | pushd "${D}/" &>/dev/null |
|
|
750 | find usr/bin/ usr/sbin/ \ |
|
|
751 | -type f -name "*${MY_SUFFIX}*" \ |
|
|
752 | -and -not -name "mysql_config${MY_SUFFIX}" \ |
|
|
753 | > "${filelist}" |
|
|
754 | find usr/share/man \ |
|
|
755 | -type f -name "*${MY_SUFFIX}*" \ |
|
|
756 | | sed -e 's/$/.gz/' \ |
|
|
757 | >> "${filelist}" |
|
|
758 | echo "${MY_SYSCONFDIR#"/"}" >> "${filelist}" |
|
|
759 | echo "${MY_LIBDIR#"/"}" >> "${filelist}" |
|
|
760 | echo "${MY_SHAREDSTATEDIR#"/"}" >> "${filelist}" |
|
|
761 | popd &>/dev/null |
|
|
762 | fi |
| 683 | } |
763 | } |
| 684 | |
764 | |
| 685 | mysql_pkg_preinst() { |
765 | mysql_pkg_preinst() { |
| 686 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
766 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
| 687 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
767 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
| … | |
… | |
| 698 | # Secure the logfiles |
778 | # Secure the logfiles |
| 699 | touch "${ROOT}${MY_LOGDIR}"/mysql.{log,err} |
779 | touch "${ROOT}${MY_LOGDIR}"/mysql.{log,err} |
| 700 | chown mysql:mysql "${ROOT}${MY_LOGDIR}"/mysql* |
780 | chown mysql:mysql "${ROOT}${MY_LOGDIR}"/mysql* |
| 701 | chmod 0660 "${ROOT}${MY_LOGDIR}"/mysql* |
781 | chmod 0660 "${ROOT}${MY_LOGDIR}"/mysql* |
| 702 | |
782 | |
|
|
783 | # Minimal builds don't have the MySQL server |
| 703 | if ! useq "minimal" ; then |
784 | if ! useq "minimal" ; then |
| 704 | # Your friendly public service announcement ... |
785 | docinto "support-files" |
| 705 | einfo |
786 | for script in \ |
| 706 | elog "You might want to run:" |
787 | support-files/my-*.cnf \ |
| 707 | elog "\"emerge --config =${CATEGORY}/${PF}\"" |
788 | support-files/magic \ |
| 708 | elog "if this is a new install." |
789 | support-files/ndb-config-2-node.ini |
| 709 | einfo |
790 | do |
| 710 | mysql_version_is_at_least "5.01.00.00" \ |
791 | dodoc "${script}" |
| 711 | || elog "InnoDB is *not* optional as of MySQL-4.0.24, at the request of upstream." |
792 | done |
|
|
793 | |
|
|
794 | docinto "scripts" |
|
|
795 | for script in scripts/mysql* ; do |
|
|
796 | [[ "${script%.sh}" == "${script}" ]] && dodoc "${script}" |
|
|
797 | done |
|
|
798 | fi |
|
|
799 | |
|
|
800 | einfo "you may want to read slotting upgrade documents in the overlay" |
|
|
801 | if useq "pbxt" && mysql_version_is_at_least "5.1" ; then |
|
|
802 | # TODO tell it better ;-) |
|
|
803 | einfo "mysql> INSTALL PLUGIN pbxt SONAME 'libpbxt.so';" |
|
|
804 | einfo "CREATE TABLE t1 (c1 int, c2 text) ENGINE=pbxt;" |
|
|
805 | einfo "if, after that you cannot start the mysql server" |
|
|
806 | einfo "remove the ${MY_DATADIR}/mysql/plugin.* files, then" |
|
|
807 | einfo "use the mysql upgrade script to restore the table" |
|
|
808 | einfo " or " |
|
|
809 | einfo "CREATE TABLE IF NOT EXISTS plugin (" |
|
|
810 | einfo " name char(64) binary DEFAULT '' NOT NULL," |
|
|
811 | einfo " dl char(128) DEFAULT '' NOT NULL," |
|
|
812 | einfo " PRIMARY KEY (name)" |
|
|
813 | einfo ") CHARACTER SET utf8 COLLATE utf8_bin;" |
| 712 | fi |
814 | fi |
| 713 | mysql_check_version_range "4.0 to 5.0.99.99" \ |
815 | mysql_check_version_range "4.0 to 5.0.99.99" \ |
| 714 | && useq "berkdb" \ |
816 | && useq "berkdb" \ |
| 715 | && elog "Berkeley DB support is deprecated and will be removed in future versions!" |
817 | && elog "Berkeley DB support is deprecated and will be removed in future versions!" |
| 716 | } |
818 | } |
| … | |
… | |
| 824 | wait %1 |
926 | wait %1 |
| 825 | einfo "Done" |
927 | einfo "Done" |
| 826 | } |
928 | } |
| 827 | |
929 | |
| 828 | mysql_pkg_postrm() { |
930 | mysql_pkg_postrm() { |
|
|
931 | if [[ ${PN} == "mysql-slotted" ]] ; then |
| 829 | : #mysql_lib_symlinks |
932 | mysql_lib_symlinks |
|
|
933 | fi |
| 830 | } |
934 | } |