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

Collapse All | Expand All

(-)scanelf-packagecheck-0.04.bash (-2 / +7 lines)
Lines 9-15 Link Here
9
#        - As fast as possible.
9
#        - As fast as possible.
10
#        - Package-manager agnostic.
10
#        - Package-manager agnostic.
11
#
11
#
12
# TODO: Sanity checks.
12
# TODO: Sanity checks
13
#       for qfile
13
#
14
#
14
# NOTE: If there's ever a package manager that doesn't respect --pretend, bugs
15
# NOTE: If there's ever a package manager that doesn't respect --pretend, bugs
15
#       will arise.
16
#       will arise.
Lines 225-231 Link Here
225
		           ewarn  "Falling back to Portage default."
226
		           ewarn  "Falling back to Portage default."
226
		           get_pm Portage
227
		           get_pm Portage
227
		         fi;;
228
		         fi;;
228
		Paludis) if hash Paludis 2> /dev/null; then
229
		Paludis) if hash paludis 2> /dev/null; then
229
		           remerge() { paludis -1i "$@"; }
230
		           remerge() { paludis -1i "$@"; }
230
		         else
231
		         else
231
		           eerror "Unable to find Paludis binary in PATH."
232
		           eerror "Unable to find Paludis binary in PATH."
Lines 255-260 Link Here
255
	for conf in /etc/revdep-rebuild/*; do
256
	for conf in /etc/revdep-rebuild/*; do
256
		[[ -r $conf ]]&& orphans_to_skip+=($(. "$conf"; echo "$LD_LIBRARY_MASK"))
257
		[[ -r $conf ]]&& orphans_to_skip+=($(. "$conf"; echo "$LD_LIBRARY_MASK"))
257
	done
258
	done
259
	hash q 2> /dev/null && return 0
260
	eerror "Unable to find q binary in PATH."
261
	eerror "$APPNAME depends on app-portage/portage-utils: Please install it."
262
	die 0  "Unable to continue"
258
}
263
}
259
264
260
##
265
##

Return to bug 184291