#!/bin/sh -e # part of the gn*nix conspiracy http://gnnix.org # Copyright (C) Linus Sphinx 2004 # gnx functions make the distro system #------------------------------------------- gnxossl() { gnxunwrap ${OSSL} gnxfilelist start ${OSSL} sed 's/^passwd/openssl-passwd/' doc/apps/passwd.pod > doc/apps/openssl-passwd.pod rm doc/apps/passwd.pod ./config --openssldir=/etc/ssl --prefix=/usr shared if [ "$?" != "0" ]; then echo config $@ echo returned non zero exit 1 fi gnxmake MANDIR=/usr/share/man gnxmake MANDIR=/usr/share/man install cp -r certs /etc/ssl rmdir /etc/ssl/lib chmod 755 /usr/lib/pkgconfig gnxfilelist finish ${OSSL} } #eof