#!/bin/sh # part of the gn*nix conspiracy http://gnnix.org # Copyright (C) Linus Sphinx 2004 # func to make the distro system gnxe2fs() { gnxunwrap $E2FS gnxpatch e2fsprogs-1.34-2.6 cd $DIST/usr/src/ rm -rf e2fsprogs mkdir -p e2fsprogs cd e2fsprogs gnxfilelist start $E2FS ../${E2FS}/configure --prefix=${PREFIX} --with-root-prefix="" --enable-elf-shlibs if [ "$?" != "0" ]; then echo $E2FS configure echo returned non zero exit 1 fi gnxmake gnxmake check gnxmake install gnxmake install-libs gunzip -d /usr/info/libext2fs.info.gz gnxfilelist finish $E2FS } #eof