till
2009-01-09 396afd474229d25a42633243bcaf1de0d990ecbe
* generalized executable paths for bash and phpdoc
* simplyfied probing for phpdoc
* added checks to make sure this is executed on the shell



1 files modified
23 ■■■■■ changed files
bin/makedoc.sh 23 ●●●●● patch | view | raw | blame | history
bin/makedoc.sh
@@ -1,4 +1,13 @@
#!/bin/bash
#!/usr/bin/env bash
if [ -z "$SSH_TTY" ]
then
  if [ -z "$DEV_TTY" ]
  then
    echo "Not on the shell."
    exit 1
  fi
fi
TITLE="RoundCube Classes"
PACKAGES="Core"
@@ -6,15 +15,11 @@
INSTALL_PATH="`dirname $0`/.."
PATH_PROJECT=$INSTALL_PATH/program/include
PATH_DOCS=$INSTALL_PATH/doc/phpdoc
BIN_PHPDOC="`/usr/bin/which phpdoc`"
if [ -x /usr/local/php5/bin/phpdoc ]
if [ ! -x "$BIN_PHPDOC" ]
then
  PATH_PHPDOC=/usr/local/php5/bin/phpdoc
elif [ -x /usr/bin/phpdoc ]
then
  PATH_PHPDOC=/usr/bin/phpdoc
else
  echo "phpdoc not found"
  echo "phpdoc not found: $BIN_PHPDOC"
  exit 1
fi
@@ -24,6 +29,6 @@
PRIVATE=off
# make documentation
$PATH_PHPDOC -d $PATH_PROJECT -t $PATH_DOCS -ti "$TITLE" -dn $PACKAGES \
$BIN_PHPDOC -d $PATH_PROJECT -t $PATH_DOCS -ti "$TITLE" -dn $PACKAGES \
-o $OUTPUTFORMAT:$CONVERTER:$TEMPLATE -pp $PRIVATE