Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 242100 | Differences between
and this patch

Collapse All | Expand All

(-)/usr/portage/eclass/subversion.eclass (+6 lines)
Lines 169-174 Link Here
169
169
170
	case "${protocol}" in
170
	case "${protocol}" in
171
		http|https)
171
		http|https)
172
			# We have to fake the ROOT variable for built_with_use to work in
173
			# e.g. cross-compile environments.
174
			OLDROOT=${ROOT}
175
			ROOT="/"
172
			if ! built_with_use --missing true -o dev-util/subversion webdav-neon webdav-serf || \
176
			if ! built_with_use --missing true -o dev-util/subversion webdav-neon webdav-serf || \
173
			built_with_use --missing false dev-util/subversion nowebdav ; then
177
			built_with_use --missing false dev-util/subversion nowebdav ; then
174
				echo
178
				echo
Lines 178-183 Link Here
178
				echo
182
				echo
179
				die "${ESVN}: reinstall Subversion with support for WebDAV."
183
				die "${ESVN}: reinstall Subversion with support for WebDAV."
180
			fi
184
			fi
185
			# Reset the ROOT variable to the original one
186
			ROOT=${OLDROOT}
181
			;;
187
			;;
182
		svn|svn+ssh)
188
		svn|svn+ssh)
183
			;;
189
			;;

Return to bug 242100