#!/bin/sh -e # part of the gn*nix conspiracy http://gnnix.org # Copyright (C) Linus Sphinx 2004 # gnx functions make the distro system #------------------------------------------- gnxfdo() { gnxunwrap ${1} #cd /usr/src/${1} sed -i "s@w->pixmap = XCompositeNameWindowPixmap (dpy, id);@// w->pixmap = XCompositeNameWindowPixmap (dpy, id);@" xcompmgr/xcompmgr.c gnxfilelist start ${1} ./build.sh mkdir -p /usr/X11R6/man/man3 mv /usr/fdo/man/man3/Xft.3 /usr/X11R6/man/man3/ ln -sf /usr/fdo/lib /usr/X11R6/lib ln -sf /usr/fdo/include /usr/X11R6/include ln -sf /usr/fdo/share/X11 /usr/X11R6/share/X11 ln -sf /usr/fdo/share/doc /usr/X11R6/share/doc gnxfilelist finish ${1} } #eof