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