Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 195295 Details for
Bug 274844
x11-libs/libxcb-1.3: dobin: ${EPREFIX}/usr/portage/x11-libs/libxcb/files/xcb-rebuilder.sh does not exist
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
xcb-rebuilder.sh
xcb-rebuilder.sh (text/plain), 1.34 KB, created by
Jacob Godserv
on 2009-06-20 17:48:23 UTC
(
hide
)
Description:
xcb-rebuilder.sh
Filename:
MIME Type:
Creator:
Jacob Godserv
Created:
2009-06-20 17:48:23 UTC
Size:
1.34 KB
patch
obsolete
>#!/bin/bash > ># To use something besides `emerge` to install packages, set ># XCB_REBUILDER_INSTALL to that binary. > >. /Users/jacob/Library/Gentoo/etc/init.d/functions.sh > >case ${1} in > '') ;; > *) > einfo 'Rebuilds broken packages from the XCB library renaming' > einfo > einfo 'To use something besides `emerge`, set the INSTALL variable to their binary.' > exit 1 > ;; >esac > >if ! type -p qfile >/dev/null; then > einfo "Please install app-portage/portage-utils." > exit 1 >fi > >if ! type -p scanelf >/dev/null; then > einfo "Please install app-misc/pax-utils." > exit 1 >fi > >einfo "Fixing broken libtool archives (.la)" >for i in $(qlist -a | grep "\.la$"); do > sed -i \ > -e "s:[^[:space:]]*xcb-xlib[^[:space:]]*::g" \ > "${i}" 2>/dev/null >done > >einfo "Scanning for libraries requiring libxcb-xlib.so..." >for i in $(qlist -a | grep "\.so$"); do > scanelf -n $i \ > | grep -q xcb-xlib \ > && XCB_LIBS="${XCB_LIBS} ${i}" >done > >if [[ -n ${XCB_LIBS} ]]; then > einfo "Broken libraries:" > for lib in ${XCB_LIBS}; do > echo " ${lib}" > done > ebegin "Scanning for packages installing broken libraries" > XCB_PACKAGES=$(qfile -qC ${XCB_LIBS} | sort | uniq) > eend 0 >else > einfo "No broken libraries detected" > exit 0 >fi > > >einfo "Broken packages:" >for pkg in ${XCB_PACKAGES}; do > echo " ${pkg}" >done > >ebegin "Rebuilding broken packages" >${XCB_REBUILDER_INSTALL:-emerge -1} ${XCB_PACKAGES} >eend $?
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 274844
:
195294
|
195295
|
195709
|
195710