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