#!/bin/sh -e # part of the gn*nix conspiracy http://gnnix.org # Copyright (C) Linus Sphinx 2004 # gnx functions make the distro system #------------------------------------------- gnxxcomp() { gnxunwrap ${1} gnxfilelist start ${1} PKG_CONFIG_PATH=/usr/X11R6/lib/pkgconfig:/usr/lib/pkgconfig ./autogen.sh gnxmake gnxmake install mkdir -p /usr/X11R6/bin /usr/X11R6/man/man1 mv /usr/local/bin/xcompmgr /usr/X11R6/bin/ mv /usr/local/man/man1/xcompmgr.1 /usr/X11R6/man/man1 gnxfilelist finish ${1} } #eof