#!/bin/sh -e # part of the gn*nix conspiracy http://gnnix.org # Copyright (C) Linus Sphinx 2004 # gnx functions make the distro system #------------------------------------------- gnxmoz() { gnxunwrap ${1} cd /usr/src/mozilla gnxconfigure --prefix=/usr --with-default-mozilla-five-home=/usr/lib/mozilla --enable-default-toolkit=gtk2 --with-x --with-system-zlib --with-system-jpeg --with-system-png --with-system-mng --enable-xft --enable-crypto --disable-accessibility --disable-tests --disable-debug --disable-logging --enable-reorder --enable-strip --disable-pedantic --enable-cpp-rtti --enable-extensions=all --disable-freetype2 gnxfilelist start ${1} gnxmake gnxmake install gnxfilelist finish ${1} } #eof