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