Changeset 621 for trunk/configure


Ignore:
Timestamp:
06/17/13 21:25:11 (11 years ago)
Author:
bas
Message:

added support for trac installations in a virtual environment, eg:

  • configure --virtualenv=/data/virtualenvs/trac
  • set/override it with email2trac --virtualenv=/data/virtualenv/trac_1.2

Updated release version to 2.7

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/configure

    r574 r621  
    579579PYTHON_VERSION
    580580PYTHON
     581virtualenv
    581582install_user
    582583mta_user
     
    627628with_trac_user
    628629with_mta_user
     630with_virtualenv
    629631'
    630632      ac_precious_vars='build_alias
     
    12541256  --with-mta_user=USER    Specify the name of the user that your MTA use,
    12551257                          default=nobody
     1258
     1259  --with-virtualenv=directory    Specify the default virtualenv path to use for trac,
     1260                          default=""
    12561261
    12571262Some influential environment variables:
     
    18941899
    18951900
     1901
    18961902#DEBUG=0
    18971903
     
    32093215else
    32103216  mta_user="nobody"
     3217
     3218fi
     3219
     3220# We can specify a default virtual env path for trac
     3221#
     3222
     3223# Check whether --with-virtualenv was given.
     3224if test "${with_virtualenv+set}" = set; then :
     3225  withval=$with_virtualenv; case "${withval}" in
     3226        *) virtualenv="${withval}" ;;
     3227  esac
     3228else
     3229  virtualenv=""
    32113230
    32123231fi
Note: See TracChangeset for help on using the changeset viewer.