diff options
| -rw-r--r-- | contrib/splicex/LINUX/manual | 38 | ||||
| -rwxr-xr-x | contrib/splicex/configure | 39 | 
2 files changed, 37 insertions, 40 deletions
| diff --git a/contrib/splicex/LINUX/manual b/contrib/splicex/LINUX/manual index e714a9a..9ad0b66 100644 --- a/contrib/splicex/LINUX/manual +++ b/contrib/splicex/LINUX/manual @@ -1,29 +1,25 @@  .TH SpliceX "" "" "" "" -             __________        _ _         __  __    ______ -            / / / / ___| _ __ | (_) ___ ___\\ \\/ /   / / / / -           / / / /\\___ \\| '_ \\| | |/ __/ _ \\\\  /   / / / / -          / / / /  ___) | |_) | | | (_|  __//  \\  / / / / -         /_/_/_/  |____/| .__/|_|_|\\___\\___/_/\\_\\/_/_/_/ -                        |_| +                    __________        _ _         __  __    ______ +                   / / / / ___| _ __ | (_) ___ ___\\ \\/ /   / / / / +                  / / / /\\___ \\| '_ \\| | |/ __/ _ \\\\  /   / / / / +                 / / / /  ___) | |_) | | | (_|  __//  \\  / / / / +                /_/_/_/  |____/| .__/|_|_|\\___\\___/_/\\_\\/_/_/_/ +                               |_| -              .:Brute Force Utilities For GNU/Linux:. +                     .:Brute Force Utilities For GNU/Linux:. -SpliceX is free software: you can redistribute it and/or modify it under -.br -the terms of the GNU General Public License as published by the Free -.br -Software Foundation, either version 3 of the License, or (at your option) -.br -any later version. +       SpliceX is free software: you can redistribute it and/or modify it under +       the terms of the GNU General Public License as published by the Free +       Software Foundation, either version 3 of the License, or (at your option) +       any later version. + +       SpliceX is distributed in the hope that it will be useful, but WITHOUT +       ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or +       FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License +       for more details. <http://www.gnu.org/licenses/> + -SpliceX is distributed in the hope that it will be useful, but WITHOUT -.br -ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -.br -FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License -.br -for more details. <http://www.gnu.org/licenses/>  .SH  OPTIONS diff --git a/contrib/splicex/configure b/contrib/splicex/configure index 4637910..bda1d86 100755 --- a/contrib/splicex/configure +++ b/contrib/splicex/configure @@ -1,4 +1,5 @@  #!/bin/bash +clear  echo "       __________        _ _         __  __    ______      / / / / ___| _ __ | (_) ___ ___\\ \\/ /   / / / / @@ -15,42 +16,42 @@ if [[ $(id -u) != 0 ]]; then   exit 1  fi -sleep 1 +sleep .7  echo 'CONFIGURE: ' -sleep 1 +sleep .7  echo -ne 'checking for python' -sleep 1 +sleep .7  echo -ne '.' -sleep 1 +sleep .7  echo -ne '.' -sleep 1 +sleep .7  echo -ne '.'  if which python >/dev/null; then - sleep 1 + sleep .7   echo -ne ' python found :-)'   echo - sleep 1 + sleep .7  else - sleep 1 + sleep .7   echo -ne ' python not found. Quiting... :-('   echo   exit 1  fi  echo -ne 'checking for man' -sleep 1 +sleep .7  echo -ne '.' -sleep 1 +sleep .7  echo -ne '.' -sleep 1 +sleep .7  echo -ne '.'  if which man >/dev/null; then - sleep 1 + sleep .7   echo -ne ' man found :-)'   echo - sleep 1 + sleep .7  else - sleep 1 + sleep .7   echo -ne ' man not found. Quiting... :-('   echo   exit 1 @@ -58,16 +59,16 @@ fi  PYPATH=`which python`  echo "configuring splicex for $PYPATH" -sleep 1 +sleep .7  echo -ne '.' -sleep 1 +sleep .7  echo -ne '.' -sleep 1 +sleep .7  echo -ne '.'  sed -e s^PYTHON^"$PYPATH"^g LINUX/splicex.py >LINUX/splicex.cp  sed -e s^PYTHON^"$PYPATH"^g LINUX/splicex-deshadow.py >LINUX/splicex-deshadow.cp  echo "configured...continuing \`make install'" -sleep 1 +sleep .7  echo  echo 'INSTALL: ' -sleep 1 +sleep .7 | 
