| 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.118 2009/11/19 20:59:38 hanno Exp $ |
| 4 | |
4 | |
| 5 | # Author: Francesco Riosa <vivo@gentoo.org> |
5 | # Author: Francesco Riosa (Retired) <vivo@gentoo.org> |
|
|
6 | # Maintainer: MySQL Team <mysql-bugs@gentoo.org> |
| 6 | # Maintainer: Luca Longinotti <chtekk@gentoo.org> |
7 | # - Luca Longinotti <chtekk@gentoo.org> |
|
|
8 | # - Robin H. Johnson <robbat2@gentoo.org> |
| 7 | |
9 | |
| 8 | # Both MYSQL_VERSION_ID and MYSQL_PATCHSET_REV must be set in the ebuild too |
10 | WANT_AUTOCONF="latest" |
| 9 | # Note that MYSQL_VERSION_ID must be empty !!! |
11 | WANT_AUTOMAKE="latest" |
|
|
12 | |
|
|
13 | inherit eutils flag-o-matic gnuconfig autotools mysql_fx versionator |
|
|
14 | |
|
|
15 | case "${EAPI:-0}" in |
|
|
16 | 2) |
|
|
17 | EXPORT_FUNCTIONS pkg_setup \ |
|
|
18 | src_unpack src_prepare \ |
|
|
19 | src_configure src_compile \ |
|
|
20 | src_install \ |
|
|
21 | pkg_preinst pkg_postinst \ |
|
|
22 | pkg_config pkg_postrm |
|
|
23 | IUSE_DEFAULT_ON='+' |
|
|
24 | ;; |
|
|
25 | *) |
|
|
26 | EXPORT_FUNCTIONS pkg_setup \ |
|
|
27 | src_unpack \ |
|
|
28 | src_compile \ |
|
|
29 | src_install \ |
|
|
30 | pkg_preinst pkg_postinst \ |
|
|
31 | pkg_config pkg_postrm |
|
|
32 | ;; |
|
|
33 | esac |
|
|
34 | |
|
|
35 | # Shorten the path because the socket path length must be shorter than 107 chars |
|
|
36 | # and we will run a mysql server during test phase |
|
|
37 | S="${WORKDIR}/mysql" |
|
|
38 | |
|
|
39 | [[ "${MY_EXTRAS_VER}" == "latest" ]] && MY_EXTRAS_VER="20090228-0714Z" |
|
|
40 | if [[ "${MY_EXTRAS_VER}" == "live" ]]; then |
|
|
41 | EGIT_PROJECT=mysql-extras |
|
|
42 | EGIT_REPO_URI="git://git.overlays.gentoo.org/proj/mysql-extras.git" |
|
|
43 | inherit git |
|
|
44 | fi |
| 10 | |
45 | |
| 11 | # MYSQL_VERSION_ID will be: |
46 | # MYSQL_VERSION_ID will be: |
| 12 | # major * 10e6 + minor * 10e4 + micro * 10e2 + gentoo revision number, all [0..99] |
47 | # 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 |
48 | # This is an important part, because many of the choices the MySQL ebuild will do |
| 14 | # depend on this variable. |
49 | # depend on this variable. |
| 15 | # In particular, the code below transforms a $PVR like "5.0.18-r3" in "5001803" |
50 | # In particular, the code below transforms a $PVR like "5.0.18-r3" in "5001803" |
|
|
51 | # We also strip off upstream's trailing letter that they use to respin tarballs |
| 16 | |
52 | |
| 17 | if [[ -z "${MYSQL_VERSION_ID}" ]] ; then |
53 | MYSQL_VERSION_ID="" |
|
|
54 | tpv="${PV%[a-z]}" |
| 18 | tpv=( ${PV//[-._]/ } ) ; tpv[3]="${PVR:${#PV}}" ; tpv[3]="${tpv[3]##*-r}" |
55 | tpv=( ${tpv//[-._]/ } ) ; tpv[3]="${PVR:${#PV}}" ; tpv[3]="${tpv[3]##*-r}" |
| 19 | for vatom in 0 1 2 3 ; do |
56 | for vatom in 0 1 2 3 ; do |
| 20 | # pad to length 2 |
57 | # pad to length 2 |
| 21 | tpv[${vatom}]="00${tpv[${vatom}]}" |
58 | tpv[${vatom}]="00${tpv[${vatom}]}" |
| 22 | MYSQL_VERSION_ID="${MYSQL_VERSION_ID}${tpv[${vatom}]:0-2}" |
59 | MYSQL_VERSION_ID="${MYSQL_VERSION_ID}${tpv[${vatom}]:0-2}" |
| 23 | done |
60 | done |
| 24 | # strip leading "0" (otherwise it's considered an octal number by BASH) |
61 | # strip leading "0" (otherwise it's considered an octal number by BASH) |
| 25 | MYSQL_VERSION_ID=${MYSQL_VERSION_ID##"0"} |
62 | MYSQL_VERSION_ID=${MYSQL_VERSION_ID##"0"} |
|
|
63 | |
|
|
64 | # Community features are available in mysql-community |
|
|
65 | # AND in the re-merged mysql-5.0.82 and newer |
|
|
66 | if [ "${PN}" == "mysql-community" ]; then |
|
|
67 | MYSQL_COMMUNITY_FEATURES=1 |
|
|
68 | elif [ "${PV#5.0}" != "${PV}" ] && mysql_version_is_at_least "5.0.82"; then |
|
|
69 | MYSQL_COMMUNITY_FEATURES=1 |
|
|
70 | elif [ "${PV#5.1}" != "${PV}" ] && mysql_version_is_at_least "5.1.28"; then |
|
|
71 | MYSQL_COMMUNITY_FEATURES=1 |
|
|
72 | elif [ "${PV#5.4}" != "${PV}" ]; then |
|
|
73 | MYSQL_COMMUNITY_FEATURES=1 |
|
|
74 | else |
|
|
75 | MYSQL_COMMUNITY_FEATURES=0 |
| 26 | fi |
76 | fi |
| 27 | |
77 | |
| 28 | inherit eutils flag-o-matic gnuconfig autotools mysql_fx |
|
|
| 29 | |
|
|
| 30 | # Be warned, *DEPEND are version-dependant |
78 | # Be warned, *DEPEND are version-dependant |
|
|
79 | # These are used for both runtime and compiletime |
| 31 | DEPEND="ssl? ( >=dev-libs/openssl-0.9.6d ) |
80 | DEPEND="ssl? ( >=dev-libs/openssl-0.9.6d ) |
| 32 | userland_GNU? ( sys-process/procps ) |
81 | userland_GNU? ( sys-process/procps ) |
| 33 | >=sys-apps/sed-4 |
82 | >=sys-apps/sed-4 |
| 34 | >=sys-apps/texinfo-4.7-r1 |
83 | >=sys-apps/texinfo-4.7-r1 |
| 35 | >=sys-libs/readline-4.1 |
84 | >=sys-libs/readline-4.1 |
| 36 | >=sys-libs/zlib-1.2.3" |
85 | >=sys-libs/zlib-1.2.3" |
| 37 | |
86 | |
| 38 | # LEAVE THE SURROUNDING SPACES THERE |
87 | # Having different flavours at the same time is not a good idea |
| 39 | MYSQL_MUTUALLY_EXCLUSIVE=" !dev-db/mysql !dev-db/mysql-community " |
88 | for i in "" "-community" ; do |
| 40 | DEPEND="${DEPEND} ${MYSQL_MUTUALLY_EXCLUSIVE/ !${CATEGORY}\/${PN} /}" |
89 | [[ "${i}" == ${PN#mysql} ]] || |
|
|
90 | DEPEND="${DEPEND} !dev-db/mysql${i}" |
|
|
91 | done |
| 41 | |
92 | |
|
|
93 | RDEPEND="${DEPEND} |
|
|
94 | !minimal? ( dev-db/mysql-init-scripts ) |
|
|
95 | selinux? ( sec-policy/selinux-mysql )" |
|
|
96 | |
|
|
97 | # compile-time-only |
| 42 | mysql_version_is_at_least "5.01.00.00" \ |
98 | mysql_version_is_at_least "5.1" \ |
| 43 | || DEPEND="${DEPEND} berkdb? ( sys-apps/ed )" |
99 | || DEPEND="${DEPEND} berkdb? ( sys-apps/ed )" |
| 44 | |
100 | |
| 45 | RDEPEND="${DEPEND} selinux? ( sec-policy/selinux-mysql )" |
101 | # compile-time-only |
|
|
102 | mysql_version_is_at_least "5.1.12" \ |
|
|
103 | && DEPEND="${DEPEND} >=dev-util/cmake-2.4.3" |
| 46 | |
104 | |
| 47 | # dev-perl/DBD-mysql is needed by some scripts installed by MySQL |
105 | # dev-perl/DBD-mysql is needed by some scripts installed by MySQL |
| 48 | PDEPEND="perl? ( >=dev-perl/DBD-mysql-2.9004 )" |
106 | PDEPEND="perl? ( >=dev-perl/DBD-mysql-2.9004 )" |
| 49 | |
107 | |
| 50 | # Shorten the path because the socket path length must be shorter than 107 chars |
108 | # For other stuff to bring us in |
| 51 | # and we will run a mysql server during test phase |
109 | PDEPEND="${PDEPEND} =virtual/mysql-$(get_version_component_range 1-2 ${PV})" |
| 52 | S="${WORKDIR}/mysql" # BitKeeper ebuilds |
|
|
| 53 | |
110 | |
| 54 | # Define $MY_FIXED_PV for MySQL patchsets |
111 | # Work out the default SERVER_URI correctly |
| 55 | MY_FIXED_PV="${PV/_alpha/}" |
112 | if [ -z "${SERVER_URI}" ]; then |
| 56 | #MY_FIXED_PV="${MY_FIXED_PV/_beta/}" |
113 | # The community build is on the mirrors |
| 57 | #MY_FIXED_PV="${MY_FIXED_PV/_rc/}" |
114 | if [ "${MYSQL_COMMUNITY_FEATURES}" == "1" ]; then |
| 58 | |
115 | SERVER_URI="mirror://mysql/Downloads/MySQL-${PV%.*}/mysql-${PV//_/-}.tar.gz" |
| 59 | MY_P="${P/_/-}" |
116 | # The (old) enterprise source is on the primary site only |
| 60 | MY_P="${MY_P/-alpha/-bk-}" # BitKeeper ebuilds |
117 | elif [ "${PN}" == "mysql" ]; then |
| 61 | MY_P="${MY_P/-community/}" |
118 | SERVER_URI="ftp://ftp.mysql.com/pub/mysql/src/mysql-${PV//_/-}.tar.gz" |
|
|
119 | fi |
|
|
120 | fi |
| 62 | |
121 | |
| 63 | # Define correct SRC_URIs |
122 | # Define correct SRC_URIs |
| 64 | SRC_URI="${BASE_URI}/${MY_P}${MYSQL_RERELEASE}.tar.gz" |
123 | SRC_URI="${SERVER_URI}" |
| 65 | if [[ -n "${MYSQL_PATCHSET_REV}" ]] ; then |
124 | |
| 66 | MYSQL_PATCHSET_FILENAME="${PN}-patchset-${MY_FIXED_PV}-r${MYSQL_PATCHSET_REV}.tar.bz2" |
125 | [[ ${MY_EXTRAS_VER} != live ]] && SRC_URI="${SRC_URI} |
| 67 | # We add the Gentoo mirror here, as we only use primaryuri for the MySQL tarball |
126 | mirror://gentoo/mysql-extras-${MY_EXTRAS_VER}.tar.bz2 |
| 68 | SRC_URI="${SRC_URI} http://g3nt8.org/patches/${MYSQL_PATCHSET_FILENAME}" |
127 | http://g3nt8.org/patches/mysql-extras-${MY_EXTRAS_VER}.tar.bz2" |
| 69 | fi |
128 | mysql_version_is_at_least "5.1.12" \ |
|
|
129 | && [[ -n "${PBXT_VERSION}" ]] \ |
|
|
130 | && SRC_URI="${SRC_URI} pbxt? ( mirror://sourceforge/pbxt/pbxt-${PBXT_VERSION}.tar.gz )" |
| 70 | |
131 | |
| 71 | DESCRIPTION="A fast, multi-threaded, multi-user SQL database server." |
132 | DESCRIPTION="A fast, multi-threaded, multi-user SQL database server." |
| 72 | HOMEPAGE="http://www.mysql.com/" |
133 | HOMEPAGE="http://www.mysql.com/" |
|
|
134 | LICENSE="GPL-2" |
| 73 | SLOT="0" |
135 | SLOT="0" |
| 74 | LICENSE="GPL-2" |
|
|
| 75 | IUSE="big-tables debug embedded minimal perl selinux srvdir ssl static" |
136 | IUSE="big-tables debug embedded minimal ${IUSE_DEFAULT_ON}perl selinux ssl static" |
| 76 | RESTRICT="confcache" |
|
|
| 77 | |
137 | |
| 78 | mysql_version_is_at_least "4.01.00.00" \ |
138 | mysql_version_is_at_least "4.1" \ |
| 79 | && IUSE="${IUSE} latin1" |
139 | && IUSE="${IUSE} latin1" |
| 80 | |
140 | |
| 81 | mysql_version_is_at_least "4.01.03.00" \ |
141 | mysql_version_is_at_least "4.1.3" \ |
| 82 | && IUSE="${IUSE} cluster extraengine" |
142 | && IUSE="${IUSE} cluster extraengine" |
| 83 | |
143 | |
| 84 | mysql_version_is_at_least "5.00.00.00" \ |
144 | mysql_version_is_at_least "5.0" \ |
| 85 | || IUSE="${IUSE} raid" |
145 | || IUSE="${IUSE} raid" |
| 86 | |
146 | |
| 87 | mysql_version_is_at_least "5.00.18.00" \ |
147 | mysql_version_is_at_least "5.0.18" \ |
| 88 | && IUSE="${IUSE} max-idx-128" |
148 | && IUSE="${IUSE} max-idx-128" |
| 89 | |
149 | |
| 90 | mysql_version_is_at_least "5.01.00.00" \ |
150 | mysql_version_is_at_least "5.1" \ |
| 91 | && IUSE="${IUSE} innodb" |
|
|
| 92 | |
|
|
| 93 | mysql_version_is_at_least "5.01.00.00" \ |
|
|
| 94 | || IUSE="${IUSE} berkdb" |
151 | || IUSE="${IUSE} berkdb" |
| 95 | |
152 | |
| 96 | EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_preinst \ |
153 | mysql_version_is_at_least "5.1.12" \ |
| 97 | pkg_postinst pkg_config pkg_postrm |
154 | && IUSE="${IUSE} pbxt" |
|
|
155 | |
|
|
156 | [ "${MYSQL_COMMUNITY_FEATURES}" == "1" ] \ |
|
|
157 | && IUSE="${IUSE} ${IUSE_DEFAULT_ON}community profiling" |
| 98 | |
158 | |
| 99 | # |
159 | # |
| 100 | # HELPER FUNCTIONS: |
160 | # HELPER FUNCTIONS: |
| 101 | # |
161 | # |
| 102 | |
|
|
| 103 | bitkeeper_fetch() { |
|
|
| 104 | |
|
|
| 105 | local tpv=( ${PV//[-._]/ } ) |
|
|
| 106 | local reposuf="${tpv[0]}.${tpv[1]}" |
|
|
| 107 | useq "cluster" && reposuf="${reposuf}-ndb" |
|
|
| 108 | local repo_uri="bk://mysql.bkbits.net/mysql-${reposuf}" |
|
|
| 109 | ## -- ebk_store_dir: bitkeeper sources store directory |
|
|
| 110 | local ebk_store_dir="${PORTAGE_ACTUAL_DISTDIR-${DISTDIR}}/bk-src" |
|
|
| 111 | ## -- ebk_fetch_cmd: bitkeeper fetch command |
|
|
| 112 | # always fetch the latest revision, use -r<revision> if a specified revision is wanted |
|
|
| 113 | # hint: does not work |
|
|
| 114 | local ebk_fetch_cmd="sfioball" |
|
|
| 115 | ## -- ebk_update_cmd: bitkeeper update command |
|
|
| 116 | local ebk_update_cmd="update" |
|
|
| 117 | |
|
|
| 118 | #addread "/etc/bitkeeper" |
|
|
| 119 | addwrite "${ebk_store_dir}" |
|
|
| 120 | |
|
|
| 121 | if [[ ! -d "${ebk_store_dir}" ]]; then |
|
|
| 122 | debug-print "${FUNCNAME}: initial checkout. creating bitkeeper directory" |
|
|
| 123 | mkdir -p "${ebk_store_dir}" || die "${EBK}: can't mkdir ${ebk_store_dir}." |
|
|
| 124 | fi |
|
|
| 125 | |
|
|
| 126 | pushd "${ebk_store_dir}" || die "${EBK}: can't chdir to ${ebk_store_dir}" |
|
|
| 127 | |
|
|
| 128 | local wc_path=mysql-${reposuf} |
|
|
| 129 | |
|
|
| 130 | if [[ ! -d "${wc_path}" ]]; then |
|
|
| 131 | local options="-r+" |
|
|
| 132 | # first check out |
|
|
| 133 | einfo "bitkeeper check out start -->" |
|
|
| 134 | einfo " repository: ${repo_uri}" |
|
|
| 135 | ${ebk_fetch_cmd} ${options} "${repo_uri}" ${wc_path} \ |
|
|
| 136 | || die "${EBK}: can't fetch from ${repo_uri}." |
|
|
| 137 | else |
|
|
| 138 | if [[ ! -d "${wc_path}/BK" ]]; then |
|
|
| 139 | popd |
|
|
| 140 | die "Look like ${wc_path} is not a bitkeeper path." |
|
|
| 141 | fi |
|
|
| 142 | |
|
|
| 143 | # update working copy |
|
|
| 144 | einfo "bitkeeper update start -->" |
|
|
| 145 | einfo " repository: ${repo_uri}" |
|
|
| 146 | |
|
|
| 147 | ${ebk_update_cmd} "${repo_uri}" "${wc_path}" \ |
|
|
| 148 | || die "BK: can't update from ${repo_uri} to ${wc_path}." |
|
|
| 149 | |
|
|
| 150 | fi |
|
|
| 151 | |
|
|
| 152 | einfo " working copy: ${wc_path}" |
|
|
| 153 | cd "${wc_path}" |
|
|
| 154 | rsync -rlpgo --exclude="BK/" . "${S}" || die "BK: can't export to ${S}." |
|
|
| 155 | |
|
|
| 156 | echo |
|
|
| 157 | popd |
|
|
| 158 | |
|
|
| 159 | } |
|
|
| 160 | |
162 | |
| 161 | mysql_disable_test() { |
163 | mysql_disable_test() { |
| 162 | local testname="${1}" ; shift |
164 | local testname="${1}" ; shift |
| 163 | local reason="${@}" |
165 | local reason="${@}" |
| 164 | local mysql_disable_file="${S}/mysql-test/t/disabled.def" |
166 | local mysql_disable_file="${S}/mysql-test/t/disabled.def" |
| 165 | echo ${testname} : ${reason} >> "${mysql_disable_file}" |
167 | echo ${testname} : ${reason} >> "${mysql_disable_file}" |
| 166 | ewarn "test \"${testname}\" disabled because: \"${reason}\"" |
168 | ewarn "test '${testname}' disabled: '${reason}'" |
| 167 | } |
169 | } |
| 168 | |
170 | |
| 169 | # void mysql_init_vars() |
171 | # void mysql_init_vars() |
| 170 | # |
172 | # |
| 171 | # Initialize global variables |
173 | # Initialize global variables |
| … | |
… | |
| 177 | MY_LIBDIR=${MY_LIBDIR="/usr/$(get_libdir)/mysql"} |
179 | MY_LIBDIR=${MY_LIBDIR="/usr/$(get_libdir)/mysql"} |
| 178 | MY_LOCALSTATEDIR=${MY_LOCALSTATEDIR="/var/lib/mysql"} |
180 | MY_LOCALSTATEDIR=${MY_LOCALSTATEDIR="/var/lib/mysql"} |
| 179 | MY_LOGDIR=${MY_LOGDIR="/var/log/mysql"} |
181 | MY_LOGDIR=${MY_LOGDIR="/var/log/mysql"} |
| 180 | MY_INCLUDEDIR=${MY_INCLUDEDIR="/usr/include/mysql"} |
182 | MY_INCLUDEDIR=${MY_INCLUDEDIR="/usr/include/mysql"} |
| 181 | |
183 | |
| 182 | if [[ -z "${DATADIR}" ]] ; then |
184 | if [[ -z "${MY_DATADIR}" ]] ; then |
| 183 | DATADIR="" |
185 | MY_DATADIR="" |
| 184 | if [[ -f "${MY_SYSCONFDIR}/my.cnf" ]] ; then |
186 | if [[ -f "${MY_SYSCONFDIR}/my.cnf" ]] ; then |
| 185 | DATADIR=`"my_print_defaults" mysqld 2>/dev/null \ |
187 | MY_DATADIR=`"my_print_defaults" mysqld 2>/dev/null \ |
| 186 | | sed -ne '/datadir/s|^--datadir=||p' \ |
188 | | sed -ne '/datadir/s|^--datadir=||p' \ |
| 187 | | tail -n1` |
189 | | tail -n1` |
| 188 | if [[ -z "${DATADIR}" ]] ; then |
190 | 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" \ |
191 | MY_DATADIR=`grep ^datadir "${MY_SYSCONFDIR}/my.cnf" \ |
| 193 | | sed -e 's/.*=\s*//'` |
192 | | sed -e 's/.*=\s*//' \ |
| 194 | fi |
193 | | tail -n1` |
| 195 | fi |
194 | fi |
| 196 | fi |
195 | fi |
| 197 | if [[ -z "${DATADIR}" ]] ; then |
196 | if [[ -z "${MY_DATADIR}" ]] ; then |
| 198 | if useq "srvdir" ; then |
|
|
| 199 | DATADIR="${ROOT}/srv/localhost/mysql/datadir" |
|
|
| 200 | else |
|
|
| 201 | DATADIR="${MY_LOCALSTATEDIR}" |
197 | MY_DATADIR="${MY_LOCALSTATEDIR}" |
| 202 | fi |
|
|
| 203 | einfo "Using default DATADIR" |
198 | einfo "Using default MY_DATADIR" |
| 204 | fi |
199 | fi |
| 205 | elog "MySQL DATADIR is ${DATADIR}" |
200 | elog "MySQL MY_DATADIR is ${MY_DATADIR}" |
| 206 | |
201 | |
| 207 | if [[ -z "${PREVIOUS_DATADIR}" ]] ; then |
202 | if [[ -z "${PREVIOUS_DATADIR}" ]] ; then |
| 208 | if [[ -e "${DATADIR}" ]] ; then |
203 | if [[ -e "${MY_DATADIR}" ]] ; then |
| 209 | elog "Previous datadir found, it's YOUR job to change" |
204 | # If you get this and you're wondering about it, see bug #207636 |
| 210 | elog "ownership and take care of it" |
205 | elog "MySQL datadir found in ${MY_DATADIR}" |
|
|
206 | elog "A new one will not be created." |
| 211 | PREVIOUS_DATADIR="yes" |
207 | PREVIOUS_DATADIR="yes" |
| 212 | else |
208 | else |
| 213 | PREVIOUS_DATADIR="no" |
209 | PREVIOUS_DATADIR="no" |
| 214 | fi |
210 | fi |
| 215 | export PREVIOUS_DATADIR |
211 | export PREVIOUS_DATADIR |
| 216 | fi |
212 | fi |
|
|
213 | else |
|
|
214 | if [[ ${EBUILD_PHASE} == "config" ]]; then |
|
|
215 | local new_MY_DATADIR |
|
|
216 | new_MY_DATADIR=`"my_print_defaults" mysqld 2>/dev/null \ |
|
|
217 | | sed -ne '/datadir/s|^--datadir=||p' \ |
|
|
218 | | tail -n1` |
|
|
219 | |
|
|
220 | if [[ ( -n "${new_MY_DATADIR}" ) && ( "${new_MY_DATADIR}" != "${MY_DATADIR}" ) ]]; then |
|
|
221 | ewarn "MySQL MY_DATADIR has changed" |
|
|
222 | ewarn "from ${MY_DATADIR}" |
|
|
223 | ewarn "to ${new_MY_DATADIR}" |
|
|
224 | MY_DATADIR="${new_MY_DATADIR}" |
|
|
225 | fi |
| 217 | fi |
226 | fi |
|
|
227 | fi |
|
|
228 | |
|
|
229 | MY_SOURCEDIR=${SERVER_URI##*/} |
|
|
230 | MY_SOURCEDIR=${MY_SOURCEDIR%.tar*} |
| 218 | |
231 | |
| 219 | export MY_SHAREDSTATEDIR MY_SYSCONFDIR |
232 | export MY_SHAREDSTATEDIR MY_SYSCONFDIR |
| 220 | export MY_LIBDIR MY_LOCALSTATEDIR MY_LOGDIR |
233 | export MY_LIBDIR MY_LOCALSTATEDIR MY_LOGDIR |
| 221 | export MY_INCLUDEDIR |
234 | export MY_INCLUDEDIR MY_DATADIR MY_SOURCEDIR |
| 222 | export DATADIR |
|
|
| 223 | } |
235 | } |
| 224 | |
236 | |
| 225 | configure_minimal() { |
237 | configure_minimal() { |
| 226 | # These are things we exclude from a minimal build, please |
238 | # These are things we exclude from a minimal build, please |
| 227 | # note that the server actually does get built and installed, |
239 | # note that the server actually does get built and installed, |
| 228 | # but we then delete it before packaging. |
240 | # but we then delete it before packaging. |
| 229 | local minimal_exclude_list="server embedded-server extra-tools innodb bench berkeley-db row-based-replication" |
241 | local minimal_exclude_list="server embedded-server extra-tools innodb bench berkeley-db row-based-replication readline" |
| 230 | |
242 | |
| 231 | for i in ${minimal_exclude_list} ; do |
243 | for i in ${minimal_exclude_list} ; do |
| 232 | myconf="${myconf} --without-${i}" |
244 | myconf="${myconf} --without-${i}" |
| 233 | done |
245 | done |
| 234 | myconf="${myconf} --with-extra-charsets=none" |
246 | myconf="${myconf} --with-extra-charsets=none" |
| 235 | myconf="${myconf} --enable-local-infile" |
247 | myconf="${myconf} --enable-local-infile" |
| 236 | |
248 | |
| 237 | if useq "static" ; then |
249 | if use static ; then |
| 238 | myconf="${myconf} --with-client-ldflags=-all-static" |
250 | myconf="${myconf} --with-client-ldflags=-all-static" |
| 239 | myconf="${myconf} --disable-shared" |
251 | myconf="${myconf} --disable-shared --with-pic" |
| 240 | else |
252 | else |
| 241 | myconf="${myconf} --enable-shared --enable-static" |
253 | myconf="${myconf} --enable-shared --enable-static" |
| 242 | fi |
254 | fi |
| 243 | |
255 | |
| 244 | if mysql_version_is_at_least "4.01.00.00" && ! useq "latin1" ; then |
256 | if mysql_version_is_at_least "4.1" && ! use latin1 ; then |
| 245 | myconf="${myconf} --with-charset=utf8" |
257 | myconf="${myconf} --with-charset=utf8" |
| 246 | myconf="${myconf} --with-collation=utf8_general_ci" |
258 | myconf="${myconf} --with-collation=utf8_general_ci" |
| 247 | else |
259 | else |
| 248 | myconf="${myconf} --with-charset=latin1" |
260 | myconf="${myconf} --with-charset=latin1" |
| 249 | myconf="${myconf} --with-collation=latin1_swedish_ci" |
261 | myconf="${myconf} --with-collation=latin1_swedish_ci" |
| … | |
… | |
| 257 | myconf="${myconf} --with-mysqld-user=mysql" |
269 | myconf="${myconf} --with-mysqld-user=mysql" |
| 258 | myconf="${myconf} --with-server" |
270 | myconf="${myconf} --with-server" |
| 259 | myconf="${myconf} --with-unix-socket-path=/var/run/mysqld/mysqld.sock" |
271 | myconf="${myconf} --with-unix-socket-path=/var/run/mysqld/mysqld.sock" |
| 260 | myconf="${myconf} --without-libwrap" |
272 | myconf="${myconf} --without-libwrap" |
| 261 | |
273 | |
| 262 | if useq "static" ; then |
274 | if use static ; then |
| 263 | myconf="${myconf} --with-mysqld-ldflags=-all-static" |
275 | myconf="${myconf} --with-mysqld-ldflags=-all-static" |
| 264 | myconf="${myconf} --with-client-ldflags=-all-static" |
276 | myconf="${myconf} --with-client-ldflags=-all-static" |
| 265 | myconf="${myconf} --disable-shared" |
277 | myconf="${myconf} --disable-shared --with-pic" |
| 266 | else |
278 | else |
| 267 | myconf="${myconf} --enable-shared --enable-static" |
279 | myconf="${myconf} --enable-shared --enable-static" |
| 268 | fi |
280 | fi |
| 269 | |
281 | |
| 270 | if useq "debug" ; then |
282 | if use debug ; then |
| 271 | myconf="${myconf} --with-debug=full" |
283 | myconf="${myconf} --with-debug=full" |
| 272 | else |
284 | else |
| 273 | myconf="${myconf} --without-debug" |
285 | myconf="${myconf} --without-debug" |
| 274 | mysql_version_is_at_least "4.1.3" \ |
286 | mysql_version_is_at_least "4.1.3" \ |
| 275 | && useq "cluster" \ |
287 | && use cluster \ |
| 276 | && myconf="${myconf} --without-ndb-debug" |
288 | && myconf="${myconf} --without-ndb-debug" |
| 277 | fi |
289 | fi |
| 278 | |
290 | |
|
|
291 | if [ -n "${MYSQL_DEFAULT_CHARSET}" -a -n "${MYSQL_DEFAULT_COLLATION}" ]; then |
|
|
292 | ewarn "You are using a custom charset of ${MYSQL_DEFAULT_CHARSET}" |
|
|
293 | ewarn "and a collation of ${MYSQL_DEFAULT_COLLATION}." |
|
|
294 | ewarn "You MUST file bugs without these variables set." |
|
|
295 | myconf="${myconf} --with-charset=${MYSQL_DEFAULT_CHARSET}" |
|
|
296 | myconf="${myconf} --with-collation=${MYSQL_DEFAULT_COLLATION}" |
| 279 | if mysql_version_is_at_least "4.1" && ! useq "latin1" ; then |
297 | elif mysql_version_is_at_least "4.1" && ! use latin1 ; then |
| 280 | myconf="${myconf} --with-charset=utf8" |
298 | myconf="${myconf} --with-charset=utf8" |
| 281 | myconf="${myconf} --with-collation=utf8_general_ci" |
299 | myconf="${myconf} --with-collation=utf8_general_ci" |
| 282 | else |
300 | else |
| 283 | myconf="${myconf} --with-charset=latin1" |
301 | myconf="${myconf} --with-charset=latin1" |
| 284 | myconf="${myconf} --with-collation=latin1_swedish_ci" |
302 | myconf="${myconf} --with-collation=latin1_swedish_ci" |
| 285 | fi |
303 | fi |
| 286 | |
304 | |
| 287 | if useq "embedded" ; then |
305 | if use embedded ; then |
| 288 | myconf="${myconf} --with-embedded-privilege-control" |
306 | myconf="${myconf} --with-embedded-privilege-control" |
| 289 | myconf="${myconf} --with-embedded-server" |
307 | myconf="${myconf} --with-embedded-server" |
| 290 | else |
308 | else |
| 291 | myconf="${myconf} --without-embedded-privilege-control" |
309 | myconf="${myconf} --without-embedded-privilege-control" |
| 292 | myconf="${myconf} --without-embedded-server" |
310 | myconf="${myconf} --without-embedded-server" |
| … | |
… | |
| 300 | myconf="${myconf} --with-extra-tools" |
318 | myconf="${myconf} --with-extra-tools" |
| 301 | myconf="${myconf} --with-innodb" |
319 | myconf="${myconf} --with-innodb" |
| 302 | myconf="${myconf} --without-readline" |
320 | myconf="${myconf} --without-readline" |
| 303 | mysql_version_is_at_least "5.0" || myconf="${myconf} $(use_with raid)" |
321 | mysql_version_is_at_least "5.0" || myconf="${myconf} $(use_with raid)" |
| 304 | |
322 | |
| 305 | if useq "ssl" ; then |
|
|
| 306 | # --with-vio is not needed anymore, it's on by default and |
323 | # --with-vio is not needed anymore, it's on by default and |
| 307 | # has been removed from configure |
324 | # has been removed from configure |
|
|
325 | if use ssl ; then |
| 308 | mysql_version_is_at_least "5.0.4" || myconf="${myconf} --with-vio" |
326 | mysql_version_is_at_least "5.0.4" || myconf="${myconf} --with-vio" |
|
|
327 | fi |
|
|
328 | |
|
|
329 | if mysql_version_is_at_least "5.1.11" ; then |
|
|
330 | myconf="${myconf} $(use_with ssl)" |
|
|
331 | else |
|
|
332 | myconf="${myconf} $(use_with ssl openssl)" |
|
|
333 | fi |
|
|
334 | |
| 309 | if mysql_version_is_at_least "5.0.6" ; then |
335 | if mysql_version_is_at_least "5.0.60" ; then |
| 310 | # myconf="${myconf} --with-yassl" |
336 | if use berkdb ; then |
|
|
337 | elog "Berkeley DB support was disabled due to build failures" |
|
|
338 | elog "on multiple arches, go to a version earlier than 5.0.60" |
|
|
339 | elog "if you want it again. Gentoo bug #224067." |
|
|
340 | fi |
| 311 | myconf="${myconf} --with-openssl" |
341 | myconf="${myconf} --without-berkeley-db" |
|
|
342 | elif use berkdb ; then |
|
|
343 | # The following fix is due to a bug with bdb on SPARC's. See: |
|
|
344 | # http://www.geocrawler.com/mail/msg.php3?msg_id=4754814&list=8 |
|
|
345 | # It comes down to non-64-bit safety problems. |
|
|
346 | if use alpha || use amd64 || use hppa || use mips || use sparc ; then |
|
|
347 | elog "Berkeley DB support was disabled due to compatibility issues on this arch" |
|
|
348 | myconf="${myconf} --without-berkeley-db" |
| 312 | else |
349 | else |
| 313 | myconf="${myconf} --with-openssl" |
350 | myconf="${myconf} --with-berkeley-db=./bdb" |
| 314 | fi |
|
|
| 315 | else |
|
|
| 316 | myconf="${myconf} --without-openssl" |
|
|
| 317 | fi |
351 | fi |
| 318 | |
352 | 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" |
353 | 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 |
354 | fi |
| 332 | |
355 | |
| 333 | if mysql_version_is_at_least "4.1.3" ; then |
356 | if mysql_version_is_at_least "4.1.3" ; then |
| 334 | myconf="${myconf} --with-geometry" |
357 | myconf="${myconf} --with-geometry" |
| 335 | myconf="${myconf} $(use_with cluster ndbcluster)" |
358 | myconf="${myconf} $(use_with cluster ndbcluster)" |
| 336 | fi |
359 | fi |
| 337 | |
360 | |
| 338 | if mysql_version_is_at_least "4.1.3" && useq "extraengine" ; then |
361 | if mysql_version_is_at_least "4.1.3" && use extraengine ; then |
| 339 | # http://dev.mysql.com/doc/mysql/en/archive-storage-engine.html |
362 | # http://dev.mysql.com/doc/mysql/en/archive-storage-engine.html |
| 340 | myconf="${myconf} --with-archive-storage-engine" |
363 | myconf="${myconf} --with-archive-storage-engine" |
| 341 | |
364 | |
| 342 | # http://dev.mysql.com/doc/mysql/en/csv-storage-engine.html |
365 | # http://dev.mysql.com/doc/mysql/en/csv-storage-engine.html |
| 343 | myconf="${myconf} --with-csv-storage-engine" |
366 | myconf="${myconf} --with-csv-storage-engine" |
| … | |
… | |
| 353 | elog "http://dev.mysql.com/doc/mysql/en/federated-limitations.html" |
376 | elog "http://dev.mysql.com/doc/mysql/en/federated-limitations.html" |
| 354 | myconf="${myconf} --with-federated-storage-engine" |
377 | myconf="${myconf} --with-federated-storage-engine" |
| 355 | fi |
378 | fi |
| 356 | fi |
379 | fi |
| 357 | |
380 | |
|
|
381 | if [ "${MYSQL_COMMUNITY_FEATURES}" == "1" ]; then |
|
|
382 | myconf="${myconf} `use_enable community community-features`" |
|
|
383 | if use community; then |
|
|
384 | myconf="${myconf} `use_enable profiling`" |
|
|
385 | else |
|
|
386 | myconf="${myconf} --disable-profiling" |
|
|
387 | fi |
|
|
388 | fi |
|
|
389 | |
| 358 | mysql_version_is_at_least "5.0.18" \ |
390 | mysql_version_is_at_least "5.0.18" \ |
| 359 | && useq "max-idx-128" \ |
391 | && use max-idx-128 \ |
| 360 | && myconf="${myconf} --with-max-indexes=128" |
392 | && myconf="${myconf} --with-max-indexes=128" |
| 361 | } |
393 | } |
| 362 | |
394 | |
| 363 | configure_51() { |
395 | configure_51() { |
| 364 | # TODO: !!!! readd --without-readline |
396 | # TODO: !!!! readd --without-readline |
| … | |
… | |
| 369 | myconf="${myconf} --with-geometry" |
401 | myconf="${myconf} --with-geometry" |
| 370 | myconf="${myconf} --with-readline" |
402 | myconf="${myconf} --with-readline" |
| 371 | myconf="${myconf} --with-row-based-replication" |
403 | myconf="${myconf} --with-row-based-replication" |
| 372 | myconf="${myconf} --with-zlib=/usr/$(get_libdir)" |
404 | myconf="${myconf} --with-zlib=/usr/$(get_libdir)" |
| 373 | myconf="${myconf} --without-pstack" |
405 | myconf="${myconf} --without-pstack" |
| 374 | useq "max-idx-128" && myconf="${myconf} --with-max-indexes=128" |
406 | use max-idx-128 && myconf="${myconf} --with-max-indexes=128" |
| 375 | |
407 | |
| 376 | # 5.1 introduces a new way to manage storage engines (plugins) |
408 | # 5.1 introduces a new way to manage storage engines (plugins) |
| 377 | # like configuration=none |
409 | # like configuration=none |
| 378 | local plugins="csv,myisam,myisammrg,heap" |
410 | local plugins="csv,myisam,myisammrg,heap" |
| 379 | if useq "extraengine" ; then |
411 | if use extraengine ; then |
| 380 | # like configuration=max-no-ndb, archive and example removed in 5.1.11 |
412 | # like configuration=max-no-ndb, archive and example removed in 5.1.11 |
| 381 | plugins="${plugins},archive,blackhole,example,federated,ftexample,partition" |
413 | plugins="${plugins},archive,blackhole,example,federated,partition" |
| 382 | |
414 | |
| 383 | elog "Before using the Federated storage engine, please be sure to read" |
415 | 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" |
416 | elog "http://dev.mysql.com/doc/refman/5.1/en/federated-limitations.html" |
| 385 | fi |
417 | fi |
| 386 | |
418 | |
| 387 | if useq "innodb" ; then |
419 | # Upstream specifically requests that InnoDB always be built. |
| 388 | plugins="${plugins},innobase" |
420 | plugins="${plugins},innobase" |
| 389 | fi |
|
|
| 390 | |
421 | |
| 391 | # like configuration=max-no-ndb |
422 | # like configuration=max-no-ndb |
| 392 | if useq "cluster" ; then |
423 | if use cluster ; then |
| 393 | plugins="${plugins},ndbcluster" |
424 | plugins="${plugins},ndbcluster" |
| 394 | myconf="${myconf} --with-ndb-binlog" |
425 | myconf="${myconf} --with-ndb-binlog" |
| 395 | fi |
426 | fi |
| 396 | |
427 | |
|
|
428 | if mysql_version_is_at_least "5.2" ; then |
|
|
429 | plugins="${plugins},falcon" |
|
|
430 | fi |
|
|
431 | |
| 397 | myconf="${myconf} --with-plugins=${plugins}" |
432 | myconf="${myconf} --with-plugins=${plugins}" |
| 398 | } |
433 | } |
| 399 | |
434 | |
| 400 | pbxt_src_compile() { |
435 | pbxt_src_configure() { |
| 401 | mysql_init_vars |
436 | mysql_init_vars |
| 402 | |
437 | |
| 403 | pushd "${WORKDIR}/pbxt-${PBXT_VERSION}" &>/dev/null |
438 | pushd "${WORKDIR}/pbxt-${PBXT_VERSION}" &>/dev/null |
| 404 | |
439 | |
| 405 | einfo "Reconfiguring dir '${PWD}'" |
440 | einfo "Reconfiguring dir '${PWD}'" |
| 406 | AT_GNUCONF_UPDATE="yes" eautoreconf |
441 | AT_GNUCONF_UPDATE="yes" eautoreconf |
| 407 | |
442 | |
| 408 | local myconf |
443 | local myconf="" |
| 409 | myconf="${myconf} --with-mysql=${S}" |
|
|
| 410 | mkdir -p ${T}/lib |
|
|
| 411 | myconf="${myconf} --libdir=${D}/${MY_LIBDIR}" |
444 | myconf="${myconf} --with-mysql=${S} --libdir=${D}/${MY_LIBDIR}" |
| 412 | useq "debug" && myconf="${myconf} --with-debug=full" |
445 | use debug && myconf="${myconf} --with-debug=full" |
| 413 | # TODO is safe/needed to use econf here ? |
446 | # TODO: is it safe/needed to use econf here ? |
| 414 | ./configure ${myconf} || die "problem configuring pbxt storage engine" |
447 | ./configure ${myconf} || die "Problem configuring PBXT storage engine" |
|
|
448 | } |
|
|
449 | |
|
|
450 | pbxt_src_compile() { |
|
|
451 | # Be backwards compatible for now |
|
|
452 | if [[ $EAPI != 2 ]]; then |
|
|
453 | pbxt_src_configure |
|
|
454 | fi |
| 415 | # TODO is safe/needed to use emake here ? |
455 | # TODO: is it safe/needed to use emake here ? |
| 416 | make || die "problem making pbxt storage engine (${myconf})" |
456 | make || die "Problem making PBXT storage engine (${myconf})" |
| 417 | |
457 | |
| 418 | popd |
458 | popd |
| 419 | # TODO: modify test suite |
459 | # TODO: modify test suite for PBXT |
| 420 | } |
460 | } |
| 421 | |
461 | |
| 422 | pbxt_src_install() { |
462 | pbxt_src_install() { |
| 423 | pushd "${WORKDIR}/pbxt-${PBXT_VERSION}" &>/dev/null |
463 | pushd "${WORKDIR}/pbxt-${PBXT_VERSION}" &>/dev/null |
| 424 | make install || die "failed pbxt install" |
464 | make install || die "Failed to install PBXT" |
| 425 | popd |
465 | popd |
| 426 | } |
466 | } |
| 427 | |
467 | |
| 428 | # |
468 | # |
| 429 | # EBUILD FUNCTIONS |
469 | # EBUILD FUNCTIONS |
| 430 | # |
470 | # |
| 431 | |
|
|
| 432 | mysql_pkg_setup() { |
471 | mysql_pkg_setup() { |
| 433 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
472 | if hasq test ${FEATURES} ; then |
| 434 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
473 | if ! use minimal ; then |
| 435 | |
474 | if [[ $UID -eq 0 ]]; then |
|
|
475 | eerror "Testing with FEATURES=-userpriv is no longer supported by upstream. Tests MUST be run as non-root." |
|
|
476 | fi |
|
|
477 | fi |
|
|
478 | fi |
|
|
479 | |
| 436 | # Check for USE flag problems in pkg_setup |
480 | # Check for USE flag problems in pkg_setup |
| 437 | if useq "static" && useq "ssl" ; then |
481 | if use static && use ssl ; then |
| 438 | eerror "MySQL does not support being built statically with SSL support enabled!" |
482 | 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!" |
483 | die "MySQL does not support being built statically with SSL support enabled!" |
| 440 | fi |
484 | fi |
| 441 | |
485 | |
| 442 | if ! mysql_version_is_at_least "5.0" \ |
486 | if ! mysql_version_is_at_least "5.0" \ |
| 443 | && useq "raid" \ |
487 | && use raid \ |
| 444 | && useq "static" ; then |
488 | && use static ; then |
| 445 | eerror "USE flags 'raid' and 'static' conflict, you cannot build MySQL statically" |
489 | eerror "USE flags 'raid' and 'static' conflict, you cannot build MySQL statically" |
| 446 | eerror "with RAID support enabled." |
490 | eerror "with RAID support enabled." |
| 447 | die "USE flags 'raid' and 'static' conflict!" |
491 | die "USE flags 'raid' and 'static' conflict!" |
| 448 | fi |
492 | fi |
| 449 | |
493 | |
| 450 | if mysql_version_is_at_least "4.1.3" \ |
494 | if mysql_version_is_at_least "4.1.3" \ |
| 451 | && ( useq "cluster" || useq "extraengine" ) \ |
495 | && ( use cluster || use extraengine ) \ |
| 452 | && useq "minimal" ; then |
496 | && use minimal ; then |
| 453 | eerror "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
497 | eerror "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
| 454 | die "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
498 | die "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
| 455 | fi |
499 | fi |
| 456 | |
500 | |
|
|
501 | # This should come after all of the die statements |
|
|
502 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
|
|
503 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
|
|
504 | |
| 457 | mysql_check_version_range "4.0 to 5.0.99.99" \ |
505 | mysql_check_version_range "4.0 to 5.0.99.99" \ |
| 458 | && useq "berkdb" \ |
506 | && use berkdb \ |
| 459 | && elog "Berkeley DB support is deprecated and will be removed in future versions!" |
507 | && elog "Berkeley DB support is deprecated and will be removed in future versions!" |
| 460 | } |
508 | } |
| 461 | |
509 | |
| 462 | mysql_src_unpack() { |
510 | mysql_src_unpack() { |
| 463 | # Initialize the proper variables first |
511 | # Initialize the proper variables first |
| 464 | mysql_init_vars |
512 | mysql_init_vars |
| 465 | |
513 | |
| 466 | unpack ${A} |
514 | unpack ${A} |
|
|
515 | # Grab the patches |
|
|
516 | [[ "${MY_EXTRAS_VER}" == "live" ]] && S="${WORKDIR}/mysql-extras" git_src_unpack |
| 467 | |
517 | |
| 468 | mv -f "${WORKDIR}/${MY_P}${MYSQL_RERELEASE}" "${S}" |
518 | mv -f "${WORKDIR}/${MY_SOURCEDIR}" "${S}" |
|
|
519 | |
|
|
520 | # Be backwards compatible for now |
|
|
521 | if [[ $EAPI != 2 ]]; then |
|
|
522 | mysql_src_prepare |
|
|
523 | fi |
|
|
524 | } |
|
|
525 | |
|
|
526 | mysql_src_prepare() { |
| 469 | cd "${S}" |
527 | cd "${S}" |
| 470 | |
528 | |
| 471 | # Apply the patches for this MySQL version |
529 | # Apply the patches for this MySQL version |
| 472 | if [[ -d "${WORKDIR}/${MY_FIXED_PV}" ]] ; then |
530 | EPATCH_SUFFIX="patch" |
| 473 | EPATCH_SOURCE="${WORKDIR}/${MY_FIXED_PV}" EPATCH_SUFFIX="patch" epatch |
531 | mkdir -p "${EPATCH_SOURCE}" || die "Unable to create epatch directory" |
| 474 | fi |
532 | # Clean out old items |
|
|
533 | rm -f "${EPATCH_SOURCE}"/* |
|
|
534 | # Now link in right patches |
|
|
535 | mysql_mv_patches |
|
|
536 | # And apply |
|
|
537 | epatch |
| 475 | |
538 | |
| 476 | # Additional checks, remove bundled zlib |
539 | # Additional checks, remove bundled zlib |
| 477 | rm -f "${S}/zlib/"*.[ch] |
540 | rm -f "${S}/zlib/"*.[ch] |
| 478 | sed -i -e "s/zlib\/Makefile dnl/dnl zlib\/Makefile/" "${S}/configure.in" |
541 | sed -i -e "s/zlib\/Makefile dnl/dnl zlib\/Makefile/" "${S}/configure.in" |
| 479 | rm -f "scripts/mysqlbug" |
542 | rm -f "scripts/mysqlbug" |
| 480 | |
543 | |
| 481 | # Make charsets install in the right place |
544 | # Make charsets install in the right place |
| 482 | find . -name 'Makefile.am' \ |
545 | find . -name 'Makefile.am' \ |
| 483 | -exec sed --in-place -e 's!$(pkgdatadir)!'${MY_SHAREDSTATEDIR}'!g' {} \; |
546 | -exec sed --in-place -e 's!$(pkgdatadir)!'${MY_SHAREDSTATEDIR}'!g' {} \; |
| 484 | |
547 | |
| 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 |
548 | if mysql_version_is_at_least "4.1" ; then |
| 492 | # Remove what needs to be recreated, so we're sure it's actually done |
549 | # Remove what needs to be recreated, so we're sure it's actually done |
| 493 | find . -name Makefile \ |
550 | find . -name Makefile \ |
| 494 | -o -name Makefile.in \ |
551 | -o -name Makefile.in \ |
| 495 | -o -name configure \ |
552 | -o -name configure \ |
| 496 | -exec rm -f {} \; |
553 | -exec rm -f {} \; |
| … | |
… | |
| 500 | |
557 | |
| 501 | local rebuilddirlist d |
558 | local rebuilddirlist d |
| 502 | |
559 | |
| 503 | if mysql_version_is_at_least "5.1.12" ; then |
560 | if mysql_version_is_at_least "5.1.12" ; then |
| 504 | rebuilddirlist="." |
561 | rebuilddirlist="." |
| 505 | # TODO IMPO! Check this with a cmake expert |
562 | # TODO: check this with a cmake expert |
| 506 | useq "innodb" \ |
|
|
| 507 | && cmake \ |
563 | cmake \ |
| 508 | -DCMAKE_C_COMPILER=$(which $(tc-getCC)) \ |
564 | -DCMAKE_C_COMPILER=$(type -P $(tc-getCC)) \ |
| 509 | -DCMAKE_CXX_COMPILER=$(which $(tc-getCC)) \ |
565 | -DCMAKE_CXX_COMPILER=$(type -P $(tc-getCXX)) \ |
| 510 | "storage/innobase" |
566 | "storage/innobase" |
| 511 | else |
567 | else |
| 512 | rebuilddirlist=". innobase" |
568 | rebuilddirlist=". innobase" |
| 513 | fi |
569 | fi |
| 514 | |
570 | |
| … | |
… | |
| 518 | AT_GNUCONF_UPDATE="yes" eautoreconf |
574 | AT_GNUCONF_UPDATE="yes" eautoreconf |
| 519 | popd &>/dev/null |
575 | popd &>/dev/null |
| 520 | done |
576 | done |
| 521 | |
577 | |
| 522 | if mysql_check_version_range "4.1 to 5.0.99.99" \ |
578 | if mysql_check_version_range "4.1 to 5.0.99.99" \ |
| 523 | && useq "berkdb" ; then |
579 | && use berkdb ; then |
| 524 | [[ -w "bdb/dist/ltmain.sh" ]] && cp -f "ltmain.sh" "bdb/dist/ltmain.sh" |
580 | [[ -w "bdb/dist/ltmain.sh" ]] && cp -f "ltmain.sh" "bdb/dist/ltmain.sh" |
|
|
581 | cp -f "/usr/share/aclocal/libtool.m4" "bdb/dist/aclocal/libtool.ac" \ |
|
|
582 | || die "Could not copy libtool.m4 to bdb/dist/" |
|
|
583 | #These files exist only with libtool-2*, and need to be included. |
|
|
584 | if [ -f '/usr/share/aclocal/ltsugar.m4' ]; then |
|
|
585 | cat "/usr/share/aclocal/ltsugar.m4" >> "bdb/dist/aclocal/libtool.ac" |
|
|
586 | cat "/usr/share/aclocal/ltversion.m4" >> "bdb/dist/aclocal/libtool.ac" |
|
|
587 | cat "/usr/share/aclocal/lt~obsolete.m4" >> "bdb/dist/aclocal/libtool.ac" |
|
|
588 | cat "/usr/share/aclocal/ltoptions.m4" >> "bdb/dist/aclocal/libtool.ac" |
|
|
589 | fi |
| 525 | pushd "bdb/dist" \ |
590 | pushd "bdb/dist" &>/dev/null |
| 526 | && sh s_all \ |
591 | sh s_all \ |
| 527 | || die "Failed bdb reconfigure" \ |
592 | || die "Failed bdb reconfigure" |
| 528 | &>/dev/null |
|
|
| 529 | popd &>/dev/null |
593 | popd &>/dev/null |
| 530 | fi |
594 | fi |
| 531 | } |
595 | } |
| 532 | |
596 | |
| 533 | mysql_src_compile() { |
597 | mysql_src_configure() { |
| 534 | # Make sure the vars are correctly initialized |
598 | # Make sure the vars are correctly initialized |
| 535 | mysql_init_vars |
599 | mysql_init_vars |
| 536 | |
600 | |
| 537 | # $myconf is modified by the configure_* functions |
601 | # $myconf is modified by the configure_* functions |
| 538 | local myconf="" |
602 | local myconf="" |
| 539 | |
603 | |
| 540 | if useq "minimal" ; then |
604 | if use minimal ; then |
| 541 | configure_minimal |
605 | configure_minimal |
| 542 | else |
606 | else |
| 543 | configure_common |
607 | configure_common |
| 544 | if mysql_version_is_at_least "5.1.10" ; then |
608 | if mysql_version_is_at_least "5.1.10" ; then |
| 545 | configure_51 |
609 | configure_51 |
| … | |
… | |
| 552 | filter-flags "-O" "-O[01]" |
616 | filter-flags "-O" "-O[01]" |
| 553 | |
617 | |
| 554 | # glib-2.3.2_pre fix, bug #16496 |
618 | # glib-2.3.2_pre fix, bug #16496 |
| 555 | append-flags "-DHAVE_ERRNO_AS_DEFINE=1" |
619 | append-flags "-DHAVE_ERRNO_AS_DEFINE=1" |
| 556 | |
620 | |
|
|
621 | # As discovered by bug #246652, doing a double-level of SSP causes NDB to |
|
|
622 | # fail badly during cluster startup. |
|
|
623 | if [[ $(gcc-major-version) -lt 4 ]]; then |
|
|
624 | filter-flags "-fstack-protector-all" |
|
|
625 | fi |
|
|
626 | |
| 557 | CXXFLAGS="${CXXFLAGS} -fno-exceptions -fno-strict-aliasing" |
627 | CXXFLAGS="${CXXFLAGS} -fno-exceptions -fno-strict-aliasing" |
| 558 | CXXFLAGS="${CXXFLAGS} -felide-constructors -fno-rtti" |
628 | CXXFLAGS="${CXXFLAGS} -felide-constructors -fno-rtti" |
| 559 | mysql_version_is_at_least "5.0" \ |
629 | mysql_version_is_at_least "5.0" \ |
| 560 | && CXXFLAGS="${CXXFLAGS} -fno-implicit-templates" |
630 | && CXXFLAGS="${CXXFLAGS} -fno-implicit-templates" |
| 561 | export CXXFLAGS |
631 | export CXXFLAGS |
|
|
632 | |
|
|
633 | # bug #283926, with GCC4.4, this is required to get correct behavior. |
|
|
634 | append-flags -fno-strict-aliasing |
| 562 | |
635 | |
| 563 | econf \ |
636 | econf \ |
| 564 | --libexecdir="/usr/sbin" \ |
637 | --libexecdir="/usr/sbin" \ |
| 565 | --sysconfdir="${MY_SYSCONFDIR}" \ |
638 | --sysconfdir="${MY_SYSCONFDIR}" \ |
| 566 | --localstatedir="${MY_LOCALSTATEDIR}" \ |
639 | --localstatedir="${MY_LOCALSTATEDIR}" \ |
| … | |
… | |
| 577 | # TODO: Move this before autoreconf !!! |
650 | # TODO: Move this before autoreconf !!! |
| 578 | find . -type f -name Makefile -print0 \ |
651 | find . -type f -name Makefile -print0 \ |
| 579 | | xargs -0 -n100 sed -i \ |
652 | | xargs -0 -n100 sed -i \ |
| 580 | -e 's|^pkglibdir *= *$(libdir)/mysql|pkglibdir = $(libdir)|;s|^pkgincludedir *= *$(includedir)/mysql|pkgincludedir = $(includedir)|' |
653 | -e 's|^pkglibdir *= *$(libdir)/mysql|pkglibdir = $(libdir)|;s|^pkgincludedir *= *$(includedir)/mysql|pkgincludedir = $(includedir)|' |
| 581 | |
654 | |
|
|
655 | if [[ $EAPI == 2 ]]; then |
|
|
656 | mysql_version_is_at_least "5.1.12" && use pbxt && pbxt_src_configure |
|
|
657 | fi |
|
|
658 | } |
|
|
659 | |
|
|
660 | mysql_src_compile() { |
|
|
661 | # Be backwards compatible for now |
|
|
662 | if [[ $EAPI != 2 ]]; then |
|
|
663 | mysql_src_configure |
|
|
664 | fi |
|
|
665 | |
| 582 | emake || die "emake failed" |
666 | emake || die "emake failed" |
|
|
667 | |
|
|
668 | mysql_version_is_at_least "5.1.12" && use pbxt && pbxt_src_compile |
| 583 | } |
669 | } |
| 584 | |
670 | |
| 585 | mysql_src_install() { |
671 | mysql_src_install() { |
| 586 | # Make sure the vars are correctly initialized |
672 | # Make sure the vars are correctly initialized |
| 587 | mysql_init_vars |
673 | mysql_init_vars |
| 588 | |
674 | |
| 589 | emake install DESTDIR="${D}" benchdir_root="${MY_SHAREDSTATEDIR}" || die "emake install failed" |
675 | emake install DESTDIR="${D}" benchdir_root="${MY_SHAREDSTATEDIR}" || die "emake install failed" |
| 590 | |
676 | |
| 591 | insinto "${MY_INCLUDEDIR}" |
677 | mysql_version_is_at_least "5.1.12" && use pbxt && pbxt_src_install |
| 592 | doins "${MY_INCLUDEDIR}"/my_{config,dir}.h |
|
|
| 593 | |
678 | |
| 594 | # Convenience links |
679 | # Convenience links |
|
|
680 | einfo "Making Convenience links for mysqlcheck multi-call binary" |
| 595 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlanalyze" |
681 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlanalyze" |
| 596 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlrepair" |
682 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlrepair" |
| 597 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqloptimize" |
683 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqloptimize" |
| 598 | |
684 | |
| 599 | # Various junk (my-*.cnf moved elsewhere) |
685 | # Various junk (my-*.cnf moved elsewhere) |
|
|
686 | einfo "Removing duplicate /usr/share/mysql files" |
| 600 | rm -Rf "${D}/usr/share/info" |
687 | rm -Rf "${D}/usr/share/info" |
| 601 | for removeme in "mysql-log-rotate" mysql.server* \ |
688 | for removeme in "mysql-log-rotate" mysql.server* \ |
| 602 | binary-configure* my-*.cnf mi_test_all* |
689 | binary-configure* my-*.cnf mi_test_all* |
| 603 | do |
690 | do |
| 604 | rm -f "${D}"/usr/share/mysql/${removeme} |
691 | rm -f "${D}"/usr/share/mysql/${removeme} |
| 605 | done |
692 | done |
| 606 | |
693 | |
| 607 | # Clean up stuff for a minimal build |
694 | # Clean up stuff for a minimal build |
| 608 | if useq "minimal" ; then |
695 | if use minimal ; then |
|
|
696 | einfo "Remove all extra content for minimal build" |
| 609 | rm -Rf "${D}${MY_SHAREDSTATEDIR}"/{mysql-test,sql-bench} |
697 | 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} |
698 | 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" |
699 | 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 |
700 | rm -f "${D}${MY_LIBDIR}"/lib{heap,merge,nisam,my{sys,strings,sqld,isammrg,isam},vio,dbug}.a |
| 613 | fi |
701 | fi |
| … | |
… | |
| 616 | if mysql_version_is_at_least "4.1" ; then |
704 | if mysql_version_is_at_least "4.1" ; then |
| 617 | mysql_mycnf_version="4.1" |
705 | mysql_mycnf_version="4.1" |
| 618 | else |
706 | else |
| 619 | mysql_mycnf_version="4.0" |
707 | mysql_mycnf_version="4.0" |
| 620 | fi |
708 | fi |
|
|
709 | einfo "Building default my.cnf" |
| 621 | insinto "${MY_SYSCONFDIR}" |
710 | insinto "${MY_SYSCONFDIR}" |
| 622 | doins "scripts/mysqlaccess.conf" |
711 | doins scripts/mysqlaccess.conf |
| 623 | sed -e "s!@DATADIR@!${DATADIR}!g" \ |
712 | sed -e "s!@DATADIR@!${MY_DATADIR}!g" \ |
| 624 | "${FILESDIR}/my.cnf-${mysql_mycnf_version}" \ |
713 | "${FILESDIR}/my.cnf-${mysql_mycnf_version}" \ |
| 625 | > "${TMPDIR}/my.cnf.ok" |
714 | > "${TMPDIR}/my.cnf.ok" |
| 626 | if mysql_version_is_at_least "4.1" && useq "latin1" ; then |
715 | if mysql_version_is_at_least "4.1" && use latin1 ; then |
| 627 | sed -e "s|utf8|latin1|g" -i "${TMPDIR}/my.cnf.ok" |
716 | sed -e "s|utf8|latin1|g" -i "${TMPDIR}/my.cnf.ok" |
| 628 | fi |
717 | fi |
| 629 | newins "${TMPDIR}/my.cnf.ok" my.cnf |
718 | newins "${TMPDIR}/my.cnf.ok" my.cnf |
| 630 | |
719 | |
| 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 |
720 | # Minimal builds don't have the MySQL server |
| 637 | if ! useq "minimal" ; then |
721 | if ! use minimal ; then |
| 638 | exeinto "/etc/init.d" |
722 | einfo "Creating initial directories" |
| 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 ... |
723 | # Empty directories ... |
| 647 | diropts "-m0750" |
724 | diropts "-m0750" |
| 648 | if [[ "${PREVIOUS_DATADIR}" != "yes" ]] ; then |
725 | if [[ "${PREVIOUS_DATADIR}" != "yes" ]] ; then |
| 649 | dodir "${DATADIR}" |
726 | dodir "${MY_DATADIR}" |
| 650 | keepdir "${DATADIR}" |
727 | keepdir "${MY_DATADIR}" |
| 651 | chown -R mysql:mysql "${D}/${DATADIR}" |
728 | chown -R mysql:mysql "${D}/${MY_DATADIR}" |
| 652 | fi |
729 | fi |
| 653 | |
730 | |
| 654 | diropts "-m0755" |
731 | diropts "-m0755" |
| 655 | for folder in "${MY_LOGDIR}" "/var/run/mysqld" ; do |
732 | for folder in "${MY_LOGDIR}" "/var/run/mysqld" ; do |
| 656 | dodir "${folder}" |
733 | dodir "${folder}" |
| … | |
… | |
| 658 | chown -R mysql:mysql "${D}/${folder}" |
735 | chown -R mysql:mysql "${D}/${folder}" |
| 659 | done |
736 | done |
| 660 | fi |
737 | fi |
| 661 | |
738 | |
| 662 | # Docs |
739 | # Docs |
|
|
740 | einfo "Installing docs" |
| 663 | dodoc README COPYING ChangeLog EXCEPTIONS-CLIENT INSTALL-SOURCE |
741 | dodoc README COPYING ChangeLog EXCEPTIONS-CLIENT INSTALL-SOURCE |
|
|
742 | doinfo "${S}"/Docs/mysql.info |
| 664 | |
743 | |
| 665 | # Minimal builds don't have the MySQL server |
744 | # Minimal builds don't have the MySQL server |
| 666 | if ! useq "minimal" ; then |
745 | if ! use minimal ; then |
|
|
746 | einfo "Including support files and sample configurations" |
|
|
747 | docinto "support-files" |
|
|
748 | for script in \ |
|
|
749 | "${S}"/support-files/my-*.cnf \ |
|
|
750 | "${S}"/support-files/magic \ |
|
|
751 | "${S}"/support-files/ndb-config-2-node.ini |
|
|
752 | do |
|
|
753 | dodoc "${script}" |
|
|
754 | done |
|
|
755 | |
|
|
756 | docinto "scripts" |
|
|
757 | for script in "${S}"/scripts/mysql* ; do |
|
|
758 | [[ "${script%.sh}" == "${script}" ]] && dodoc "${script}" |
|
|
759 | done |
|
|
760 | |
|
|
761 | fi |
|
|
762 | |
|
|
763 | mysql_lib_symlinks "${D}" |
|
|
764 | } |
|
|
765 | |
|
|
766 | mysql_pkg_preinst() { |
|
|
767 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
|
|
768 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
|
|
769 | } |
|
|
770 | |
|
|
771 | mysql_pkg_postinst() { |
|
|
772 | # Make sure the vars are correctly initialized |
|
|
773 | mysql_init_vars |
|
|
774 | |
|
|
775 | # Check FEATURES="collision-protect" before removing this |
|
|
776 | [[ -d "${ROOT}/var/log/mysql" ]] || install -d -m0750 -o mysql -g mysql "${ROOT}${MY_LOGDIR}" |
|
|
777 | |
|
|
778 | # Secure the logfiles |
|
|
779 | touch "${ROOT}${MY_LOGDIR}"/mysql.{log,err} |
|
|
780 | chown mysql:mysql "${ROOT}${MY_LOGDIR}"/mysql* |
|
|
781 | chmod 0660 "${ROOT}${MY_LOGDIR}"/mysql* |
|
|
782 | |
|
|
783 | # Minimal builds don't have the MySQL server |
|
|
784 | if ! use minimal ; then |
| 667 | docinto "support-files" |
785 | docinto "support-files" |
| 668 | for script in \ |
786 | for script in \ |
| 669 | support-files/my-*.cnf \ |
787 | support-files/my-*.cnf \ |
| 670 | support-files/magic \ |
788 | support-files/magic \ |
| 671 | support-files/ndb-config-2-node.ini |
789 | support-files/ndb-config-2-node.ini |
| … | |
… | |
| 675 | |
793 | |
| 676 | docinto "scripts" |
794 | docinto "scripts" |
| 677 | for script in scripts/mysql* ; do |
795 | for script in scripts/mysql* ; do |
| 678 | [[ "${script%.sh}" == "${script}" ]] && dodoc "${script}" |
796 | [[ "${script%.sh}" == "${script}" ]] && dodoc "${script}" |
| 679 | done |
797 | done |
| 680 | fi |
|
|
| 681 | |
798 | |
| 682 | ROOT="${D}" mysql_lib_symlinks |
|
|
| 683 | } |
|
|
| 684 | |
|
|
| 685 | mysql_pkg_preinst() { |
|
|
| 686 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
|
|
| 687 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
|
|
| 688 | } |
|
|
| 689 | |
|
|
| 690 | mysql_pkg_postinst() { |
|
|
| 691 | # Make sure the vars are correctly initialized |
|
|
| 692 | mysql_init_vars |
|
|
| 693 | |
|
|
| 694 | # Check FEATURES="collision-protect" before removing this |
|
|
| 695 | [[ -d "${ROOT}/var/log/mysql" ]] \ |
|
|
| 696 | || install -d -m0750 -o mysql -g mysql "${ROOT}${MY_LOGDIR}" |
|
|
| 697 | |
|
|
| 698 | # Secure the logfiles |
|
|
| 699 | touch "${ROOT}${MY_LOGDIR}"/mysql.{log,err} |
|
|
| 700 | chown mysql:mysql "${ROOT}${MY_LOGDIR}"/mysql* |
|
|
| 701 | chmod 0660 "${ROOT}${MY_LOGDIR}"/mysql* |
|
|
| 702 | |
|
|
| 703 | if ! useq "minimal" ; then |
|
|
| 704 | # Your friendly public service announcement ... |
|
|
| 705 | einfo |
799 | einfo |
| 706 | elog "You might want to run:" |
800 | elog "You might want to run:" |
| 707 | elog "\"emerge --config =${CATEGORY}/${PF}\"" |
801 | elog "\"emerge --config =${CATEGORY}/${PF}\"" |
| 708 | elog "if this is a new install." |
802 | elog "if this is a new install." |
| 709 | einfo |
803 | 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 |
804 | fi |
|
|
805 | |
|
|
806 | if mysql_version_is_at_least "5.1.12" && use pbxt ; then |
|
|
807 | # TODO: explain it better |
|
|
808 | elog " mysql> INSTALL PLUGIN pbxt SONAME 'libpbxt.so';" |
|
|
809 | elog " mysql> CREATE TABLE t1 (c1 int, c2 text) ENGINE=pbxt;" |
|
|
810 | elog "if, after that, you cannot start the MySQL server," |
|
|
811 | elog "remove the ${MY_DATADIR}/mysql/plugin.* files, then" |
|
|
812 | elog "use the MySQL upgrade script to restore the table" |
|
|
813 | elog "or execute the following SQL command:" |
|
|
814 | elog " CREATE TABLE IF NOT EXISTS plugin (" |
|
|
815 | elog " name char(64) binary DEFAULT '' NOT NULL," |
|
|
816 | elog " dl char(128) DEFAULT '' NOT NULL," |
|
|
817 | elog " PRIMARY KEY (name)" |
|
|
818 | elog " ) CHARACTER SET utf8 COLLATE utf8_bin;" |
|
|
819 | fi |
|
|
820 | |
| 713 | mysql_check_version_range "4.0 to 5.0.99.99" \ |
821 | mysql_check_version_range "4.0 to 5.0.99.99" \ |
| 714 | && useq "berkdb" \ |
822 | && use berkdb \ |
| 715 | && elog "Berkeley DB support is deprecated and will be removed in future versions!" |
823 | && elog "Berkeley DB support is deprecated and will be removed in future versions!" |
| 716 | } |
824 | } |
| 717 | |
825 | |
| 718 | mysql_pkg_config() { |
826 | mysql_pkg_config() { |
|
|
827 | local old_MY_DATADIR="${MY_DATADIR}" |
|
|
828 | |
| 719 | # Make sure the vars are correctly initialized |
829 | # Make sure the vars are correctly initialized |
| 720 | mysql_init_vars |
830 | mysql_init_vars |
| 721 | |
831 | |
| 722 | [[ -z "${DATADIR}" ]] && die "Sorry, unable to find DATADIR" |
832 | [[ -z "${MY_DATADIR}" ]] && die "Sorry, unable to find MY_DATADIR" |
| 723 | |
833 | |
| 724 | if built_with_use ${CATEGORY}/${PN} minimal ; then |
834 | if built_with_use ${CATEGORY}/${PN} minimal ; then |
| 725 | die "Minimal builds do NOT include the MySQL server" |
835 | die "Minimal builds do NOT include the MySQL server" |
|
|
836 | fi |
|
|
837 | |
|
|
838 | if [[ ( -n "${MY_DATADIR}" ) && ( "${MY_DATADIR}" != "${old_MY_DATADIR}" ) ]]; then |
|
|
839 | local MY_DATADIR_s="$(strip_duplicate_slashes ${ROOT}/${MY_DATADIR})" |
|
|
840 | local old_MY_DATADIR_s="$(strip_duplicate_slashes ${ROOT}/${old_MY_DATADIR})" |
|
|
841 | |
|
|
842 | if [[ -d "${old_MY_DATADIR_s}" ]]; then |
|
|
843 | if [[ -d "${MY_DATADIR_s}" ]]; then |
|
|
844 | ewarn "Both ${old_MY_DATADIR_s} and ${MY_DATADIR_s} exist" |
|
|
845 | ewarn "Attempting to use ${MY_DATADIR_s} and preserving ${old_MY_DATADIR_s}" |
|
|
846 | else |
|
|
847 | elog "Moving MY_DATADIR from ${old_MY_DATADIR_s} to ${MY_DATADIR_s}" |
|
|
848 | mv --strip-trailing-slashes -T "${old_MY_DATADIR_s}" "${MY_DATADIR_s}" \ |
|
|
849 | || die "Moving MY_DATADIR failed" |
|
|
850 | fi |
|
|
851 | else |
|
|
852 | ewarn "Previous MY_DATADIR (${old_MY_DATADIR_s}) does not exist" |
|
|
853 | if [[ -d "${MY_DATADIR_s}" ]]; then |
|
|
854 | ewarn "Attempting to use ${MY_DATADIR_s}" |
|
|
855 | else |
|
|
856 | eerror "New MY_DATADIR (${MY_DATADIR_s}) does not exist" |
|
|
857 | die "Configuration Failed! Please reinstall ${CATEGORY}/${PN}" |
|
|
858 | fi |
|
|
859 | fi |
| 726 | fi |
860 | fi |
| 727 | |
861 | |
| 728 | local pwd1="a" |
862 | local pwd1="a" |
| 729 | local pwd2="b" |
863 | local pwd2="b" |
| 730 | local maxtry=5 |
864 | local maxtry=5 |
| 731 | |
865 | |
| 732 | if [[ -d "${ROOT}/${DATADIR}/mysql" ]] ; then |
866 | if [[ -d "${ROOT}/${MY_DATADIR}/mysql" ]] ; then |
| 733 | ewarn "You have already a MySQL database in place." |
867 | ewarn "You have already a MySQL database in place." |
| 734 | ewarn "(${ROOT}/${DATADIR}/*)" |
868 | ewarn "(${ROOT}/${MY_DATADIR}/*)" |
| 735 | ewarn "Please rename or delete it if you wish to replace it." |
869 | ewarn "Please rename or delete it if you wish to replace it." |
| 736 | die "MySQL database already exists!" |
870 | die "MySQL database already exists!" |
| 737 | fi |
871 | fi |
|
|
872 | |
|
|
873 | # Bug #213475 - MySQL _will_ object strenously if your machine is named |
|
|
874 | # localhost. Also causes weird failures. |
|
|
875 | [[ "${HOSTNAME}" == "localhost" ]] && die "Your machine must NOT be named localhost" |
| 738 | |
876 | |
| 739 | einfo "Creating the mysql database and setting proper" |
877 | einfo "Creating the mysql database and setting proper" |
| 740 | einfo "permissions on it ..." |
878 | einfo "permissions on it ..." |
| 741 | |
879 | |
| 742 | einfo "Insert a password for the mysql 'root' user" |
880 | einfo "Insert a password for the mysql 'root' user" |
| … | |
… | |
| 758 | && cp "${help_tables}" "${TMPDIR}/fill_help_tables.sql" \ |
896 | && cp "${help_tables}" "${TMPDIR}/fill_help_tables.sql" \ |
| 759 | || touch "${TMPDIR}/fill_help_tables.sql" |
897 | || touch "${TMPDIR}/fill_help_tables.sql" |
| 760 | help_tables="${TMPDIR}/fill_help_tables.sql" |
898 | help_tables="${TMPDIR}/fill_help_tables.sql" |
| 761 | |
899 | |
| 762 | pushd "${TMPDIR}" &>/dev/null |
900 | pushd "${TMPDIR}" &>/dev/null |
| 763 | "${ROOT}/usr/bin/mysql_install_db" | grep -B5 -A999 -i "ERROR" |
901 | "${ROOT}/usr/bin/mysql_install_db" >"${TMPDIR}"/mysql_install_db.log 2>&1 |
|
|
902 | if [ $? -ne 0 ]; then |
|
|
903 | grep -B5 -A999 -i "ERROR" "${TMPDIR}"/mysql_install_db.log 1>&2 |
|
|
904 | die "Failed to run mysql_install_db. Please review /var/log/mysql/mysqld.err AND ${TMPDIR}/mysql_install_db.log" |
|
|
905 | fi |
| 764 | popd &>/dev/null |
906 | popd &>/dev/null |
| 765 | [[ -f "${ROOT}/${DATADIR}/mysql/user.frm" ]] \ |
907 | [[ -f "${ROOT}/${MY_DATADIR}/mysql/user.frm" ]] \ |
| 766 | || die "MySQL databases not installed" |
908 | || die "MySQL databases not installed" |
| 767 | chown -R mysql:mysql "${ROOT}/${DATADIR}" 2> /dev/null |
909 | chown -R mysql:mysql "${ROOT}/${MY_DATADIR}" 2>/dev/null |
| 768 | chmod 0750 "${ROOT}/${DATADIR}" 2> /dev/null |
910 | chmod 0750 "${ROOT}/${MY_DATADIR}" 2>/dev/null |
| 769 | |
911 | |
| 770 | if mysql_version_is_at_least "4.1.3" ; then |
912 | if mysql_version_is_at_least "4.1.3" ; then |
| 771 | options="--skip-ndbcluster" |
913 | options="--skip-ndbcluster" |
| 772 | |
914 | |
| 773 | # Filling timezones, see |
915 | # Filling timezones, see |
| … | |
… | |
| 784 | local mysqld="${ROOT}/usr/sbin/mysqld \ |
926 | local mysqld="${ROOT}/usr/sbin/mysqld \ |
| 785 | ${options} \ |
927 | ${options} \ |
| 786 | --user=mysql \ |
928 | --user=mysql \ |
| 787 | --skip-grant-tables \ |
929 | --skip-grant-tables \ |
| 788 | --basedir=${ROOT}/usr \ |
930 | --basedir=${ROOT}/usr \ |
| 789 | --datadir=${ROOT}/${DATADIR} \ |
931 | --datadir=${ROOT}/${MY_DATADIR} \ |
| 790 | --skip-innodb \ |
932 | --skip-innodb \ |
| 791 | --skip-bdb \ |
933 | --skip-bdb \ |
| 792 | --skip-networking \ |
934 | --skip-networking \ |
| 793 | --max_allowed_packet=8M \ |
935 | --max_allowed_packet=8M \ |
| 794 | --net_buffer_length=16K \ |
936 | --net_buffer_length=16K \ |
| … | |
… | |
| 824 | wait %1 |
966 | wait %1 |
| 825 | einfo "Done" |
967 | einfo "Done" |
| 826 | } |
968 | } |
| 827 | |
969 | |
| 828 | mysql_pkg_postrm() { |
970 | mysql_pkg_postrm() { |
| 829 | : #mysql_lib_symlinks |
971 | : # mysql_lib_symlinks "${D}" |
| 830 | } |
972 | } |