123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- LIBXCBSO="`find ./ -name "libxcb.so*" | tr '\n' ' '`"
- LIBXCBRENDER="`find ./ -name "libxcb-render*" | tr '\n' ' '`"
- LIBXCBXV="`find ./ -name "libxcb-xv*" | tr '\n' ' '`"
- LIBXCBshape="`find ./ -name "libxcb-shape*" | tr '\n' ' '`"
- LIBXCBshm="`find ./ -name "libxcb-shm*" | tr '\n' ' '`"
- LIBXCBXLIB="`find ./ -name "libxcb-xlib*" | tr '\n' ' '`"
- LIBXCBres="`find ./ -name "libxcb-res*" | tr '\n' ' '`"
- LIBXCBxevie="`find ./ -name "libxcb-xevie*" | tr '\n' ' '`"
- LIBXCBxvmc="`find ./ -name "libxcb-xvmc*" | tr '\n' ' '`"
- LIBXCBdamage="`find ./ -name "libxcb-damage*" | tr '\n' ' '`"
- LIBXCBrecord="`find ./ -name "libxcb-record*" | tr '\n' ' '`"
- LIBXCBdpms="`find ./ -name "libxcb-dpms*" | tr '\n' ' '`"
- LIBXCBglx="`find ./ -name "libxcb-glx*" | tr '\n' ' '`"
- LIBXCBscreensaver="`find ./ -name "libxcb-screensaver*" | tr '\n' ' '`"
- LIBXCBrandr="`find ./ -name "libxcb-randr*" | tr '\n' ' '`"
- LIBXCBcomposite="`find ./ -name "libxcb-composite*" | tr '\n' ' '`"
- LIBXCBpresent="`find ./ -name "libxcb-present*" | tr '\n' ' '`"
- LIBXCBsync="`find ./ -name "libxcb-sync*" | tr '\n' ' '`"
- XCBDIR="`find ./ -type f -name "libxcb.so*" | head -n 1`"
- XCBDIR="`dirname $XCBDIR`"
- LIBXCBdri="`find ./ -name "libxcb-dri*" | tr '\n' ' '`"
- LIBXCBxfixes="`find ./ -name "libxcb-xfixes*" | tr '\n' ' '`"
- LIBXCBatom="`find ./ -name "libxcb-atom*" | tr '\n' ' '`"
- LIBXCBaux="`find ./ -name "libxcb-aux*" | tr '\n' ' '`"
- LIBXCBevent="`find ./ -name "libxcb-event*" | tr '\n' ' '`"
- mkdir -p /tmp/libxcb
- for ONEFILE in $LIBXCBSO $LIBXCBRENDER $LIBXCBXV $LIBXCBshape $LIBXCBshm $LIBXCBXLIB $LIBXCBdri $LIBXCBxfixes $LIBXCBres $LIBXCBxevie $LIBXCBxvmc $LIBXCBdamage $LIBXCBrecord $LIBXCBdpms $LIBXCBglx $LIBXCBscreensaver $LIBXCBrandr $LIBXCBcomposite $LIBXCBsync $LIBXCBpresent $LIBXCBatom $LIBXCBaux $LIBXCBevent
- do
- cp -a -f $ONEFILE /tmp/libxcb/
- done
- rm -rf ./usr/lib/* 2>/dev/null
- rm -rf ./usr/X11R7/lib/* 2>/dev/null
- cp -a /tmp/libxcb/* ${XCBDIR}/
- OLDXCBLIB="`find ./usr -name libxcb-xlib.so.0`"
- [ ! "$OLDXCBLIB" ] && ln -s libX11.so.6 usr/lib/libxcb-xlib.so.0
|