Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 405241
Collapse All | Expand All

(-)/usr/portage/eclass/mysql-autotools.eclass (-3 / +5 lines)
Lines 358-366 Link Here
358
	# Clean out old items
358
	# Clean out old items
359
	rm -f "${EPATCH_SOURCE}"/*
359
	rm -f "${EPATCH_SOURCE}"/*
360
	# Now link in right patches
360
	# Now link in right patches
361
	mysql_mv_patches
361
	[ "${MY_EXTRAS_VER}" != "none" ] && {
362
	# And apply
362
		mysql_mv_patches
363
	epatch
363
		# And apply
364
		epatch
365
	}
364
366
365
	# last -fPIC fixup, per bug #305873
367
	# last -fPIC fixup, per bug #305873
366
	i="${S}"/storage/innodb_plugin/plug.in
368
	i="${S}"/storage/innodb_plugin/plug.in
(-)/usr/portage/eclass/mysql-cmake.eclass (-3 / +5 lines)
Lines 170-178 Link Here
170
	# Clean out old items
170
	# Clean out old items
171
	rm -f "${EPATCH_SOURCE}"/*
171
	rm -f "${EPATCH_SOURCE}"/*
172
	# Now link in right patches
172
	# Now link in right patches
173
	mysql_mv_patches
173
	[ "${MY_EXTRAS_VER}" != "none" ] && {
174
	# And apply
174
		mysql_mv_patches
175
	epatch
175
		# And apply
176
		epatch
177
	}
176
178
177
	# last -fPIC fixup, per bug #305873
179
	# last -fPIC fixup, per bug #305873
178
	i="${S}"/storage/innodb_plugin/plug.in
180
	i="${S}"/storage/innodb_plugin/plug.in
(-)/usr/portage/eclass/mysql-v2.eclass (+1 lines)
Lines 84-89 Link Here
84
if [[ "${PN}" == "mysql-cluster" ]]; then
84
if [[ "${PN}" == "mysql-cluster" ]]; then
85
	case $PV in
85
	case $PV in
86
		6.1*|7.0*|7.1*) MYSQL_PV_MAJOR=5.1 ;;
86
		6.1*|7.0*|7.1*) MYSQL_PV_MAJOR=5.1 ;;
87
		7.2*) MYSQL_PV_MAJOR=5.5 ;;
87
	esac
88
	esac
88
fi
89
fi
89
90
(-)/usr/portage/eclass/mysql.eclass (-4 / +6 lines)
Lines 900-909 Link Here
900
	mkdir -p "${EPATCH_SOURCE}" || die "Unable to create epatch directory"
900
	mkdir -p "${EPATCH_SOURCE}" || die "Unable to create epatch directory"
901
	# Clean out old items
901
	# Clean out old items
902
	rm -f "${EPATCH_SOURCE}"/*
902
	rm -f "${EPATCH_SOURCE}"/*
903
	# Now link in right patches
903
	[ "${MY_EXTRAS_VER}" != "none" ] && {
904
	mysql_mv_patches
904
		# Now link in right patches
905
	# And apply
905
		mysql_mv_patches
906
	epatch
906
		# And apply
907
		epatch
908
	}
907
909
908
	# last -fPIC fixup, per bug #305873
910
	# last -fPIC fixup, per bug #305873
909
	i="${S}"/storage/innodb_plugin/plug.in
911
	i="${S}"/storage/innodb_plugin/plug.in

Return to bug 405241