X-Git-Url: https://git.evergreen-ils.org/?p=working%2FEvergreen.git;a=blobdiff_plain;f=install.conf.default;h=b08c890508930821261183e4ecdab1ea5f26bea9;hp=f9dd420fa791348982fe452d4ace2cf0c8f1ea0a;hb=41136fb5f4e42139f719b9a72755f592559c05c5;hpb=cee692f28eeeeb458519f7dbd487162bfaca44fd diff --git a/install.conf.default b/install.conf.default index f9dd420fa7..b08c890508 100644 --- a/install.conf.default +++ b/install.conf.default @@ -30,8 +30,10 @@ # openils_core - install the Open-ILS perl modules, and core files for running and openils server # openils_web - copies over the javascript and html templates to the web root directory for running the OPAC # openils_marcdumper - utility code for converting MARC to MARCXML +# openils_db - installs the database schemas +# openils_reporter - installs the base of OpenILS Reporter # -# evergreen_all - builds all Evergreen components +# evergreen_cor - builds core Evergreen components (does not build evergreen_xul_client!) # evergreen_xul_client - client XUL application # # When running the server components of OpenSRF/OpenILS, the simplest @@ -41,7 +43,7 @@ # If you only want to build the client app, then just build evergreen_xul_client. # -------------------------------------------------------------------- -TARGETS=("opensrf_all"); +TARGETS=("opensrf_all" "openils_all" "evergreen_core"); # -------------------------------------------------------------------- @@ -49,13 +51,15 @@ TARGETS=("opensrf_all"); # libraries will be installed into PERFIX/lib, etc. The user # running 'install.sh install' must have write permissions to PREFIX # -------------------------------------------------------------------- -PREFIX="/pines/"; +PREFIX="/openils/"; BINDIR="$PREFIX/bin/"; LIBDIR="$PREFIX/lib/"; PERLDIR="$LIBDIR/perl5/"; INCLUDEDIR="$PREFIX/include/"; ETCDIR="$PREFIX/etc/"; -WEB="$PREFIX/web/"; +WEBDIR="$PREFIX/web/"; +CGIDIR="$PREFIX/cgi-bin/"; +TEMPLATEDIR="$PREFIX/templates"; # -------------------------------------------------------------------- @@ -70,15 +74,17 @@ TMP="/tmp/ilstmp/"; # building the mod_ils_gateway C plugin for allowing web access # to the published API. # -------------------------------------------------------------------- -APXS2="/pines/apps/apache2/bin/apxs"; + +APXS2="/opt/bin/apxs"; # -------------------------------------------------------------------- -# Directory where the Apache2 header files are located. This must +# Directories where the Apache2 header files are located. These must # be set when building the mod_ils_gateway C plugin for allowing web # access to the published API. # -------------------------------------------------------------------- -APACHE2_HEADERS="/pines/apps/apache2/include/"; +APACHE2_HEADERS="/opt/include/"; +APR_HEADERS="/opt/include/"; # -------------------------------------------------------------------- @@ -93,7 +99,20 @@ LIBXML2_HEADERS="/usr/include/libxml2/"; # These point to the top level makefiles for each of the sub # projects. Only change these if you have relocated the directories. # -------------------------------------------------------------------- -OPENSRF_DIR="OpenSRF/src/"; -OPENILS_DIR="Open-ILS/src/"; -EVERGREEN_DIR="Evergreen/"; +OPENSRFDIR="OpenSRF/src/"; +OPENILSDIR="Open-ILS/src/"; +EVERGREENDIR="Evergreen/"; + + + + +# -------------------------------------------------------------------- +# These are used to create the perl DBI DSN for the bootstrapping +# scripts. +# -------------------------------------------------------------------- +DBDRVR="Pg"; +DBHOST="127.0.0.1"; +DBNAME="demo-dev"; +DBUSER="postgres"; +DBPW="";