| 1 | # Copyright 1999-2005 Gentoo Foundation |
1 | # Copyright 1999-2006 Gentoo Foundation |
| 2 | # Distributed under the terms of the GNU General Public License v2 |
2 | # Distributed under the terms of the GNU General Public License v2 |
| 3 | # $Header: /var/cvsroot/gentoo-x86/eclass/mysql.eclass,v 1.21 2006/03/03 01:33:07 vivo Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/mysql.eclass,v 1.43 2006/10/23 12:26:45 vivo Exp $ |
| 4 | |
4 | |
| 5 | # Author: Francesco Riosa <vivo at gentoo.org> |
5 | # Author: Francesco Riosa <vivo@gentoo.org> |
| 6 | # Maintainer: Francesco Riosa <vivo at gentoo.org> |
6 | # Maintainer: Luca Longinotti <chtekk@gentoo.org> |
| 7 | |
7 | |
|
|
8 | # Both MYSQL_VERSION_ID and MYSQL_PATCHSET_REV must be set in the ebuild too |
|
|
9 | # Note that MYSQL_VERSION_ID must be empty !!! |
|
|
10 | |
|
|
11 | # MYSQL_VERSION_ID will be: |
|
|
12 | # 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 |
|
|
14 | # depend on this variable. |
|
|
15 | # In particular, the code below transforms a $PVR like "5.0.18-r3" in "5001803" |
|
|
16 | |
|
|
17 | if [[ -z "${MYSQL_VERSION_ID}" ]] ; then |
|
|
18 | tpv=( ${PV//[-._]/ } ) ; tpv[3]="${PVR:${#PV}}" ; tpv[3]="${tpv[3]##*-r}" |
|
|
19 | for vatom in 0 1 2 3 ; do |
|
|
20 | # pad to length 2 |
|
|
21 | tpv[${vatom}]="00${tpv[${vatom}]}" |
|
|
22 | MYSQL_VERSION_ID="${MYSQL_VERSION_ID}${tpv[${vatom}]:0-2}" |
|
|
23 | done |
|
|
24 | # strip leading "0" (otherwise it's considered an octal number by BASH) |
|
|
25 | MYSQL_VERSION_ID=${MYSQL_VERSION_ID##"0"} |
|
|
26 | fi |
|
|
27 | |
| 8 | inherit eutils flag-o-matic gnuconfig mysql_fx |
28 | inherit eutils flag-o-matic gnuconfig autotools mysql_fx |
| 9 | |
29 | |
| 10 | #major, minor only in the slot |
30 | # Be warned, *DEPEND are version-dependant |
| 11 | SLOT=$(( ${MYSQL_VERSION_ID} / 10000 )) |
31 | DEPEND="ssl? ( >=dev-libs/openssl-0.9.6d ) |
|
|
32 | userland_GNU? ( sys-process/procps ) |
|
|
33 | >=sys-apps/sed-4 |
|
|
34 | >=sys-apps/texinfo-4.7-r1 |
|
|
35 | >=sys-libs/readline-4.1 |
|
|
36 | >=sys-libs/zlib-1.2.3" |
| 12 | |
37 | |
|
|
38 | mysql_version_is_at_least "5.01.00.00" \ |
|
|
39 | || DEPEND="${DEPEND} berkdb? ( sys-apps/ed )" |
|
|
40 | |
|
|
41 | RDEPEND="${DEPEND} selinux? ( sec-policy/selinux-mysql )" |
|
|
42 | |
|
|
43 | # dev-perl/DBD-mysql is needed by some scripts installed by MySQL |
|
|
44 | PDEPEND="perl? ( >=dev-perl/DBD-mysql-2.9004 )" |
|
|
45 | |
| 13 | # shorten the path because the socket path length must be shorter than 107 chars |
46 | # Shorten the path because the socket path length must be shorter than 107 chars |
| 14 | # and we will run a mysql server during test phase |
47 | # and we will run a mysql server during test phase |
| 15 | S="${WORKDIR}/${PN}" |
48 | S="${WORKDIR}/${PN/_alpha/-bk-}" # BitKeeper ebuilds |
| 16 | |
49 | |
|
|
50 | # Define $MY_FIXED_PV for MySQL patchsets |
|
|
51 | MY_FIXED_PV="${PV/_alpha/}" |
|
|
52 | #MY_FIXED_PV="${MY_FIXED_PV/_beta/}" |
|
|
53 | #MY_FIXED_PV="${MY_FIXED_PV/_rc/}" |
|
|
54 | |
|
|
55 | MY_P="${P/_/-}" |
|
|
56 | MY_P="${MY_P/-alpha/-bk-}" # BitKeeper ebuilds |
|
|
57 | |
|
|
58 | # Define correct SRC_URIs |
|
|
59 | SRC_URI="mirror://mysql/Downloads/MySQL-${PV%.*}/${MY_P}${MYSQL_RERELEASE}.tar.gz" |
|
|
60 | if [[ -n "${MYSQL_PATCHSET_REV}" ]] ; then |
|
|
61 | MYSQL_PATCHSET_FILENAME="${PN}-patchset-${MY_FIXED_PV}-r${MYSQL_PATCHSET_REV}.tar.bz2" |
|
|
62 | # We add the Gentoo mirror here, as we only use primaryuri for the MySQL tarball |
|
|
63 | SRC_URI="${SRC_URI} http://gentoo.longitekk.com/${MYSQL_PATCHSET_FILENAME}" |
|
|
64 | fi |
|
|
65 | |
| 17 | DESCRIPTION="A fast, multi-threaded, multi-user SQL database server" |
66 | DESCRIPTION="A fast, multi-threaded, multi-user SQL database server." |
| 18 | HOMEPAGE="http://www.mysql.com/" |
67 | HOMEPAGE="http://www.mysql.com/" |
| 19 | NEWP="${P/_/-}" |
68 | SLOT="0" |
| 20 | SRC_URI="mirror://mysql/Downloads/MySQL-${PV%.*}/${NEWP}.tar.gz |
|
|
| 21 | mirror://gentoo/mysql-extras-${MY_EXTRAS_VER}.tar.bz2" |
|
|
| 22 | LICENSE="GPL-2" |
69 | LICENSE="GPL-2" |
| 23 | IUSE="big-tables berkdb debug embedded minimal perl selinux srvdir ssl static" |
70 | IUSE="big-tables debug embedded minimal perl selinux srvdir ssl static" |
| 24 | RESTRICT="primaryuri confcache" |
71 | RESTRICT="confcache" |
| 25 | DEPEND="app-admin/eselect-mysql" |
72 | |
|
|
73 | mysql_version_is_at_least "4.01.00.00" \ |
|
|
74 | && IUSE="${IUSE} latin1" |
| 26 | |
75 | |
| 27 | mysql_version_is_at_least "4.01.03.00" \ |
76 | mysql_version_is_at_least "4.01.03.00" \ |
| 28 | && IUSE="${IUSE} cluster extraengine" |
77 | && IUSE="${IUSE} cluster extraengine" |
| 29 | |
78 | |
| 30 | mysql_version_is_at_least "5.00.00.00" \ |
79 | mysql_version_is_at_least "5.00.00.00" \ |
| … | |
… | |
| 34 | && IUSE="${IUSE} max-idx-128" |
83 | && IUSE="${IUSE} max-idx-128" |
| 35 | |
84 | |
| 36 | mysql_version_is_at_least "5.01.00.00" \ |
85 | mysql_version_is_at_least "5.01.00.00" \ |
| 37 | && IUSE="${IUSE} innodb" |
86 | && IUSE="${IUSE} innodb" |
| 38 | |
87 | |
|
|
88 | mysql_version_is_at_least "5.01.00.00" \ |
|
|
89 | || IUSE="${IUSE} berkdb" |
|
|
90 | |
| 39 | EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_preinst pkg_postinst pkg_config pkg_prerm pkg_postrm |
91 | EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_preinst \ |
|
|
92 | pkg_postinst pkg_config pkg_postrm |
|
|
93 | |
|
|
94 | # |
|
|
95 | # HELPER FUNCTIONS: |
|
|
96 | # |
| 40 | |
97 | |
| 41 | # void mysql_init_vars() |
98 | # void mysql_init_vars() |
| 42 | # |
99 | # |
| 43 | # initialize global variables |
100 | # Initialize global variables |
| 44 | # 2005-11-19 <vivo at gentoo.org> |
101 | # 2005-11-19 <vivo@gentoo.org> |
|
|
102 | |
| 45 | mysql_init_vars() { |
103 | mysql_init_vars() { |
| 46 | |
|
|
| 47 | if [[ ${SLOT} -eq 0 ]] ; then |
|
|
| 48 | MY_SUFFIX="" |
|
|
| 49 | else |
|
|
| 50 | MY_SUFFIX=${MY_SUFFIX:-"-${SLOT}"} |
|
|
| 51 | fi |
|
|
| 52 | MY_SHAREDSTATEDIR=${MY_SHAREDSTATEDIR:-"/usr/share/mysql${MY_SUFFIX}"} |
104 | MY_SHAREDSTATEDIR=${MY_SHAREDSTATEDIR="/usr/share/mysql"} |
| 53 | MY_SYSCONFDIR=${MY_SYSCONFDIR="/etc/mysql${MY_SUFFIX}"} |
105 | MY_SYSCONFDIR=${MY_SYSCONFDIR="/etc/mysql"} |
| 54 | MY_LIBDIR=${MY_LIBDIR="/usr/$(get_libdir)/mysql${MY_SUFFIX}"} |
106 | MY_LIBDIR=${MY_LIBDIR="/usr/$(get_libdir)/mysql"} |
| 55 | MY_LOCALSTATEDIR=${MY_LOCALSTATEDIR="/var/lib/mysql${MY_SUFFIX}"} |
107 | MY_LOCALSTATEDIR=${MY_LOCALSTATEDIR="/var/lib/mysql"} |
| 56 | MY_LOGDIR=${MY_LOGDIR="/var/log/mysql${MY_SUFFIX}"} |
108 | MY_LOGDIR=${MY_LOGDIR="/var/log/mysql"} |
| 57 | MY_INCLUDEDIR=${MY_INCLUDEDIR="/usr/include/mysql${MY_SUFFIX}"} |
109 | MY_INCLUDEDIR=${MY_INCLUDEDIR="/usr/include/mysql"} |
| 58 | |
110 | |
| 59 | if [ -z "${DATADIR}" ]; then |
111 | if [[ -z "${DATADIR}" ]] ; then |
| 60 | DATADIR="" |
112 | DATADIR="" |
| 61 | if [ -f "${MY_SYSCONFDIR}/my.cnf" ] ; then |
113 | if [[ -f "${MY_SYSCONFDIR}/my.cnf" ]] ; then |
| 62 | DATADIR=`"my_print_defaults${MY_SUFFIX}" mysqld 2>/dev/null | sed -ne '/datadir/s|^--datadir=||p' | tail -n1` |
114 | DATADIR=`"my_print_defaults" mysqld 2>/dev/null \ |
|
|
115 | | sed -ne '/datadir/s|^--datadir=||p' \ |
|
|
116 | | tail -n1` |
| 63 | if [ -z "${DATADIR}" ]; then |
117 | if [[ -z "${DATADIR}" ]] ; then |
| 64 | if useq "srvdir" ; then |
118 | if useq "srvdir" ; then |
| 65 | DATADIR="${ROOT}/srv/localhost/mysql${MY_SUFFIX}/datadir" |
119 | DATADIR="${ROOT}/srv/localhost/mysql/datadir" |
| 66 | else |
120 | else |
| 67 | DATADIR=`grep ^datadir "${MY_SYSCONFDIR}/my.cnf" | sed -e 's/.*=\s*//'` |
121 | DATADIR=`grep ^datadir "${MY_SYSCONFDIR}/my.cnf" \ |
|
|
122 | | sed -e 's/.*=\s*//'` |
| 68 | fi |
123 | fi |
| 69 | fi |
124 | fi |
| 70 | fi |
125 | fi |
| 71 | if [ -z "${DATADIR}" ]; then |
126 | if [[ -z "${DATADIR}" ]] ; then |
| 72 | if useq "srvdir" ; then |
127 | if useq "srvdir" ; then |
| 73 | DATADIR="${ROOT}/srv/localhost/mysql${MY_SUFFIX}/datadir" |
128 | DATADIR="${ROOT}/srv/localhost/mysql/datadir" |
| 74 | else |
129 | else |
| 75 | DATADIR="${MY_LOCALSTATEDIR}" |
130 | DATADIR="${MY_LOCALSTATEDIR}" |
| 76 | fi |
131 | fi |
| 77 | einfo "Using default DATADIR" |
132 | einfo "Using default DATADIR" |
| 78 | fi |
133 | fi |
| 79 | einfo "MySQL DATADIR is ${DATADIR}" |
134 | elog "MySQL DATADIR is ${DATADIR}" |
| 80 | |
135 | |
| 81 | if [ -z "${PREVIOUS_DATADIR}" ] ; then |
136 | if [[ -z "${PREVIOUS_DATADIR}" ]] ; then |
| 82 | if [ -a "${DATADIR}" ] ; then |
137 | if [[ -e "${DATADIR}" ]] ; then |
| 83 | ewarn "Previous datadir found, it's YOUR job to change" |
138 | elog "Previous datadir found, it's YOUR job to change" |
| 84 | ewarn "ownership and have care of it" |
139 | elog "ownership and take care of it" |
| 85 | PREVIOUS_DATADIR="yes" |
140 | PREVIOUS_DATADIR="yes" |
| 86 | export PREVIOUS_DATADIR |
|
|
| 87 | else |
141 | else |
| 88 | PREVIOUS_DATADIR="no" |
142 | PREVIOUS_DATADIR="no" |
| 89 | export PREVIOUS_DATADIR |
|
|
| 90 | fi |
143 | fi |
| 91 | fi |
144 | export PREVIOUS_DATADIR |
| 92 | fi |
145 | fi |
|
|
146 | fi |
| 93 | |
147 | |
| 94 | export MY_SUFFIX MY_SHAREDSTATEDIR MY_SYSCONFDIR |
148 | export MY_SHAREDSTATEDIR MY_SYSCONFDIR |
| 95 | export MY_LIBDIR MY_LOCALSTATEDIR MY_LOGDIR |
149 | export MY_LIBDIR MY_LOCALSTATEDIR MY_LOGDIR |
| 96 | export MY_INCLUDEDIR |
150 | export MY_INCLUDEDIR |
| 97 | export DATADIR |
151 | export DATADIR |
| 98 | } |
152 | } |
| 99 | |
153 | |
| 100 | mysql_pkg_setup() { |
154 | configure_minimal() { |
|
|
155 | # These are things we exclude from a minimal build, please |
|
|
156 | # note that the server actually does get built and installed, |
|
|
157 | # but we then delete it before packaging. |
|
|
158 | local minimal_exclude_list="server embedded-server extra-tools innodb bench berkeley-db row-based-replication" |
| 101 | |
159 | |
| 102 | enewgroup mysql 60 || die "problem adding group mysql" |
160 | for i in ${minimal_exclude_list} ; do |
| 103 | enewuser mysql 60 -1 /dev/null mysql \ |
161 | myconf="${myconf} --without-${i}" |
| 104 | || die "problem adding user mysql" |
|
|
| 105 | } |
|
|
| 106 | |
|
|
| 107 | mysql_src_unpack() { |
|
|
| 108 | |
|
|
| 109 | mysql_init_vars |
|
|
| 110 | |
|
|
| 111 | if useq static && useq ssl; then |
|
|
| 112 | local msg="MySQL does not support building statically with SSL support" |
|
|
| 113 | eerror "${msg}" |
|
|
| 114 | die "${msg}" |
|
|
| 115 | fi |
|
|
| 116 | |
|
|
| 117 | if mysql_version_is_at_least "4.01.03.00" \ |
|
|
| 118 | && useq cluster \ |
|
|
| 119 | || useq extraengine \ |
|
|
| 120 | && useq minimal ; then |
|
|
| 121 | die "USEs cluster, extraengine conflicts with \"minimal\"" |
|
|
| 122 | fi |
|
|
| 123 | |
|
|
| 124 | unpack ${A} || die |
|
|
| 125 | |
|
|
| 126 | mv -f "${WORKDIR}/${NEWP}" "${S}" |
|
|
| 127 | cd "${S}" |
|
|
| 128 | |
|
|
| 129 | EPATCH_SUFFIX="patch" |
|
|
| 130 | mkdir -p "${EPATCH_SOURCE}" || die "unable to create epatch directory" |
|
|
| 131 | mysql_mv_patches |
|
|
| 132 | epatch || die "failed to apply all patches" |
|
|
| 133 | |
|
|
| 134 | # additional check, remove bundled zlib |
|
|
| 135 | rm -f "${S}/zlib/"*.[ch] |
|
|
| 136 | sed -i -e "s/zlib\/Makefile dnl/dnl zlib\/Makefile/" "${S}/configure.in" |
|
|
| 137 | rm -f scripts/mysqlbug |
|
|
| 138 | |
|
|
| 139 | # Make charsets install in the right place |
|
|
| 140 | find . -name 'Makefile.am' \ |
|
|
| 141 | -exec sed --in-place -e 's!$(pkgdatadir)!'${MY_SHAREDSTATEDIR}'!g' {} \; |
|
|
| 142 | |
|
|
| 143 | # Manage mysqlmanager |
|
|
| 144 | mysql_version_is_at_least "5.00.15.00" \ |
|
|
| 145 | && sed -i -e "s!@GENTOO_EXT@!${MY_SUFFIX}!g" \ |
|
|
| 146 | -e "s!@GENTOO_SOCK_PATH@!var/run/mysqld!g" \ |
|
|
| 147 | "${S}/server-tools/instance-manager/Makefile.am" |
|
|
| 148 | |
|
|
| 149 | # remove what need to be recreated, so we are sure it's actually done |
|
|
| 150 | find . -name Makefile -o -name Makefile.in -o -name configure -exec rm -f {} \; |
|
|
| 151 | rm ltmain.sh |
|
|
| 152 | |
|
|
| 153 | local rebuilddirlist d buildstep bdbdir |
|
|
| 154 | |
|
|
| 155 | if mysql_version_is_at_least "5.01.00.00" ; then |
|
|
| 156 | rebuilddirlist=". storage/innobase" |
|
|
| 157 | bdbdir='storage/bdb/dist' |
|
|
| 158 | else |
|
|
| 159 | rebuilddirlist=". innobase" |
|
|
| 160 | bdbdir='bdb/dist' |
|
|
| 161 | fi |
|
|
| 162 | |
|
|
| 163 | for d in ${rebuilddirlist}; do |
|
|
| 164 | einfo "reconfiguring dir \"${d}\"" |
|
|
| 165 | pushd "${d}" &>/dev/null |
|
|
| 166 | AT_GNUCONF_UPDATE="yes" eautoreconf |
|
|
| 167 | popd &>/dev/null |
|
|
| 168 | done |
162 | done |
| 169 | |
163 | myconf="${myconf} --with-extra-charsets=none" |
| 170 | #TODO berkdb in 5.1 need to be worked on |
|
|
| 171 | if useq berkdb && ! mysql_check_version_range "5.01.00.00 to 5.01.08.99" |
|
|
| 172 | then |
|
|
| 173 | [[ -w "${bdbdir}/ltmain.sh" ]] && cp -f ltmain.sh "${bdbdir}/ltmain.sh" |
|
|
| 174 | pushd "${bdbdir}" && sh s_all || die "failed bdb reconfigure" &>/dev/null |
|
|
| 175 | popd &>/dev/null |
|
|
| 176 | fi |
|
|
| 177 | |
|
|
| 178 | } |
164 | } |
| 179 | |
165 | |
| 180 | mysql_src_compile() { |
166 | configure_common() { |
|
|
167 | myconf="${myconf} $(use_with big-tables)" |
|
|
168 | myconf="${myconf} --enable-local-infile" |
|
|
169 | myconf="${myconf} --with-extra-charsets=all" |
|
|
170 | myconf="${myconf} --with-mysqld-user=mysql" |
|
|
171 | myconf="${myconf} --with-server" |
|
|
172 | myconf="${myconf} --with-unix-socket-path=/var/run/mysqld/mysqld.sock" |
|
|
173 | myconf="${myconf} --without-libwrap" |
| 181 | |
174 | |
| 182 | mysql_init_vars |
|
|
| 183 | local myconf |
|
|
| 184 | |
|
|
| 185 | if useq static ; then |
175 | if useq "static" ; then |
| 186 | myconf="${myconf} --with-mysqld-ldflags=-all-static" |
176 | myconf="${myconf} --with-mysqld-ldflags=-all-static" |
| 187 | myconf="${myconf} --with-client-ldflags=-all-static" |
177 | myconf="${myconf} --with-client-ldflags=-all-static" |
| 188 | myconf="${myconf} --disable-shared" |
178 | myconf="${myconf} --disable-shared" |
| 189 | else |
179 | else |
| 190 | myconf="${myconf} --enable-shared --enable-static" |
180 | myconf="${myconf} --enable-shared --enable-static" |
| 191 | fi |
181 | fi |
| 192 | |
182 | |
| 193 | #myconf="${myconf} `use_with tcpd libwrap`" |
183 | if useq "debug" ; then |
|
|
184 | myconf="${myconf} --with-debug=full" |
|
|
185 | else |
|
|
186 | myconf="${myconf} --without-debug" |
|
|
187 | mysql_version_is_at_least "4.01.03.00" \ |
|
|
188 | && useq "cluster" \ |
|
|
189 | && myconf="${myconf} --without-ndb-debug" |
|
|
190 | fi |
|
|
191 | |
|
|
192 | if mysql_version_is_at_least "4.01.00.00" && ! useq "latin1" ; then |
|
|
193 | myconf="${myconf} --with-charset=utf8" |
|
|
194 | myconf="${myconf} --with-collation=utf8_general_ci" |
|
|
195 | else |
|
|
196 | myconf="${myconf} --with-charset=latin1" |
|
|
197 | myconf="${myconf} --with-collation=latin1_swedish_ci" |
|
|
198 | fi |
|
|
199 | |
|
|
200 | if useq "embedded" ; then |
|
|
201 | myconf="${myconf} --with-embedded-privilege-control" |
|
|
202 | myconf="${myconf} --with-embedded-server" |
|
|
203 | else |
|
|
204 | myconf="${myconf} --without-embedded-privilege-control" |
|
|
205 | myconf="${myconf} --without-embedded-server" |
|
|
206 | fi |
|
|
207 | |
|
|
208 | } |
|
|
209 | |
|
|
210 | configure_40_41_50() { |
|
|
211 | myconf="${myconf} $(use_with perl bench)" |
|
|
212 | myconf="${myconf} --enable-assembler" |
|
|
213 | myconf="${myconf} --with-extra-tools" |
|
|
214 | myconf="${myconf} --with-innodb" |
| 194 | myconf="${myconf} --without-libwrap" |
215 | myconf="${myconf} --without-readline" |
|
|
216 | mysql_version_is_at_least "5.00.00.00" || myconf="${myconf} $(use_with raid)" |
| 195 | |
217 | |
| 196 | if useq ssl ; then |
218 | if useq "ssl" ; then |
| 197 | # --with-vio is not needed anymore, it's on by default and |
219 | # --with-vio is not needed anymore, it's on by default and |
| 198 | # has been removed from configure |
220 | # has been removed from configure |
| 199 | mysql_version_is_at_least "5.00.04.00" || myconf="${myconf} --with-vio" |
221 | mysql_version_is_at_least "5.00.04.00" || myconf="${myconf} --with-vio" |
| 200 | if mysql_version_is_at_least "5.00.06.00" ; then |
222 | if mysql_version_is_at_least "5.00.06.00" ; then |
| 201 | # yassl-0.96 is young break with gcc-4.0 || amd64 |
|
|
| 202 | #myconf="${myconf} --with-yassl" |
223 | # myconf="${myconf} --with-yassl" |
| 203 | myconf="${myconf} --with-openssl" |
224 | myconf="${myconf} --with-openssl" |
| 204 | else |
225 | else |
| 205 | myconf="${myconf} --with-openssl" |
226 | myconf="${myconf} --with-openssl" |
| 206 | fi |
227 | fi |
| 207 | else |
228 | else |
| 208 | myconf="${myconf} --without-openssl" |
229 | myconf="${myconf} --without-openssl" |
| 209 | fi |
230 | fi |
| 210 | |
231 | |
| 211 | if useq debug; then |
232 | # The following fix is due to a bug with bdb on SPARC's. See: |
|
|
233 | # http://www.geocrawler.com/mail/msg.php3?msg_id=4754814&list=8 |
|
|
234 | # It comes down to non-64-bit safety problems. |
|
|
235 | if useq "sparc" || useq "alpha" || useq "hppa" || useq "mips" || useq "amd64" ; then |
|
|
236 | elog "Berkeley DB support was disabled due to incompatible arch" |
| 212 | myconf="${myconf} --with-debug=full" |
237 | myconf="${myconf} --without-berkeley-db" |
| 213 | else |
238 | else |
| 214 | myconf="${myconf} --without-debug" |
239 | if useq "berkdb" ; then |
| 215 | mysql_version_is_at_least "4.01.03.00" && useq cluster && myconf="${myconf} --without-ndb-debug" |
|
|
| 216 | fi |
|
|
| 217 | |
|
|
| 218 | # benchmarking stuff needs perl |
|
|
| 219 | # and shouldn't be bothered with on minimal builds |
|
|
| 220 | if useq perl && ! useq minimal; then |
|
|
| 221 | myconf="${myconf} --with-bench" |
240 | myconf="${myconf} --with-berkeley-db=./bdb" |
| 222 | else |
|
|
| 223 | myconf="${myconf} --without-bench" |
|
|
| 224 | fi |
|
|
| 225 | |
|
|
| 226 | # these are things we exclude from a minimal build |
|
|
| 227 | # note that the server actually does get built and installed |
|
|
| 228 | # but we then delete it before packaging. |
|
|
| 229 | local minimal_exclude_list="server embedded-server extra-tools innodb" |
|
|
| 230 | if ! useq minimal; then |
|
|
| 231 | for i in ${minimal_exclude_list}; do |
|
|
| 232 | myconf="${myconf} --with-${i}" |
|
|
| 233 | done |
|
|
| 234 | |
|
|
| 235 | if useq static ; then |
|
|
| 236 | myconf="${myconf} --without-raid" |
|
|
| 237 | ewarn "disabling raid support, has problem with static" |
|
|
| 238 | else |
241 | else |
| 239 | if mysql_version_is_at_least "5.00.00.00" ; then |
|
|
| 240 | myconf="${myconf} --without-raid" |
|
|
| 241 | else |
|
|
| 242 | myconf="${myconf} `use_with raid`" |
|
|
| 243 | fi |
|
|
| 244 | fi |
|
|
| 245 | |
|
|
| 246 | if ! mysql_version_is_at_least "5.00.00.00" ; then |
|
|
| 247 | if mysql_version_is_at_least "4.01.00.00" ; then |
|
|
| 248 | myconf="${myconf} --with-charset=utf8" |
|
|
| 249 | myconf="${myconf} --with-collation=utf8_general_ci" |
|
|
| 250 | else |
|
|
| 251 | myconf="${myconf} --with-charset=latin1" |
|
|
| 252 | myconf="${myconf} --with-collation=latin1_swedish_ci" |
|
|
| 253 | fi |
|
|
| 254 | fi |
|
|
| 255 | |
|
|
| 256 | # optional again from 2005-12-05 |
|
|
| 257 | if mysql_version_is_at_least "5.01.00.00" ; then |
|
|
| 258 | myconf="${myconf} $(use_with innodb)" |
|
|
| 259 | else |
|
|
| 260 | myconf="${myconf} --with-innodb" |
|
|
| 261 | fi |
|
|
| 262 | |
|
|
| 263 | # lots of chars |
|
|
| 264 | myconf="${myconf} --with-extra-charsets=all" |
|
|
| 265 | |
|
|
| 266 | #The following fix is due to a bug with bdb on sparc's. See: |
|
|
| 267 | #http://www.geocrawler.com/mail/msg.php3?msg_id=4754814&list=8 |
|
|
| 268 | # it comes down to non-64-bit safety problems |
|
|
| 269 | if useq sparc || useq alpha || useq hppa || useq mips || useq amd64 \ |
|
|
| 270 | || mysql_check_version_range "5.01.00.00 to 5.01.06.99" |
|
|
| 271 | then |
|
|
| 272 | ewarn "bdb berkeley-db disabled due to arch or version" |
|
|
| 273 | myconf="${myconf} --without-berkeley-db" |
242 | myconf="${myconf} --without-berkeley-db" |
| 274 | else |
243 | fi |
| 275 | #TODO berkdb in 5.1 need to be worked on |
|
|
| 276 | useq berkdb && \ |
|
|
| 277 | ! mysql_check_version_range "5.01.00.00 to 5.01.08.99" \ |
|
|
| 278 | && myconf="${myconf} --with-berkeley-db=./bdb" \ |
|
|
| 279 | || myconf="${myconf} --without-berkeley-db" |
|
|
| 280 | fi |
244 | fi |
| 281 | |
245 | |
| 282 | if mysql_version_is_at_least "4.01.03.00" ; then |
246 | if mysql_version_is_at_least "4.01.03.00" ; then |
| 283 | #myconf="${myconf} $(use_with geometry)" |
|
|
| 284 | myconf="${myconf} --with-geometry" |
247 | myconf="${myconf} --with-geometry" |
| 285 | myconf="${myconf} $(use_with cluster ndbcluster)" |
248 | myconf="${myconf} $(use_with cluster ndbcluster)" |
| 286 | fi |
249 | fi |
| 287 | |
250 | |
| 288 | mysql_version_is_at_least "4.01.11.00" && myconf="${myconf} `use_with big-tables`" |
|
|
| 289 | |
|
|
| 290 | mysql_version_is_at_least "5.01.06.00" && myconf="${myconf} --with-ndb-binlog" |
|
|
| 291 | |
|
|
| 292 | if useq embedded ; then |
|
|
| 293 | #REMIND, need the privilege control enabled ? |
|
|
| 294 | myconf="${myconf} --without-embedded-privilege-control" |
|
|
| 295 | myconf="${myconf} --with-embedded-server" |
|
|
| 296 | else |
|
|
| 297 | myconf="${myconf} --without-embedded-privilege-control" |
|
|
| 298 | myconf="${myconf} --without-embedded-server" |
|
|
| 299 | fi |
|
|
| 300 | else |
|
|
| 301 | for i in ${minimal_exclude_list}; do |
|
|
| 302 | myconf="${myconf} --without-${i}" |
|
|
| 303 | done |
|
|
| 304 | myconf="${myconf} --without-berkeley-db" |
|
|
| 305 | myconf="${myconf} --with-extra-charsets=none" |
|
|
| 306 | fi |
|
|
| 307 | |
|
|
| 308 | if mysql_version_is_at_least "4.01.03.00" && useq extraengine; then |
251 | if mysql_version_is_at_least "4.01.03.00" && useq "extraengine" ; then |
| 309 | # http://dev.mysql.com/doc/mysql/en/archive-storage-engine.html |
252 | # http://dev.mysql.com/doc/mysql/en/archive-storage-engine.html |
| 310 | myconf="${myconf} --with-archive-storage-engine" |
253 | myconf="${myconf} --with-archive-storage-engine" |
|
|
254 | |
| 311 | # http://dev.mysql.com/doc/mysql/en/csv-storage-engine.html |
255 | # http://dev.mysql.com/doc/mysql/en/csv-storage-engine.html |
| 312 | |
|
|
| 313 | mysql_version_is_at_least "4.01.04.00" \ |
|
|
| 314 | && myconf="${myconf} --with-csv-storage-engine" |
256 | myconf="${myconf} --with-csv-storage-engine" |
| 315 | |
257 | |
| 316 | mysql_version_is_at_least "4.01.11.00" \ |
258 | # http://dev.mysql.com/doc/mysql/en/blackhole-storage-engine.html |
| 317 | && myconf="${myconf} --with-blackhole-storage-engine" |
259 | myconf="${myconf} --with-blackhole-storage-engine" |
| 318 | |
260 | |
|
|
261 | # http://dev.mysql.com/doc/mysql/en/federated-storage-engine.html |
| 319 | # http://dev.mysql.com/doc/mysql/en/federated-description.html |
262 | # http://dev.mysql.com/doc/mysql/en/federated-description.html |
| 320 | # http://dev.mysql.com/doc/mysql/en/federated-limitations.html |
263 | # http://dev.mysql.com/doc/mysql/en/federated-limitations.html |
| 321 | if mysql_version_is_at_least "5.00.03.00" ; then |
264 | if mysql_version_is_at_least "5.00.03.00" ; then |
| 322 | einfo "before to use federated engine be sure to read" |
265 | elog "Before using the Federated storage engine, please be sure to read" |
| 323 | einfo "http://dev.mysql.com/doc/refman/5.0/en/federated-limitations.html" |
266 | elog "http://dev.mysql.com/doc/mysql/en/federated-limitations.html" |
| 324 | myconf="${myconf} --with-federated-storage-engine" |
267 | myconf="${myconf} --with-federated-storage-engine" |
| 325 | |
|
|
| 326 | # http://dev.mysql.com/doc/refman/5.1/en/partitioning-overview.html |
|
|
| 327 | if mysql_version_is_at_least "5.01.00.00" ; then |
|
|
| 328 | myconf="${myconf} --with-partition" |
|
|
| 329 | fi |
268 | fi |
| 330 | fi |
|
|
| 331 | |
|
|
| 332 | fi |
269 | fi |
| 333 | |
270 | |
| 334 | mysql_version_is_at_least "5.00.18.00" \ |
271 | mysql_version_is_at_least "5.00.18.00" \ |
| 335 | && useq "max-idx-128" \ |
272 | && useq "max-idx-128" \ |
| 336 | && myconf="${myconf} --with-max-indexes=128" |
273 | && myconf="${myconf} --with-max-indexes=128" |
|
|
274 | } |
| 337 | |
275 | |
| 338 | if mysql_version_is_at_least "5.01.05.00" ; then |
276 | configure_51() { |
|
|
277 | # TODO: !!!! readd --without-readline |
|
|
278 | # the failure depend upon config/ac-macros/readline.m4 checking into |
|
|
279 | # readline.h instead of history.h |
|
|
280 | myconf="${myconf} $(use_with ssl)" |
|
|
281 | myconf="${myconf} --enable-assembler" |
|
|
282 | myconf="${myconf} --with-geometry" |
|
|
283 | myconf="${myconf} --with-readline" |
| 339 | myconf="${myconf} --with-row-based-replication" |
284 | myconf="${myconf} --with-row-based-replication" |
|
|
285 | myconf="${myconf} --with-zlib=/usr/$(get_libdir)" |
|
|
286 | myconf="${myconf} --without-pstack" |
|
|
287 | useq "max-idx-128" && myconf="${myconf} --with-max-indexes=128" |
|
|
288 | |
|
|
289 | # 5.1 introduces a new way to manage storage engines (plugins) |
|
|
290 | # like configuration=none |
|
|
291 | local plugins="csv,myisam,myisammrg,heap" |
|
|
292 | if useq "extraengine" ; then |
|
|
293 | # like configuration=max-no-ndb, archive and example removed in 5.1.11 |
|
|
294 | plugins="${plugins},archive,blackhole,example,federated,ftexample,partition" |
|
|
295 | |
|
|
296 | elog "Before using the Federated storage engine, please be sure to read" |
|
|
297 | elog "http://dev.mysql.com/doc/refman/5.1/en/federated-limitations.html" |
|
|
298 | fi |
|
|
299 | |
|
|
300 | if useq "innodb" ; then |
|
|
301 | plugins="${plugins},innobase" |
|
|
302 | fi |
|
|
303 | |
|
|
304 | # like configuration=max-no-ndb |
|
|
305 | if useq "cluster" ; then |
|
|
306 | plugins="${plugins},ndbcluster" |
|
|
307 | myconf="${myconf} --with-ndb-binlog" |
|
|
308 | fi |
|
|
309 | |
|
|
310 | myconf="${myconf} --with-plugins=${plugins}" |
|
|
311 | } |
|
|
312 | |
|
|
313 | # |
|
|
314 | # EBUILD FUNCTIONS |
|
|
315 | # |
|
|
316 | |
|
|
317 | mysql_pkg_setup() { |
|
|
318 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
|
|
319 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
|
|
320 | |
|
|
321 | if mysql_version_is_at_least "5.01.12.00" && useq "innodb" ; then |
|
|
322 | eerror "InnoDB now uses cmake to build, this is a TODO item, will be fixed shortly!" |
|
|
323 | die "InnoDB now uses cmake to build, this is a TODO item, will be fixed shortly!" |
|
|
324 | fi |
|
|
325 | |
|
|
326 | # Check for USE flag problems in pkg_setup |
|
|
327 | if useq "static" && useq "ssl" ; then |
|
|
328 | eerror "MySQL does not support being built statically with SSL support enabled!" |
|
|
329 | die "MySQL does not support being built statically with SSL support enabled!" |
|
|
330 | fi |
|
|
331 | |
|
|
332 | if ! mysql_version_is_at_least "5.00.00.00" \ |
|
|
333 | && useq "raid" \ |
|
|
334 | && useq "static" ; then |
|
|
335 | eerror "USE flags 'raid' and 'static' conflict, you cannot build MySQL statically" |
|
|
336 | eerror "with RAID support enabled." |
|
|
337 | die "USE flags 'raid' and 'static' conflict!" |
|
|
338 | fi |
|
|
339 | |
|
|
340 | if mysql_version_is_at_least "4.01.03.00" \ |
|
|
341 | && ( useq "cluster" || useq "extraengine" ) \ |
|
|
342 | && useq "minimal" ; then |
|
|
343 | eerror "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
|
|
344 | die "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
|
|
345 | fi |
|
|
346 | |
|
|
347 | mysql_check_version_range "4.00.00.00 to 5.00.99.99" \ |
|
|
348 | && useq "berkdb" \ |
|
|
349 | && elog "Berkeley DB support is deprecated and will be removed in future versions!" |
|
|
350 | } |
|
|
351 | |
|
|
352 | mysql_src_unpack() { |
|
|
353 | # Initialize the proper variables first |
|
|
354 | mysql_init_vars |
|
|
355 | |
|
|
356 | unpack ${A} |
|
|
357 | |
|
|
358 | mv -f "${WORKDIR}/${MY_P}${MYSQL_RERELEASE}" "${S}" |
|
|
359 | cd "${S}" |
|
|
360 | |
|
|
361 | # Apply the patches for this MySQL version |
|
|
362 | if [[ -d "${WORKDIR}/${MY_FIXED_PV}" ]] ; then |
|
|
363 | EPATCH_SOURCE="${WORKDIR}/${MY_FIXED_PV}" EPATCH_SUFFIX="patch" epatch |
|
|
364 | fi |
|
|
365 | |
|
|
366 | # Additional checks, remove bundled zlib |
|
|
367 | rm -f "${S}/zlib/"*.[ch] |
|
|
368 | sed -i -e "s/zlib\/Makefile dnl/dnl zlib\/Makefile/" "${S}/configure.in" |
|
|
369 | rm -f "scripts/mysqlbug" |
|
|
370 | |
|
|
371 | # Make charsets install in the right place |
|
|
372 | find . -name 'Makefile.am' \ |
|
|
373 | -exec sed --in-place -e 's!$(pkgdatadir)!'${MY_SHAREDSTATEDIR}'!g' {} \; |
|
|
374 | |
|
|
375 | # Manage mysqlmanager |
|
|
376 | mysql_version_is_at_least "5.00.15.00" \ |
|
|
377 | && sed -i -e "s!@GENTOO_EXT@!!g" \ |
|
|
378 | -e "s!@GENTOO_SOCK_PATH@!var/run/mysqld!g" \ |
|
|
379 | "${S}/server-tools/instance-manager/Makefile.am" |
|
|
380 | |
|
|
381 | if mysql_version_is_at_least "4.01.00.00" ; then |
|
|
382 | # Remove what needs to be recreated, so we're sure it's actually done |
|
|
383 | find . -name Makefile \ |
|
|
384 | -o -name Makefile.in \ |
|
|
385 | -o -name configure \ |
|
|
386 | -exec rm -f {} \; |
|
|
387 | rm -f "ltmain.sh" |
|
|
388 | rm -f "scripts/mysqlbug" |
|
|
389 | fi |
|
|
390 | |
|
|
391 | local rebuilddirlist bdbdir d |
|
|
392 | |
|
|
393 | if mysql_version_is_at_least "5.01.12.00" ; then |
|
|
394 | # TODO: innodb is using cmake now? |
|
|
395 | rebuilddirlist="." |
|
|
396 | bdbdir='' |
|
|
397 | else |
|
|
398 | rebuilddirlist=". innobase" |
|
|
399 | bdbdir='bdb/dist' |
|
|
400 | fi |
|
|
401 | |
|
|
402 | for d in ${rebuilddirlist} ; do |
|
|
403 | einfo "Reconfiguring dir '${d}'" |
|
|
404 | pushd "${d}" &>/dev/null |
|
|
405 | AT_GNUCONF_UPDATE="yes" eautoreconf |
|
|
406 | popd &>/dev/null |
|
|
407 | done |
|
|
408 | |
|
|
409 | if mysql_check_version_range "4.01.00.00 to 5.00.99.99" \ |
|
|
410 | && useq "berkdb" ; then |
|
|
411 | [[ -w "${bdbdir}/ltmain.sh" ]] && cp -f "ltmain.sh" "${bdbdir}/ltmain.sh" |
|
|
412 | pushd "${bdbdir}" \ |
|
|
413 | && sh s_all \ |
|
|
414 | || die "Failed bdb reconfigure" \ |
|
|
415 | &>/dev/null |
|
|
416 | popd &>/dev/null |
|
|
417 | fi |
|
|
418 | } |
|
|
419 | |
|
|
420 | mysql_src_compile() { |
|
|
421 | # Make sure the vars are correctly initialized |
|
|
422 | mysql_init_vars |
|
|
423 | |
|
|
424 | # $myconf is modified by the configure_* functions |
|
|
425 | local myconf="" |
|
|
426 | |
|
|
427 | if useq "minimal" ; then |
|
|
428 | configure_minimal |
|
|
429 | else |
|
|
430 | configure_common |
|
|
431 | if mysql_version_is_at_least "5.01.10.00" ; then |
|
|
432 | configure_51 |
|
|
433 | else |
|
|
434 | configure_40_41_50 |
| 340 | fi |
435 | fi |
|
|
436 | fi |
| 341 | |
437 | |
| 342 | #Bug #114895,Bug #110149 |
438 | # Bug #114895, bug #110149 |
| 343 | filter-flags "-O" "-O[01]" |
439 | filter-flags "-O" "-O[01]" |
|
|
440 | |
| 344 | #glibc-2.3.2_pre fix; bug #16496 |
441 | # glib-2.3.2_pre fix, bug #16496 |
| 345 | append-flags "-DHAVE_ERRNO_AS_DEFINE=1" |
442 | append-flags "-DHAVE_ERRNO_AS_DEFINE=1" |
| 346 | |
443 | |
| 347 | #the compiler flags are as per their "official" spec ;) |
444 | append-flags "-fno-exceptions -fno-strict-aliasing" |
| 348 | #CFLAGS="${CFLAGS/-O?/} -O3" \ |
|
|
| 349 | export CXXFLAGS="${CXXFLAGS} -felide-constructors -fno-exceptions -fno-rtti" |
445 | CXXFLAGS="${CXXFLAGS} -felide-constructors -fno-rtti" |
| 350 | mysql_version_is_at_least "5.00.00.00" \ |
446 | mysql_version_is_at_least "5.00.00.00" \ |
| 351 | && export CXXFLAGS="${CXXFLAGS} -fno-implicit-templates" |
447 | && CXXFLAGS="${CXXFLAGS} -fno-implicit-templates" |
|
|
448 | export CXXFLAGS |
| 352 | |
449 | |
| 353 | econf \ |
450 | econf \ |
| 354 | --program-suffix="${MY_SUFFIX}" \ |
|
|
| 355 | --libexecdir="/usr/sbin" \ |
451 | --libexecdir="/usr/sbin" \ |
| 356 | --sysconfdir="${MY_SYSCONFDIR}" \ |
452 | --sysconfdir="${MY_SYSCONFDIR}" \ |
| 357 | --localstatedir="${MY_LOCALSTATEDIR}" \ |
453 | --localstatedir="${MY_LOCALSTATEDIR}" \ |
| 358 | --sharedstatedir="${MY_SHAREDSTATEDIR}" \ |
454 | --sharedstatedir="${MY_SHAREDSTATEDIR}" \ |
| 359 | --libdir="${MY_LIBDIR}" \ |
455 | --libdir="${MY_LIBDIR}" \ |
| 360 | --includedir="${MY_INCLUDEDIR}" \ |
456 | --includedir="${MY_INCLUDEDIR}" \ |
| 361 | --with-low-memory \ |
457 | --with-low-memory \ |
| 362 | --enable-assembler \ |
|
|
| 363 | --enable-local-infile \ |
|
|
| 364 | --with-mysqld-user=mysql \ |
|
|
| 365 | --with-client-ldflags=-lstdc++ \ |
458 | --with-client-ldflags=-lstdc++ \ |
| 366 | --enable-thread-safe-client \ |
459 | --enable-thread-safe-client \ |
| 367 | --with-comment="Gentoo Linux ${PF}" \ |
460 | --with-comment="Gentoo Linux ${PF}" \ |
| 368 | --with-unix-socket-path="/var/run/mysqld/mysqld.sock" \ |
|
|
| 369 | --with-lib-ccflags="-fPIC" \ |
|
|
| 370 | --without-readline \ |
|
|
| 371 | --without-docs \ |
461 | --without-docs \ |
| 372 | ${myconf} || die "bad ./configure" |
462 | ${myconf} || die "econf failed" |
| 373 | |
463 | |
| 374 | # TODO Move this before autoreconf !!! |
464 | # TODO: Move this before autoreconf !!! |
| 375 | find . -type f -name Makefile -print0 \ |
465 | find . -type f -name Makefile -print0 \ |
| 376 | | xargs -0 -n100 sed -i \ |
466 | | xargs -0 -n100 sed -i \ |
| 377 | -e 's|^pkglibdir *= *$(libdir)/mysql|pkglibdir = $(libdir)|;s|^pkgincludedir *= *$(includedir)/mysql|pkgincludedir = $(includedir)|' |
467 | -e 's|^pkglibdir *= *$(libdir)/mysql|pkglibdir = $(libdir)|;s|^pkgincludedir *= *$(includedir)/mysql|pkgincludedir = $(includedir)|' |
| 378 | |
468 | |
| 379 | emake || die "compile problem" |
469 | emake || die "emake failed" |
| 380 | } |
470 | } |
| 381 | |
471 | |
| 382 | mysql_src_install() { |
472 | mysql_src_install() { |
| 383 | |
473 | # Make sure the vars are correctly initialized |
| 384 | mysql_init_vars |
474 | mysql_init_vars |
|
|
475 | |
| 385 | make install DESTDIR="${D}" benchdir_root="${MY_SHAREDSTATEDIR}" || die |
476 | emake install DESTDIR="${D}" benchdir_root="${MY_SHAREDSTATEDIR}" || die "emake install failed" |
| 386 | |
477 | |
| 387 | insinto "${MY_INCLUDEDIR}" |
478 | insinto "${MY_INCLUDEDIR}" |
| 388 | doins "${MY_INCLUDEDIR}"/my_{config,dir}.h |
479 | doins "${MY_INCLUDEDIR}"/my_{config,dir}.h |
| 389 | |
480 | |
| 390 | # convenience links |
481 | # Convenience links |
| 391 | dosym "/usr/bin/mysqlcheck${MY_SUFFIX}" "/usr/bin/mysqlanalyze${MY_SUFFIX}" |
482 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlanalyze" |
| 392 | dosym "/usr/bin/mysqlcheck${MY_SUFFIX}" "/usr/bin/mysqlrepair${MY_SUFFIX}" |
483 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlrepair" |
| 393 | dosym "/usr/bin/mysqlcheck${MY_SUFFIX}" "/usr/bin/mysqloptimize${MY_SUFFIX}" |
484 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqloptimize" |
| 394 | |
485 | |
| 395 | # various junk (my-*.cnf moved elsewhere) |
486 | # Various junk (my-*.cnf moved elsewhere) |
| 396 | rm -rf "${D}/usr/share/info" |
487 | rm -Rf "${D}/usr/share/info" |
| 397 | for removeme in "mysql-log-rotate" mysql.server* \ |
488 | for removeme in "mysql-log-rotate" mysql.server* \ |
| 398 | binary-configure* my-*.cnf mi_test_all* |
489 | binary-configure* my-*.cnf mi_test_all* |
| 399 | do |
490 | do |
| 400 | rm -f ${D}/usr/share/mysql/${removeme} |
491 | rm -f "${D}"/usr/share/mysql/${removeme} |
| 401 | done |
492 | done |
| 402 | |
493 | |
| 403 | # TODO change at Makefile-am level |
|
|
| 404 | for moveme in "mysql_fix_privilege_tables.sql" \ |
|
|
| 405 | "fill_help_tables.sql" "ndb-config-2-node.ini" |
|
|
| 406 | do |
|
|
| 407 | mv -f "${D}/usr/share/mysql/${moveme}" "${D}/usr/share/mysql${MY_SUFFIX}/" 2>/dev/null |
|
|
| 408 | done |
|
|
| 409 | |
|
|
| 410 | if [[ -n "${MY_SUFFIX}" ]] ; then |
|
|
| 411 | local notcatched=$(ls "${D}/usr/share/mysql"/*) |
|
|
| 412 | if [[ -n "${notcatched}" ]] ; then |
|
|
| 413 | ewarn "QA notice" |
|
|
| 414 | ewarn "${notcatched} files in /usr/share/mysql" |
|
|
| 415 | ewarn "bug mysql-herd to manage them" |
|
|
| 416 | fi |
|
|
| 417 | rm -rf "${D}/usr/share/mysql" |
|
|
| 418 | fi |
|
|
| 419 | |
|
|
| 420 | # clean up stuff for a minimal build |
494 | # Clean up stuff for a minimal build |
| 421 | # this is anything server-specific |
|
|
| 422 | if useq minimal; then |
495 | if useq "minimal" ; then |
| 423 | rm -rf ${D}${MY_SHAREDSTATEDIR}/{mysql-test,sql-bench} |
496 | rm -Rf "${D}${MY_SHAREDSTATEDIR}"/{mysql-test,sql-bench} |
| 424 | 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} |
497 | 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} |
| 425 | rm -f "${D}/usr/sbin/mysqld${MY_SUFFIX}" |
498 | rm -f "${D}/usr/sbin/mysqld" |
| 426 | rm -f ${D}${MY_LIBDIR}/lib{heap,merge,nisam,my{sys,strings,sqld,isammrg,isam},vio,dbug}.a |
499 | rm -f "${D}${MY_LIBDIR}"/lib{heap,merge,nisam,my{sys,strings,sqld,isammrg,isam},vio,dbug}.a |
| 427 | fi |
500 | fi |
| 428 | |
501 | |
| 429 | # config stuff |
502 | # Configuration stuff |
|
|
503 | if mysql_version_is_at_least "4.01.00.00" ; then |
|
|
504 | mysql_mycnf_version="4.1" |
|
|
505 | else |
|
|
506 | mysql_mycnf_version="4.0" |
|
|
507 | fi |
| 430 | insinto "${MY_SYSCONFDIR}" |
508 | insinto "${MY_SYSCONFDIR}" |
| 431 | doins scripts/mysqlaccess.conf |
509 | doins "scripts/mysqlaccess.conf" |
| 432 | sed -e "s!@MY_SUFFIX@!${MY_SUFFIX}!g" \ |
|
|
| 433 | -e "s!@DATADIR@!${DATADIR}!g" \ |
510 | sed -e "s!@DATADIR@!${DATADIR}!g" \ |
| 434 | "${FILESDIR}/my.cnf-4.1-r1" \ |
511 | "${FILESDIR}/my.cnf-${mysql_mycnf_version}" \ |
| 435 | > "${TMPDIR}/my.cnf.ok" |
512 | > "${TMPDIR}/my.cnf.ok" |
|
|
513 | if mysql_version_is_at_least "4.01.00.00" && useq "latin1" ; then |
|
|
514 | sed -e "s|utf8|latin1|g" -i "${TMPDIR}/my.cnf.ok" |
|
|
515 | fi |
| 436 | newins "${TMPDIR}/my.cnf.ok" my.cnf |
516 | newins "${TMPDIR}/my.cnf.ok" my.cnf |
| 437 | |
517 | |
| 438 | insinto "/etc/conf.d" |
518 | insinto "/etc/conf.d" |
| 439 | newins "${FILESDIR}/mysql-slot.conf.d-r1" "mysql" |
519 | newins "${FILESDIR}/mysql.conf.d" "mysql" |
| 440 | mysql_version_is_at_least "5.00.11.00" \ |
520 | mysql_version_is_at_least "5.00.11.00" \ |
| 441 | && newins "${FILESDIR}/mysqlmanager-slot.conf.d" "mysqlmanager" |
521 | && newins "${FILESDIR}/mysqlmanager.conf.d" "mysqlmanager" |
| 442 | |
522 | |
| 443 | # minimal builds don't have the server |
523 | # Minimal builds don't have the MySQL server |
| 444 | if ! useq minimal; then |
524 | if ! useq "minimal" ; then |
| 445 | exeinto /etc/init.d |
525 | exeinto "/etc/init.d" |
| 446 | newexe "${FILESDIR}/mysql-slot.rc6-r3" "mysql" |
526 | newexe "${FILESDIR}/mysql.rc6" "mysql" |
| 447 | |
|
|
| 448 | mysql_version_is_at_least "5.00.11.00" \ |
527 | mysql_version_is_at_least "5.00.11.00" \ |
| 449 | && newexe "${FILESDIR}/mysqlmanager-slot.rc6" "mysqlmanager" |
528 | && newexe "${FILESDIR}/mysqlmanager.rc6" "mysqlmanager" |
|
|
529 | |
| 450 | insinto /etc/logrotate.d |
530 | insinto "/etc/logrotate.d" |
| 451 | sed -e "s!___MY_SUFFIX___!${MY_SUFFIX}!g" \ |
|
|
| 452 | "${FILESDIR}/logrotate-slot.mysql" \ |
|
|
| 453 | > "${TMPDIR}/logrotate.mysql" |
|
|
| 454 | newins "${TMPDIR}/logrotate.mysql" "mysql${MY_SUFFIX}" |
531 | newins "${FILESDIR}/logrotate.mysql" "mysql" |
| 455 | |
532 | |
| 456 | #empty dirs... |
533 | # Empty directories ... |
| 457 | diropts "-m0750" |
534 | diropts "-m0750" |
| 458 | if [[ "${PREVIOUS_DATADIR}" != "yes" ]] ; then |
535 | if [[ "${PREVIOUS_DATADIR}" != "yes" ]] ; then |
| 459 | dodir "${DATADIR}" |
536 | dodir "${DATADIR}" |
| 460 | keepdir "${DATADIR}" |
537 | keepdir "${DATADIR}" |
| 461 | chown -R mysql:mysql "${D}/${DATADIR}" |
538 | chown -R mysql:mysql "${D}/${DATADIR}" |
| … | |
… | |
| 467 | keepdir "${folder}" |
544 | keepdir "${folder}" |
| 468 | chown -R mysql:mysql "${D}/${folder}" |
545 | chown -R mysql:mysql "${D}/${folder}" |
| 469 | done |
546 | done |
| 470 | fi |
547 | fi |
| 471 | |
548 | |
| 472 | # docs |
549 | # Docs |
| 473 | dodoc README COPYING ChangeLog EXCEPTIONS-CLIENT INSTALL-SOURCE |
550 | dodoc README COPYING ChangeLog EXCEPTIONS-CLIENT INSTALL-SOURCE |
|
|
551 | |
| 474 | # minimal builds don't have the server |
552 | # Minimal builds don't have the MySQL server |
| 475 | if ! useq minimal; then |
553 | if ! useq "minimal" ; then |
| 476 | docinto "support-files" |
554 | docinto "support-files" |
| 477 | for script in \ |
555 | for script in \ |
| 478 | support-files/my-*.cnf \ |
556 | support-files/my-*.cnf \ |
| 479 | support-files/magic \ |
557 | support-files/magic \ |
| 480 | support-files/ndb-config-2-node.ini |
558 | support-files/ndb-config-2-node.ini |
| … | |
… | |
| 486 | for script in scripts/mysql* ; do |
564 | for script in scripts/mysql* ; do |
| 487 | [[ "${script%.sh}" == "${script}" ]] && dodoc "${script}" |
565 | [[ "${script%.sh}" == "${script}" ]] && dodoc "${script}" |
| 488 | done |
566 | done |
| 489 | fi |
567 | fi |
| 490 | |
568 | |
| 491 | # oops, temporary fix |
569 | ROOT="${D}" mysql_lib_symlinks |
| 492 | mysql_check_version_range "5.00.16.00 to 5.00.18.99" \ |
|
|
| 493 | && cp -f \ |
|
|
| 494 | "${WORKDIR}/mysql-extras/fill_help_tables.sql-5.0" \ |
|
|
| 495 | "${D}/usr/share/mysql${MY_SUFFIX}/fill_help_tables.sql" |
|
|
| 496 | |
|
|
| 497 | if [[ ${SLOT} -gt 0 ]] ; then |
|
|
| 498 | # MOVED HERE DUE TO BUG #121445 |
|
|
| 499 | # create a list of files, to be used |
|
|
| 500 | # by external utilities |
|
|
| 501 | mkdir -p "${D}/var/lib/eselect/mysql/" |
|
|
| 502 | local filelist="${D}/var/lib/eselect/mysql/mysql${MY_SUFFIX}.filelist" |
|
|
| 503 | pushd "${D}/" &>/dev/null |
|
|
| 504 | find usr/bin/ usr/sbin/ \ |
|
|
| 505 | -type f -name "*${MY_SUFFIX}*" \ |
|
|
| 506 | -and -not -name "mysql_config${MY_SUFFIX}" \ |
|
|
| 507 | > "${filelist}" |
|
|
| 508 | find usr/share/man \ |
|
|
| 509 | -type f -name "*${MY_SUFFIX}*" \ |
|
|
| 510 | | sed -e 's/$/.gz/' \ |
|
|
| 511 | >> "${filelist}" |
|
|
| 512 | echo "${MY_SYSCONFDIR#"/"}" >> "${filelist}" |
|
|
| 513 | echo "${MY_LIBDIR#"/"}" >> "${filelist}" |
|
|
| 514 | echo "${MY_SHAREDSTATEDIR#"/"}" >> "${filelist}" |
|
|
| 515 | popd &>/dev/null |
|
|
| 516 | fi |
|
|
| 517 | } |
570 | } |
| 518 | |
571 | |
| 519 | mysql_pkg_preinst() { |
572 | mysql_pkg_preinst() { |
| 520 | |
|
|
| 521 | enewgroup mysql 60 || die "problem adding group mysql" |
573 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
| 522 | enewuser mysql 60 -1 /dev/null mysql \ |
574 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
| 523 | || die "problem adding user mysql" |
|
|
| 524 | } |
575 | } |
| 525 | |
576 | |
| 526 | mysql_pkg_postinst() { |
577 | mysql_pkg_postinst() { |
| 527 | |
578 | # Make sure the vars are correctly initialized |
| 528 | mysql_init_vars |
579 | mysql_init_vars |
| 529 | mysql_lib_symlinks |
|
|
| 530 | |
580 | |
| 531 | # mind at FEATURES=collision-protect before to remove this |
581 | # Check FEATURES="collision-protect" before removing this |
| 532 | [ -d "${ROOT}/var/log/mysql" ] \ |
582 | [[ -d "${ROOT}/var/log/mysql" ]] \ |
| 533 | || install -d -m0750 -o mysql -g mysql "${ROOT}${MY_LOGDIR}" |
583 | || install -d -m0750 -o mysql -g mysql "${ROOT}${MY_LOGDIR}" |
| 534 | |
584 | |
| 535 | #secure the logfiles... does this bother anybody? |
585 | # Secure the logfiles |
| 536 | touch "${ROOT}${MY_LOGDIR}"/mysql.{log,err} |
586 | touch "${ROOT}${MY_LOGDIR}"/mysql.{log,err} |
| 537 | chown mysql:mysql "${ROOT}${MY_LOGDIR}"/mysql* |
587 | chown mysql:mysql "${ROOT}${MY_LOGDIR}"/mysql* |
| 538 | chmod 0660 "${ROOT}${MY_LOGDIR}"/mysql* |
588 | chmod 0660 "${ROOT}${MY_LOGDIR}"/mysql* |
| 539 | |
589 | |
| 540 | if ! useq minimal; then |
590 | if ! useq "minimal" ; then |
| 541 | if [[ ${SLOT} -gt 0 ]] ; then |
|
|
| 542 | einfo "you may want to read:" |
|
|
| 543 | einfo "http://www.gentoo.org/doc/en/mysql-upgrade-slotted.xml" |
|
|
| 544 | einfo "you may want to run \"eselect mysql list\" followed by a " |
|
|
| 545 | einfo "\"eselect mysql set 1\" to choose the default mysql server" |
|
|
| 546 | fi |
|
|
| 547 | |
|
|
| 548 | # your friendly public service announcement... |
591 | # Your friendly public service announcement ... |
| 549 | einfo |
592 | einfo |
| 550 | einfo "You might want to run:" |
593 | elog "You might want to run:" |
| 551 | einfo "\"emerge --config =${CATEGORY}/${PF}\"" |
594 | elog "\"emerge --config =${CATEGORY}/${PF}\"" |
| 552 | einfo "if this is a new install." |
595 | elog "if this is a new install." |
| 553 | einfo |
596 | einfo |
| 554 | mysql_version_is_at_least "5.01.00.00" \ |
597 | mysql_version_is_at_least "5.01.00.00" \ |
| 555 | || einfo "InnoDB is not optional as of MySQL-4.0.24, at the request of upstream." |
598 | || elog "InnoDB is *not* optional as of MySQL-4.0.24, at the request of upstream." |
| 556 | fi |
599 | fi |
|
|
600 | mysql_check_version_range "4.00.00.00 to 5.00.99.99" \ |
|
|
601 | && useq "berkdb" \ |
|
|
602 | && elog "Berkeley DB support is deprecated and will be removed in future versions!" |
| 557 | } |
603 | } |
| 558 | |
604 | |
| 559 | mysql_pkg_config() { |
605 | mysql_pkg_config() { |
|
|
606 | # Make sure the vars are correctly initialized |
| 560 | mysql_init_vars |
607 | mysql_init_vars |
|
|
608 | |
| 561 | [[ -z "${DATADIR}" ]] && die "sorry, unable to find DATADIR" |
609 | [[ -z "${DATADIR}" ]] && die "Sorry, unable to find DATADIR" |
| 562 | |
610 | |
| 563 | if built_with_use dev-db/mysql minimal; then |
611 | if built_with_use dev-db/mysql minimal ; then |
| 564 | die "Minimal builds do NOT include the MySQL server" |
612 | die "Minimal builds do NOT include the MySQL server" |
| 565 | fi |
613 | fi |
| 566 | |
614 | |
| 567 | local pwd1="a" |
615 | local pwd1="a" |
| 568 | local pwd2="b" |
616 | local pwd2="b" |
| … | |
… | |
| 574 | ewarn "Please rename or delete it if you wish to replace it." |
622 | ewarn "Please rename or delete it if you wish to replace it." |
| 575 | die "MySQL database already exists!" |
623 | die "MySQL database already exists!" |
| 576 | fi |
624 | fi |
| 577 | |
625 | |
| 578 | einfo "Creating the mysql database and setting proper" |
626 | einfo "Creating the mysql database and setting proper" |
| 579 | einfo "permissions on it..." |
627 | einfo "permissions on it ..." |
| 580 | |
628 | |
| 581 | einfo "Insert a password for the mysql 'root' user" |
629 | einfo "Insert a password for the mysql 'root' user" |
| 582 | ewarn "Avoid [\"'\\_%] characters in the password" |
630 | ewarn "Avoid [\"'\\_%] characters in the password" |
| 583 | |
|
|
| 584 | read -rsp " >" pwd1 ; echo |
631 | read -rsp " >" pwd1 ; echo |
|
|
632 | |
| 585 | einfo "Check the password" |
633 | einfo "Retype the password" |
| 586 | read -rsp " >" pwd2 ; echo |
634 | read -rsp " >" pwd2 ; echo |
| 587 | |
635 | |
| 588 | if [[ "x$pwd1" != "x$pwd2" ]] ; then |
636 | if [[ "x$pwd1" != "x$pwd2" ]] ; then |
| 589 | die "Passwords are not the same" |
637 | die "Passwords are not the same" |
| 590 | fi |
638 | fi |
| 591 | |
639 | |
| 592 | local options="" |
640 | local options="" |
| 593 | local sqltmp="$(emktemp)" |
641 | local sqltmp="$(emktemp)" |
| 594 | |
642 | |
| 595 | local help_tables="${MY_SHAREDSTATEDIR}/fill_help_tables.sql" |
643 | local help_tables="${ROOT}${MY_SHAREDSTATEDIR}/fill_help_tables.sql" |
| 596 | [[ -r "${help_tables}" ]] \ |
644 | [[ -r "${help_tables}" ]] \ |
| 597 | && cp "${help_tables}" "${TMPDIR}/fill_help_tables.sql" \ |
645 | && cp "${help_tables}" "${TMPDIR}/fill_help_tables.sql" \ |
| 598 | || touch "${TMPDIR}/fill_help_tables.sql" |
646 | || touch "${TMPDIR}/fill_help_tables.sql" |
| 599 | help_tables="${TMPDIR}/fill_help_tables.sql" |
647 | help_tables="${TMPDIR}/fill_help_tables.sql" |
| 600 | |
648 | |
| 601 | pushd "${TMPDIR}" &>/dev/null |
649 | pushd "${TMPDIR}" &>/dev/null |
| 602 | ${ROOT}/usr/bin/mysql_install_db${MY_SUFFIX} | grep -B5 -A999 -i "ERROR" |
650 | "${ROOT}/usr/bin/mysql_install_db" | grep -B5 -A999 -i "ERROR" |
| 603 | popd &>/dev/null |
651 | popd &>/dev/null |
| 604 | [[ -f ${ROOT}/${DATADIR}/mysql/user.frm ]] || die "MySQL databases not installed" |
652 | [[ -f "${ROOT}/${DATADIR}/mysql/user.frm" ]] \ |
|
|
653 | || die "MySQL databases not installed" |
| 605 | chown -R mysql:mysql ${ROOT}/${DATADIR} 2> /dev/null |
654 | chown -R mysql:mysql "${ROOT}/${DATADIR}" 2> /dev/null |
| 606 | chmod 0750 ${ROOT}/${DATADIR} 2> /dev/null |
655 | chmod 0750 "${ROOT}/${DATADIR}" 2> /dev/null |
| 607 | |
656 | |
| 608 | if mysql_version_is_at_least "4.01.03.00" ; then |
657 | if mysql_version_is_at_least "4.01.03.00" ; then |
| 609 | options="--skip-ndbcluster" |
658 | options="--skip-ndbcluster" |
| 610 | |
659 | |
| 611 | # Filling timezones, see |
660 | # Filling timezones, see |
| 612 | # http://dev.mysql.com/doc/mysql/en/time-zone-support.html |
661 | # http://dev.mysql.com/doc/mysql/en/time-zone-support.html |
| 613 | ${ROOT}/usr/bin/mysql_tzinfo_to_sql${MY_SUFFIX} ${ROOT}/usr/share/zoneinfo \ |
662 | "${ROOT}/usr/bin/mysql_tzinfo_to_sql" "${ROOT}/usr/share/zoneinfo" > "${sqltmp}" 2>/dev/null |
| 614 | > "${sqltmp}" 2>/dev/null |
|
|
| 615 | |
663 | |
| 616 | if [[ -r "${help_tables}" ]] ; then |
664 | if [[ -r "${help_tables}" ]] ; then |
| 617 | cat "${help_tables}" >> "${sqltmp}" |
665 | cat "${help_tables}" >> "${sqltmp}" |
| 618 | fi |
666 | fi |
| 619 | fi |
667 | fi |
| 620 | |
668 | |
| 621 | local socket=${ROOT}/var/run/mysqld/mysqld${RANDOM}.sock |
669 | local socket="${ROOT}/var/run/mysqld/mysqld${RANDOM}.sock" |
| 622 | local pidfile=${ROOT}/var/run/mysqld/mysqld${MY_SUFFIX}${RANDOM}.pid |
670 | local pidfile="${ROOT}/var/run/mysqld/mysqld${RANDOM}.pid" |
| 623 | local mysqld="${ROOT}/usr/sbin/mysqld${MY_SUFFIX} \ |
671 | local mysqld="${ROOT}/usr/sbin/mysqld \ |
| 624 | ${options} \ |
672 | ${options} \ |
| 625 | --user=mysql \ |
673 | --user=mysql \ |
| 626 | --skip-grant-tables \ |
674 | --skip-grant-tables \ |
| 627 | --basedir=${ROOT}/usr \ |
675 | --basedir=${ROOT}/usr \ |
| 628 | --datadir=${ROOT}/${DATADIR} \ |
676 | --datadir=${ROOT}/${DATADIR} \ |
| … | |
… | |
| 631 | --skip-networking \ |
679 | --skip-networking \ |
| 632 | --max_allowed_packet=8M \ |
680 | --max_allowed_packet=8M \ |
| 633 | --net_buffer_length=16K \ |
681 | --net_buffer_length=16K \ |
| 634 | --socket=${socket} \ |
682 | --socket=${socket} \ |
| 635 | --pid-file=${pidfile}" |
683 | --pid-file=${pidfile}" |
| 636 | $mysqld & |
684 | ${mysqld} & |
| 637 | while ! [[ -S "${socket}" || "${maxtry}" -lt 1 ]] ; do |
685 | while ! [[ -S "${socket}" || "${maxtry}" -lt 1 ]] ; do |
| 638 | maxtry=$(($maxtry-1)) |
686 | maxtry=$((${maxtry}-1)) |
| 639 | echo -n "." |
687 | echo -n "." |
| 640 | sleep 1 |
688 | sleep 1 |
| 641 | done |
689 | done |
| 642 | |
690 | |
| 643 | # do this from memory we don't want clear text password in temp files |
691 | # Do this from memory, as we don't want clear text passwords in temp files |
| 644 | local sql="UPDATE mysql.user SET Password = PASSWORD('${pwd1}') WHERE USER='root'" |
692 | local sql="UPDATE mysql.user SET Password = PASSWORD('${pwd1}') WHERE USER='root'" |
| 645 | ${ROOT}/usr/bin/mysql${MY_SUFFIX} \ |
693 | "${ROOT}/usr/bin/mysql" \ |
| 646 | --socket=${socket} \ |
694 | --socket=${socket} \ |
| 647 | -hlocalhost \ |
695 | -hlocalhost \ |
| 648 | -e "${sql}" |
696 | -e "${sql}" |
| 649 | |
697 | |
| 650 | einfo "Loading \"zoneinfo\" this step may require few seconds" |
698 | einfo "Loading \"zoneinfo\", this step may require a few seconds ..." |
| 651 | |
699 | |
| 652 | ${ROOT}/usr/bin/mysql${MY_SUFFIX} \ |
700 | "${ROOT}/usr/bin/mysql" \ |
| 653 | --socket=${socket} \ |
701 | --socket=${socket} \ |
| 654 | -hlocalhost \ |
702 | -hlocalhost \ |
| 655 | -uroot \ |
703 | -uroot \ |
| 656 | -p"${pwd1}" \ |
704 | -p"${pwd1}" \ |
| 657 | mysql < "${sqltmp}" |
705 | mysql < "${sqltmp}" |
| 658 | |
706 | |
| 659 | # server stop and cleanup |
707 | # Stop the server and cleanup |
| 660 | kill $(< "${pidfile}" ) |
708 | kill $(< "${pidfile}" ) |
| 661 | rm "${sqltmp}" |
709 | rm -f "${sqltmp}" |
| 662 | einfo "stopping the server," |
710 | einfo "Stopping the server ..." |
| 663 | wait %1 |
711 | wait %1 |
| 664 | einfo "done" |
712 | einfo "Done" |
| 665 | } |
|
|
| 666 | |
|
|
| 667 | mysql_pkg_prerm() { |
|
|
| 668 | if [[ ${SLOT} -gt 0 ]] ; then |
|
|
| 669 | # external program |
|
|
| 670 | eselect mysql slot_remove "${SLOT}" |
|
|
| 671 | fi |
|
|
| 672 | } |
713 | } |
| 673 | |
714 | |
| 674 | mysql_pkg_postrm() { |
715 | mysql_pkg_postrm() { |
| 675 | mysql_lib_symlinks |
716 | mysql_lib_symlinks |
| 676 | if [[ ${SLOT} -gt 0 ]] ; then |
|
|
| 677 | einfo "you may want to run \"eselect mysql list\" followed by a " |
|
|
| 678 | einfo "\"eselect mysql list\" to choose the default mysql server" |
|
|
| 679 | fi |
|
|
| 680 | } |
717 | } |