# Check for deprecated directories

deprecated_dir_check() {
	local x f=
	for x in etc/app-defaults usr/man usr/info usr/X11R6 usr/doc usr/locale ; do
		[[ -d ${ED}/$x ]] && f+="  $x\n"
	done
	if [[ -n $f ]] ; then
		eqawarn "QA Notice: This ebuild installs into the following deprecated directories:"
		eqawarn
		eqawarn "$f"
	fi
}

deprecated_dir_check
: # guarantee successful exit

# vim:ft=sh
