File:  [LON-CAPA] / loncom / build / Makefile
Revision 1.190: download - view: text, annotated - select for diffs
Mon Aug 24 13:44:56 2009 UTC (14 years, 9 months ago) by raeburn
Branches: MAIN
CVS tags: version_2_10_X, bz6209-base, bz6209, HEAD, GCI_3, GCI_2
- Create special $dom-domainconfig user (if missing) for any domains for which
  the current machine is the primary library server.

    1: # The LearningOnline Network with CAPA
    2: 
    3: # $Id: Makefile,v 1.190 2009/08/24 13:44:56 raeburn Exp $
    4: 
    5: # TYPICAL USAGE of this Makefile is primarily for two targets:
    6: # "make build" and "make install".
    7: # Many other targets and features are supported (see the initial
    8: # help targets).
    9: 
   10: # ======================================= Default settings for Makefile options
   11: DISTPROBE=`perl ./distprobe`
   12: DIST=$(DISTPROBE)
   13: CATEGORY="development"
   14: SOURCE=../..
   15: TARGET=""
   16: NORESTORECONF="0"
   17: HOSTNAME=""
   18: LAUNCH=| perl
   19: QUERYLAUNCH=> /tmp/loncapa_query.pl; perl /tmp/loncapa_query.pl
   20: OUTSTREAM=>
   21: SAVE=program.pl.$(TIMESTAMP)
   22: LAUNCHSAVE=$(OUTSTREAM) $(SAVE)
   23: METAMTARGET=""
   24: MTARGET=""
   25: VERSION=CVS_HEAD
   26: # The current working definition for "RELEASE" is: changes not in the software,
   27: # but in the operating system dependent packaging of the software.  Thus, the
   28: # generic tarball releases do not need to have a release number specified.
   29: RELEASE=1 # As a general rule for now, this is always being set to "1".
   30: DIRTARGET=loncapa-$(VERSION)
   31: LOCALAUTHPATH=/home/httpd/lib/perl
   32: 
   33: # =============================================== Help targets for the Makefile
   34: # If 'make' is run without any arguments, the 'help' target is called since
   35: # it is the first target.
   36: help:
   37: 	@echo "*** You need to specify a valid target ***"
   38: 	@echo "To get a list of valid targets: \"make help_TARGETS\""
   39: 	@echo "To get a list of valid options: \"make help_OPTIONS\""
   40: 	@echo " "
   41: 	@echo "Typically invoked targets are:"
   42: 	@echo "    make build"
   43: 	@echo "    make install"
   44: 	@echo "    make test"
   45: 	@echo "    make clean"
   46: 
   47: help_OPTIONS:
   48: 	@echo "* ADJUSTABLE OPTIONS *"
   49: 	@echo "(option) DIST can be redhat7, debian, redhat6.2, or default"
   50: 	@echo "         You probably do not need to specify this; it is"
   51: 	@echo "         automatically probed for."
   52: 	@echo "(option) CATEGORY can be 'runtime' or 'development'; currently"
   53: 	@echo "         the 'development' setting is the most reliable;"
   54: 	@echo "         eventually, production machines should be using the"
   55: 	@echo "         'runtime' settings"
   56: 	@echo "(option) SOURCE is an absolute or relative directory path."
   57: 	@echo "         SOURCE corresponds to the root directory of the"
   58: 	@echo "         loncapa source release"
   59: 	@echo "(option) TARGET is an absolute or relative directory path."
   60: 	@echo "         This is where files will be installed on your system."
   61: 	@echo "         Typically, this should be set to nothing (which"
   62: 	@echo "         corresponds to the '/' root of the entire filesystem)."
   63: 	@echo "(option) NORESTORECONF, when set to a non-zero value, stops"
   64: 	@echo "         filesystem upgrades from overwriting existing "
   65: 	@echo "         configuration files.  Ordinarily, NORESTORECONF=0, "
   66: 	@echo "         because the existing configuration files are safely"
   67: 	@echo "         dealt with (or so one hopes... :) )."
   68: 	@echo "(option) HOSTNAME specifies the name of a remote server for"
   69: 	@echo "         which a NET_* Makefile target should be launched"
   70: 	@echo "(option) VERSION; especially useful for the 'tardist' target"
   71: 	@echo "         this tags the tarball file and internal directories"
   72: 	@echo "         with a specific version string (conventionally "
   73: 	@echo "         numeric)"
   74: 
   75: help_TARGETS:
   76: 	@echo "*** RUNNING TESTS TO ENSURE SOLID PERFORMANCE ***"
   77: 	@echo "test: test different parts of the LON-CAPA system (TEST_*)."
   78: 	@echo "      Makefile-dependent processes as well as horizontal and"
   79: 	@echo "      vertical aspects of the LON-CAPA system architecture"
   80: 	@echo "      are all tested."
   81: 	@echo "TEST_lpml_scripts: make sure that the system can process"
   82: 	@echo "                   the Linux Packaging Markup Language."
   83: 	@echo "                   This is neither horizontal or vertical"
   84: 	@echo "                   testing.  The idea is to make sure that"
   85: 	@echo "                   the installation software itself works"
   86: 	@echo "                   as expected."
   87: 	@echo "TEST_system_dependencies: make sure that all needed system "
   88: 	@echo "                          components are active and present "
   89: 	@echo "                          on the server such as perl modules"
   90: 	@echo "                          and the MySQL database"
   91: 	@echo "                          (horizontal testing)"
   92: 	@echo "TEST_web_layer: mimic a login and various vertical actions on "
   93: 	@echo "                a LON-CAPA system"
   94: 	@echo "TEST_hosts_and_domain_tab: make sure that a "
   95: 	@echo "        loncapa/loncom/hosts.tab and loncapa/loncom/domain.tab"
   96: 	@echo "        file is specified for installation"
   97: 	@echo "TEST_html2ps: test for the presence of html2ps which is needed"
   98: 	@echo "              for making a PDF compilation for pdfdoc"
   99: 	@echo "*** GENERAL TARGETS SUCH AS 'build' AND 'install' ***"
  100: 	@echo "build: compile the source tree"
  101: 	@echo "buildflag: a semaphore that helps educate the user to run"
  102: 	@echo "           'make build' first before running 'make install'"
  103: 	@echo "configinstall: install configuration files and restore with"
  104: 	@echo "               prior information"
  105: 	@echo "install: install from a ***compiled*** source tree"
  106: 	@echo "         (see make build) to a specified TARGET destination"
  107: 	@echo "         on the filesystem (default setting is TARGET=/)."
  108: 	@echo "rawinstall: just install files, links and directories without"
  109: 	@echo "            any bells or whistles (e.g. double-checking"
  110: 	@echo "            configurations, fine-tuning webserver, etc.)"
  111: 	@echo "hosts_and_domain_tab: install the hosts.tab and domain.tab" 
  112: 	@echo "                      to the filesystem"
  113: 	@echo "webserverconf: fine-tune the web server configuration;"
  114: 	@echo "               make sure the proper 'Include' statements"
  115: 	@echo "               are appended to httpd.conf"
  116: 	@echo "vanillatar: generate top-level files such as README, UPDATE,"
  117: 	@echo "            CHECKRPMS, and TEST (needed by tardist)"
  118: 	@echo "tardist: build a tarball that will upgrade the software on a "
  119: 	@echo "         system"
  120: 	@echo "sanitycheck: probe for common errors and recommend fixes to"
  121: 	@echo "             the user"
  122: 	@echo "logcleanup: clean spurious logfile entries"
  123: 	@echo "clean_file_permissions: Remove erroneous keys from the  "
  124: 	@echo "    file_permissions.db"
  125: 	@echo "accesscount_seed: Migrate the access counting mechanism from "
  126: 	@echo "    nohist_reseval.db to nohist_accesscount.db."
  127: 	@echo "modify_config_files: Perform automatic update of the "
  128: 	@echo "    configuration files for yum and MySQL."
  129: 	@echo "ntpcheck: test to see if ntp is installed and running."
  130: 	@echo "html_parser_check: test functionality of HTML::Parser."
  131: 	@echo "math_random_check: test functionality of Math::Random."
  132: 	@echo "cron_lpmlcheck: remove cron file /etc/cron.d/loncapa.lpml."
  133: 	@echo "chkconfig: test runlevels of httpd and loncontrol."
  134: 	@echo "rpmcheck: test to see if rpms known to confict are installed."
  135: 	@echo "wrap_setuid: put a C wrapper around setuid scripts."
  136:         @echo "latex_fixup: regenerate ls-R database for the latex base."
  137: 	@echo "picins_check: check for picins.sty, retrieve and rebuild"
  138: 	@echo "             filename databases used by LaTeX"
  139: 	@echo "mimetex_version_check: check if mimetex.cgi version has changed,"
  140: 	@echo "                      if so remove files from mimetexcache."
  141: 	@echo "updatequery: solicit the user for machine configuration"
  142: 	@echo "             information; to be incorporated during an update"
  143: 	@echo "             procedure (via the UPDATE command)"
  144: 	@echo "postinstall: double-check things after installation"
  145: 	@echo "VERSION: tag the filesystem with version information inside"
  146: 	@echo "         /etc/loncapa-release and"
  147: 	@echo "         /home/httpd/html/lon-status/version.txt"
  148: 	@echo "aboutVERSION: place version information inside about.html"
  149: 	@echo "              and loncapa_apache.conf"
  150: 	@echo "*** Makefile.* TARGETS BUILT DYNAMICALLY FROM loncapafiles.lpml ***"
  151: 	@echo "Makefile.configinstall: generate a Makefile for configuration"
  152: 	@echo "                        files; built dynamically from"
  153: 	@echo "                        loncapafiles.lpml"
  154: 	@echo "Makefile.build: generate a Makefile for compiling"
  155: 	@echo "                files inside the source directory; "
  156: 	@echo "                Makefile.build is generated from"
  157: 	@echo "                loncapafiles.lpml"
  158: 	@echo "Makefile.install: generate a Makefile for installing"
  159: 	@echo "                  files; built dynamically from"
  160: 	@echo "                  loncapafiles.lpml"
  161: 	@echo "*** TARGETS FOR OPERATING ON FILESYSTEMS ACROSS THE NETWORK ***"
  162: 	@echo "lpmladm: coordinates username=lpmladm mediated secure shell"
  163: 	@echo "         processes; needed for the NET_* targets"
  164: 	@echo "NET_hosts_and_domain_tab: install the hosts.tab and domain.tab"
  165: 	@echo "                          to a filesystem elsewhere"
  166: 	@echo "                          on the network"
  167: 	@echo "NET_webserverconf: fine-tune the web server configuration on a"
  168: 	@echo "                   filesystem elsewhere on the network"
  169: 	@echo "NET_rawinstall: launch the rawinstall target on a filesystem"
  170: 	@echo "                elsewhere on the network"
  171: 	@echo "*** TARGETS FOR MAKING LISTS (MANIFESTS) OF LON-CAPA FILES ***"
  172: 	@echo "MANIFEST_all: generate a list of all files to be included in"
  173: 	@echo "              the distributed tarball"
  174: 	@echo "MANIFEST_cvs: essentially a list of all CVS/Entries files used"
  175: 	@echo "              for 'time-checking' intelligence"
  176: 	@echo "MANIFEST_lpml: a list of all LON-CAPA files to be installed,"
  177: 	@echo "               compile from, used as building software, and"
  178: 	@echo "               testing"
  179: 	@echo "MANIFEST_vanillatar: 'README'-type top-level files that a user"
  180: 	@echo "                     of the distributed tarball would first"
  181: 	@echo "                     look at and work with"
  182: 	@echo "*** STATUS REPORT TARGETS ***"
  183: 	@echo "warningnote: analyze the WARNINGS file and produce a synopsis"
  184: 	@echo "             and recommended action to the user"
  185: 	@echo "HTML: generate an HTML-formatted description of the LON-CAPA"
  186: 	@echo "      source files"
  187: 	@echo "status: compare the TARGET filesystem with a compiled loncapa "
  188: 	@echo "        source directory"
  189: 	@echo "statuspost: post the results of "make status" to "
  190: 	@echo "            TARGET/home/httpd/html/lon-status/filestatus.html"
  191: 	@echo "rpmstatus: compare the rpms on a system to defined lists "
  192: 	@echo "           loncapa/doc/otherfiles/cd_rpms and "
  193: 	@echo "           loncapa/doc/otherfiles/rpm_list.txt"
  194: 	@echo "rpmstatuspost: post the results of 'make rpmstatus' to "
  195: 	@echo "            TARGET/home/httpd/html/lon-status/rpmstatus.html"
  196: 	@echo "*** ALTERNATIVE PACKAGING TARGETS ***"
  197: 	@echo "RPM: build LON-CAPA-base RPM from loncapa source repository"
  198: 	@echo "     (still under development)"
  199: 	@echo "DPKG: build a loncapa Debian package from loncapa source"
  200: 	@echo "      repository (still under development)"
  201: 	@echo "base_rpm_file_list: create a file listing to be used for"
  202: 	@echo "                    generating an RPM software package"
  203: 	@echo "BinaryRoot: create a BinaryRoot directory to be used for"
  204: 	@echo "            generating an RPM software package"
  205: 	@echo "*** MASTER DOCUMENTATION TARGETS ***"	
  206: 	@echo "doc: generate web-page documentation for install.lon-capa.org"
  207: 	@echo "     (and eventually for documentation on installed machines)"
  208: 	@echo "pdfdoc: make a PDF-formatted compilation of all installation"
  209: 	@echo "        documentation"
  210: 	@echo "*** KEEPING THINGS CLEAN ***"
  211: 	@echo "clean: remove any files that might (even by remote chance)"
  212: 	@echo "       interfere with rebuilding/recompiling software"
  213: 	@echo "reallyclean: remove all files that were generated during"
  214: 	@echo "             building or compilation of the software"
  215: 	@echo "uninstall: remove all directories that do not contain files"
  216: 	@echo "           from other software packages and that do not contain"
  217: 	@echo "           student and instructor data; NOTE THAT THIS IS"
  218: 	@echo "           INTERACTIVE--you will be given a final chance"
  219: 	@echo "           to look at what will and will not be deleted."
  220: 	@echo "           Still, be careful.  This is a very new target and is"
  221: 	@echo "           an alpha-level software feature for now."
  222: 	@echo "backup: rolls a tarball backup of all important student and "
  223: 	@echo "        instructor data (NOT YET IMPLEMENTED)"
  224: 	@echo "restore: reseeds a LON-CAPA server with tarball backups "
  225: 	@echo "         generated by \"make backup\" (NOT YET IMPLEMENTED)"
  226: 	@echo "*** AUXILIARY TESTS ***"
  227: 	@echo "localauth: tests to see if localauth exists or not and run"
  228: 	@echo "           appropriate tests"
  229: 	@echo "*** A HELPFUL DEPENDENCY ***"
  230: 	@echo "alwaysrun: blank target that is a dependency for targets"
  231: 	@echo "           that should \"always run\""
  232: 
  233: # =========================== *** RUNNING TESTS TO ENSURE SOLID PERFORMANCE ***
  234: 
  235: test: TEST_lpml_scripts TEST_system_dependencies TEST_web_layer
  236: 	@echo "ALL SYSTEM DEPENDENCY TESTS SUCCESSFUL"
  237: 
  238: TEST_system_dependencies:
  239: 	@echo "TESTING SYSTEM DEPENDENCIES"
  240: 	cd system_dependencies; make
  241: 
  242: TEST_lpml_scripts:
  243: 	@echo "TESTING LPML INSTALLATION CODE"
  244: 	cd ../test; perl filecomparetest.pl
  245: 
  246: TEST_web_layer:
  247: 	@echo "TESTING WEB LAYER"
  248: 	cd weblayer_test; make
  249: 
  250: TEST_hosts_tab:
  251: 	@echo "Testing hosts.tab"
  252: 	@if (test -e ../hosts.tab); then \
  253: 		echo "there is a defined link or file; assume okay"; \
  254: 	else echo "**** ERROR **** hosts.tab not defined!" && \
  255: 	     echo -n "You need to do one of the following within your " && \
  256: 	     echo "CVS repository (cd loncapa/loncom)" && \
  257: 	     echo "   1) ln -s production_dns_hosts.tab dns_hosts.tab" && \
  258: 	     echo "   2) ln -s development_dns_hosts.tab dns_hosts.tab" && \
  259: 	     echo "or 3) ln -s rawhide_hosts.tab hosts.tab" && \
  260: 	     echo "(you most likely want option #1, production_hosts.tab)" && \
  261: 	     exit 1; \
  262: 	fi
  263: 
  264: TEST_domain_tab:
  265: 	@echo "Testing domain.tab"
  266: 	@if (test -e ../domain.tab); then \
  267: 		echo "there is a defined link or file; assume okay"; \
  268: 	else echo "**** ERROR **** domain.tab not defined!" && \
  269: 	     echo -n "You need to do one of the following within your " && \
  270: 	     echo "CVS repository (cd loncapa/loncom)" && \
  271: 	     echo "   1) ln -s production_dns_domain.tab dns_domain.tab" && \
  272: 	     echo "   2) ln -s development_dns_domain.tab dns_domain.tab" && \
  273: 	     echo "or 3) ln -s rawhide_domain.tab domain.tab" && \
  274: 	     echo "(you most likely want option #1, production_domain.tab)" && \
  275: 	     exit 1; \
  276: 	fi
  277: 
  278: TEST_html2ps:
  279: 	@if (test -e /usr/local/html2ps/bin/html2ps); then \
  280: 		echo "I can find html2ps; assume okay"; \
  281: 	else \
  282: 	echo "**** ERROR **** cannot find /usr/local/html2ps/bin/html2ps!" && \
  283:         echo "Please visit http://www.tdb.uu.se/~jan/html2ps.html" && \
  284: 	exit 1; \
  285: 	fi
  286: 
  287: # ======================= *** GENERAL TARGETS SUCH AS 'build' AND 'install' ***
  288: 
  289: build: Makefile.build pod2html.sh pod2man.sh
  290: 	install -d $(SOURCE)/doc/man
  291: 	install -d $(SOURCE)/doc/scripts
  292: 	install -d $(SOURCE)/doc/lib/perl/Apache
  293: 	echo -n "" > WARNINGS
  294: 	make -f Makefile.build all
  295: 	echo '1' > buildflag
  296: 	make warningnote
  297: 
  298: buildflag:
  299: 	@echo "**** ERROR **** You need to run 'make build' first" > WARNINGS
  300: 	make warningnote
  301: 	@need_to_run_make_build_first 2>/dev/null
  302: 
  303: configinstall: Makefile.configinstall
  304: 	make -f Makefile.configinstall SOURCE="$(SOURCE)" TARGET="$(TARGET)" \
  305: 	configfiles
  306: 	if (test "0" = $(NORESTORECONF)); then \
  307: 	perl loncaparestoreconfigurations suffix .lpmlnew; fi
  308: 
  309: install: buildflag VERSION TEST_hosts_tab TEST_domain_tab Makefile.install Makefile
  310: 	echo -n "" > WARNINGS
  311: 	make -f Makefile.install SOURCE="$(SOURCE)" TARGET="$(TARGET)" \
  312: 	directories
  313: 	make -f Makefile.install SOURCE="$(SOURCE)" TARGET="$(TARGET)" files
  314: 	make -f Makefile.install SOURCE="$(SOURCE)" TARGET="$(TARGET)" links
  315: 	make SOURCE="$(SOURCE)" TARGET="$(TARGET)" \
  316: 	NORESTORECONF="$(NORESTORECONF)" configinstall
  317: 	make postinstall
  318: 	make warningnote
  319: 	@echo "You can now run 'make test' to see if your system is ready to go!"
  320: #	@echo "NOTE THAT YOUR SYSTEM MUST HAVE MYSQL WITH A USER=\"www\" AND"
  321: #	@echo -n "PASSWORD=\"localhostkey\" FOR www\@localhost"
  322: #	@echo -n "(YOU MAY NEED TO REINITIALIZE YOUR MYSQL www\@localhost USER)"
  323: #	@echo -n "Please see http://install.lon-capa.org/ for more information"
  324: 
  325: rawinstall: VERSION Makefile.install Makefile
  326: 	echo -n "" > WARNINGS
  327: 	make -f Makefile.install SOURCE="$(SOURCE)" TARGET="$(TARGET)" \
  328: 	directories
  329: 	make -f Makefile.install SOURCE="$(SOURCE)" TARGET="$(TARGET)" files
  330: 	make -f Makefile.install SOURCE="$(SOURCE)" TARGET="$(TARGET)" links
  331: 	make SOURCE="$(SOURCE)" TARGET="$(TARGET)" \
  332: 	NORESTORECONF="$(NORESTORECONF)" configinstall
  333: 
  334: hosts_and_domain_tab: TEST_hosts_tab TEST_domain_tab
  335: 	cat $(SOURCE)/doc/loncapafiles/loncapafiles.lpml | \
  336: 	perl xfml_parse.pl $(SOURCE)/doc/loncapafiles/valid_hosts.xfml | \
  337: 	perl lpml_parse.pl install $(CATEGORY) $(DIST) "$(SOURCE)" \
  338: 	"$(TARGET)" > Makefile.install
  339: 	make -f Makefile.install directories
  340: 	make -f Makefile.install files
  341: 	@echo "If hosts.tab or domain.tab has changed, restart httpd and loncontrol:"
  342: 	@echo "   /etc/rc.d/init.d/httpd restart"
  343: 	@echo "   /etc/rc.d/init.d/loncontrol restart"
  344: 
  345: webserverconf:
  346: 	cat $(SOURCE)/doc/loncapafiles/webserver.piml | \
  347: 	perl piml_parse.pl $(CATEGORY) $(DIST) "$(TARGET)" $(LAUNCH) | \
  348: 	tee -a WARNINGS
  349: 
  350: # ---------------- Top-level files such as README, UPDATE, CHECKRPMS, and TEST
  351: vanillatar:
  352: 	# --------------------------- Point UPDATE to the internal make process
  353: 	cp  $(SOURCE)/loncom/UPDATE $(SOURCE)/UPDATE
  354: 	# ----------------------------- Point TEST to the internal make process
  355: 	echo '#!/bin/sh' > $(SOURCE)/TEST
  356: 	echo 'cd loncom/build; make test' >> $(SOURCE)/TEST
  357: 	echo 'cd system_dependencies || cd loncom/build/system_dependencies; cp -v CPAN_STATUS_REPORT ../../../CPAN_STATUS_REPORT' >> $(SOURCE)/TEST
  358: 	# ----------------------------- Copy CHECKRPMS to the vanilla top-level
  359: 	cp -v $(SOURCE)/loncom/build/CHECKRPMS $(SOURCE)/CHECKRPMS
  360: 	# ----------------------- vanilla executables must indeed be executable
  361: 	chmod a+rx $(SOURCE)/UPDATE
  362: 	chmod a+rx $(SOURCE)/TEST
  363: 	chmod a+rx $(SOURCE)/CHECKRPMS
  364: 	# -------------------------------- Copy README to the vanilla top-level
  365: 	#cp -v $(SOURCE)/doc/shortest_path_redhat7.2.txt $(SOURCE)/README
  366: 
  367: tardist:
  368: 	make MANIFEST_all
  369: 	make vanillatar
  370: 	# -------------------------------------------------------- Make tardist
  371: 	@cd $(SOURCE); \
  372: 	if (test -h $(DIRTARGET)); then \
  373: 		echo "$(DIRTARGET) link already defined; assume okay"; \
  374: 	else \
  375: 		ln -s . $(DIRTARGET); \
  376: 	fi
  377: 	cp -v $(SOURCE)/loncom/license/about.html \
  378: 	$(SOURCE)/loncom/license/about.html.orig
  379: 	cp -v $(SOURCE)/loncom/loncapa_apache.conf \
  380: 	$(SOURCE)/loncom/loncapa_apache.conf.orig
  381: 	make aboutVERSION
  382: 	cd $(SOURCE); \
  383: 	tar --no-recursion --numeric-owner --files-from MANIFEST \
  384: 	-h -czf $(DIRTARGET).tar.gz 2>tar_WARNINGS || [ "0" == "0" ]
  385: 	mv -v $(SOURCE)/loncom/license/about.html.orig \
  386: 	$(SOURCE)/loncom/license/about.html
  387: 	mv -v $(SOURCE)/loncom/loncapa_apache.conf.orig \
  388: 	$(SOURCE)/loncom/loncapa_apache.conf
  389: 	cat $(SOURCE)/tar_WARNINGS | \
  390: 	xargs --replace=XXX echo '**** WARNING **** XXX' > WARNINGS
  391: 	rm -f $(SOURCE)/tar_WARNINGS
  392: 	make warningnote
  393: 
  394: ntpcheck:
  395: 	cat $(SOURCE)/doc/loncapafiles/ntpcheck.piml | \
  396: 	perl piml_parse.pl $(CATEGORY) $(DIST) "$(TARGET)" $(LAUNCH) | \
  397: 	tee -a WARNINGS
  398: 
  399: html_parser_check:
  400: 	cat $(SOURCE)/doc/loncapafiles/html_parser_check.piml | \
  401: 	perl piml_parse.pl $(CATEGORY) $(DIST) "$(TARGET)" $(LAUNCH) | \
  402: 	tee -a WARNINGS
  403: 
  404: math_random_check:
  405: 	cat $(SOURCE)/doc/loncapafiles/math_random_check.piml | \
  406: 	perl piml_parse.pl $(CATEGORY) $(DIST) "$(TARGET)" $(LAUNCH) | \
  407: 	tee -a WARNINGS
  408: 
  409: cron_lpmlcheck:
  410: 	cat $(SOURCE)/doc/loncapafiles/cron_lpmlcheck.piml | \
  411: 	perl piml_parse.pl $(CATEGORY) $(DIST) "$(TARGET)" $(LAUNCH) | \
  412: 	tee -a WARNINGS
  413: 
  414: chkconfig:
  415: 	cat $(SOURCE)/doc/loncapafiles/chkconfig.piml | \
  416: 	perl piml_parse.pl $(CATEGORY) $(DIST) "$(TARGET)" $(LAUNCH) | \
  417: 	tee -a WARNINGS
  418: 
  419: rpmcheck:
  420: 	cat $(SOURCE)/doc/loncapafiles/rpmcheck.piml | \
  421: 	perl piml_parse.pl $(CATEGORY) $(DIST) "$(TARGET)" $(LAUNCH) | \
  422: 	tee -a WARNINGS
  423: 
  424: sanitycheck:
  425: 	cat $(SOURCE)/doc/loncapafiles/sanitycheck.piml | \
  426: 	perl piml_parse.pl $(CATEGORY) $(DIST) "$(TARGET)" $(LAUNCH) | \
  427: 	tee -a WARNINGS
  428: 
  429: logcleanup:
  430: 	cat $(SOURCE)/doc/loncapafiles/logcleanup.piml | \
  431: 	perl piml_parse.pl $(CATEGORY) $(DIST) "$(TARGET)" $(LAUNCH) | \
  432: 	tee -a WARNINGS
  433: 
  434: updatequery:
  435: 	cat $(SOURCE)/doc/loncapafiles/updatequery.piml | \
  436: 	perl piml_parse.pl $(CATEGORY) $(DIST) "$(TARGET)" $(QUERYLAUNCH)
  437: 
  438: run_searchcat:
  439: 	cat $(SOURCE)/doc/loncapafiles/run_searchcat.piml | \
  440: 	perl piml_parse.pl $(CATEGORY) $(DIST) "$(TARGET)" $(QUERYLAUNCH)
  441: 
  442: clean_file_permissions:
  443: 	cat $(SOURCE)/doc/loncapafiles/clean_file_permissions.piml | \
  444: 	perl piml_parse.pl $(CATEGORY) $(DIST) "$(TARGET)" $(LAUNCH) | \
  445: 	tee -a WARNINGS
  446: 
  447: accesscount_seed:
  448: 	cat $(SOURCE)/doc/loncapafiles/accesscount_seed.piml | \
  449: 	perl piml_parse.pl $(CATEGORY) $(DIST) "$(TARGET)" $(LAUNCH) | \
  450: 	tee -a WARNINGS
  451: 
  452: modify_config_files:
  453: 	cat $(SOURCE)/doc/loncapafiles/modify_config_files.piml | \
  454: 	perl piml_parse.pl $(CATEGORY) $(DIST) "$(TARGET)" $(LAUNCH) | \
  455: 	tee -a WARNINGS
  456: 
  457: reseval_fixup:
  458: 	cat $(SOURCE)/doc/loncapafiles/reseval_fixup.piml | \
  459: 	perl piml_parse.pl $(CATEGORY) $(DIST) "$(TARGET)" $(LAUNCH) | \
  460: 	tee -a WARNINGS
  461: 
  462: update_queue_slots:
  463: 	cat $(SOURCE)/doc/loncapafiles/update_queue_slots.piml | \
  464: 	perl piml_parse.pl $(CATEGORY) $(DIST) "$(TARGET)" $(LAUNCH) | \
  465: 	tee -a WARNINGS
  466: 
  467: clearoutoldspreadsheetcache:
  468: 	cat $(SOURCE)/doc/loncapafiles/clearoutoldspreadsheetcache.piml | \
  469: 	perl piml_parse.pl $(CATEGORY) $(DIST) "$(TARGET)" $(LAUNCH) | \
  470: 	tee -a WARNINGS
  471: 
  472: sendmail_fix:
  473: 	cat $(SOURCE)/doc/loncapafiles/sendmail_fix.piml | \
  474: 	perl piml_parse.pl $(CATEGORY) $(DIST) "$(TARGET)" $(LAUNCH) | \
  475: 	tee -a WARNINGS
  476: 
  477: ownership_fix:
  478: 	cat $(SOURCE)/doc/loncapafiles/ownership_fix.piml | \
  479: 	perl piml_parse.pl $(CATEGORY) $(DIST) "$(TARGET)" $(LAUNCH) | \
  480: 	tee -a WARNINGS
  481: 
  482: wrap_setuid:
  483: 	cat $(SOURCE)/doc/loncapafiles/wrap_setuid.piml | \
  484: 	perl piml_parse.pl $(CATEGORY) $(DIST) "$(TARGET)" $(LAUNCH) | \
  485: 	tee -a WARNINGS
  486: 
  487: latex_fixup:
  488: 	cat $(SOURCE)/doc/loncapafiles/latex_fixup.piml | \
  489:         perl piml_parse.pl $(CATEGORY) $(DIST) "$(TARGET)" $(LAUNCH) | \
  490:         tee -a WARNINGS
  491: 
  492: picins_check:
  493: 	cat $(SOURCE)/doc/loncapafiles/picins_check.piml | \
  494: 	perl piml_parse.pl $(CATEGORY) $(DIST) "$(TARGET)" $(LAUNCH) | \
  495: 	tee -a WARNINGS
  496: 
  497: mimetex_version_check:
  498: 	cat $(SOURCE)/doc/loncapafiles/mimetex_version_check.piml | \
  499: 	perl piml_parse.pl  $(CATEGORY) $(DIST) "$(TARGET)" $(LAUNCH) | \
  500: 	tee -a WARNINGS
  501: 
  502: verify_domconfiguser:
  503: 	cat $(SOURCE)/doc/loncapafiles/verify_domconfiguser.piml | \
  504: 	perl piml_parse.pl  $(CATEGORY) $(DIST) "$(TARGET)" $(LAUNCH) | \
  505: 	tee -a WARNINGS
  506: 
  507: postinstall:
  508: 	make webserverconf
  509: 	make reseval_fixup
  510: 	make clean_file_permissions
  511: 	make accesscount_seed
  512: 	make update_queue_slots
  513: 	make modify_config_files
  514: 	make clearoutoldspreadsheetcache
  515: 	make chkconfig
  516: 	make rpmcheck
  517: 	make ntpcheck
  518: 	make html_parser_check
  519: 	make cron_lpmlcheck
  520: 	make sanitycheck
  521: 	make logcleanup
  522: 	make sendmail_fix
  523: 	make ownership_fix
  524: 	make wrap_setuid
  525: 	make latex_fixup
  526: 	make picins_check
  527: 	make mimetex_version_check
  528: 	make verify_domconfiguser
  529: VERSION:
  530: 	install -d $(TARGET)/etc
  531: 	echo -n "LON-CAPA release $(VERSION)-" > $(TARGET)/etc/loncapa-release
  532: 	date +"%Y%m%d" >> $(TARGET)/etc/loncapa-release
  533: 	install -d $(TARGET)/home/httpd/html/lon-status
  534: 	echo -n "$(VERSION)-" > $(TARGET)/home/httpd/html/lon-status/version.txt
  535: 	date +"%Y%m%d" >> $(TARGET)/home/httpd/html/lon-status/version.txt
  536: 
  537: aboutVERSION:
  538: 	cat $(SOURCE)/loncom/license/about.html | \
  539: 	perl -e '$$d=`date +"%Y%m%d%H"`;chomp($$d);while(<>){s/\<\!\-\- VERSION \-\-\>/$(VERSION)-$$d/; print;}' > \
  540: 	$(SOURCE)/loncom/license/about.html.new
  541: 	mv -v $(SOURCE)/loncom/license/about.html.new \
  542: 	$(SOURCE)/loncom/license/about.html
  543: 	cat $(SOURCE)/loncom/loncapa_apache.conf | \
  544: 	perl -e '$$d=`date +"%Y%m%d%H"`;chomp($$d);while(<>){s/\<\!\-\- VERSION \-\-\>/$(VERSION)-$$d/; print;}' > \
  545: 	$(SOURCE)/loncom/loncapa_apache.conf.new
  546: 	mv -v $(SOURCE)/loncom/loncapa_apache.conf.new \
  547: 	$(SOURCE)/loncom/loncapa_apache.conf
  548: 
  549: # ========= *** Makefile.* TARGETS BUILT DYNAMICALLY FROM loncapafiles.lpml ***
  550: 
  551: Makefile.configinstall: $(SOURCE)/doc/loncapafiles/loncapafiles.lpml \
  552:                         lpml_parse.pl
  553: 	cat $(SOURCE)/doc/loncapafiles/loncapafiles.lpml | \
  554: 	perl lpml_parse.pl configinstall $(CATEGORY) $(DIST) "$(SOURCE)" \
  555: 	"$(TARGET)" > Makefile.configinstall
  556: 
  557: Makefile.build: $(SOURCE)/doc/loncapafiles/loncapafiles.lpml lpml_parse.pl
  558: 	cat $(SOURCE)/doc/loncapafiles/loncapafiles.lpml | \
  559: 	perl lpml_parse.pl build $(CATEGORY) $(DIST) "$(SOURCE)" "$(TARGET)" \
  560: 	> Makefile.build
  561: 
  562: Makefile.install: alwaysrun
  563: 	cat $(SOURCE)/doc/loncapafiles/loncapafiles.lpml | \
  564: 	perl lpml_parse.pl install $(CATEGORY) $(DIST) "$(SOURCE)" \
  565: 	"$(TARGET)" > Makefile.install
  566: 
  567: # ============= *** TARGETS FOR OPERATING ON FILESYSTEMS ACROSS THE NETWORK ***
  568: 
  569: lpmladm:
  570: 	@if (test $(METAMTARGET) = "TRANSPORT"); then \
  571: 		echo "Transporting to $(HOSTNAME)"; \
  572: 		sudo make DIST=$(DIST) CATEGORY=$(CATEGORY) \
  573: 		SOURCE="$(SOURCE)" \
  574: 		TARGET="lpmladm.$(TIMESTAMP)" \
  575: 		NORESTORECONF="$(NORESTORECONF)" "$(MTARGET)"; \
  576: 		cd lpmladm.$(TIMESTAMP); \
  577: 		sudo tar czvf ../tarball$(TIMESTAMP).tar.gz .; \
  578: 		cd ..; scp tarball$(TIMESTAMP).tar.gz \
  579: 		lpmladm@$(HOSTNAME):~/tarball$(TIMESTAMP).tar.gz; \
  580: 		ssh lpmladm@$(HOSTNAME) sudo mv tarball$(TIMESTAMP).tar.gz /; \
  581: 		ssh lpmladm@$(HOSTNAME) sudo tar -x -z -v -C / \
  582: 		-p --same-owner -f \
  583: 		/tarball$(TIMESTAMP).tar.gz; \
  584: 		ssh lpmladm@$(HOSTNAME) sudo rm -f \
  585: 		/tarball$(TIMESTAMP).tar.gz; \
  586: 	elif (test $(METAMTARGET) = "LAUNCH"); then \
  587: 		echo "Launching process on $(HOSTNAME)"; \
  588: 		LAUNCHSAVE=$(OUTSTREAM) $(SAVE); \
  589: 		make DIST=$(DIST) CATEGORY=$(CATEGORY) SOURCE="$(SOURCE)" \
  590: 		TARGET="$(TARGET)" NORESTORECONF="$(NORESTORECONF)" \
  591: 		LAUNCH="$(LAUNCHSAVE)" "$(MTARGET)"; \
  592: 		scp $(SAVE) lpmladm@$(HOSTNAME):~/$(SAVE); \
  593: 		ssh lpmladm@$(HOSTNAME) sudo perl $(SAVE); \
  594: 		ssh lpmladm@$(HOSTNAME) sudo rm -f $(SAVE); \
  595: 	else \
  596: 		echo "**** ERROR **** Incorrect METAMTARGET"; \
  597: 	fi
  598: 
  599: NET_hosts_and_domain_tab:
  600: 	make TIMESTAMP=`date +"%s"` METAMTARGET="TRANSPORT" \
  601: 	MTARGET="hosts_and_domain_tab" HOSTNAME="$(HOSTNAME)" lpmladm
  602: 
  603: NET_webserverconf:
  604: 	make TIMESTAMP=`date +"%s"` METAMTARGET="LAUNCH" \
  605: 	MTARGET="webserverconf" HOSTNAME="$(HOSTNAME)" lpmladm
  606: 
  607: NET_rawinstall:
  608: 	make TIMESTAMP=`date +"%s"` METAMTARGET="TRANSPORT" \
  609: 	MTARGET="rawinstall" HOSTNAME="$(HOSTNAME)" lpmladm
  610: 
  611: # ============== *** TARGETS FOR MAKING LISTS (MANIFESTS) OF LON-CAPA FILES ***
  612: 
  613: MANIFEST_all:
  614: 	# --------------------------------------------------------- start clean
  615: 	rm -f $(SOURCE)/MANIFEST
  616: 	make MANIFEST_lpml
  617: 	make MANIFEST_vanillatar
  618: 	make MANIFEST_cvs
  619: 	# ---------------------------------- might as well include the MANIFEST
  620: 	echo 'MANIFEST' >> $(SOURCE)/MANIFEST
  621: 	# ------------------------------------------ hosts.tab are belong to us
  622: 	echo 'loncom/rawhide_hosts.tab' >> $(SOURCE)/MANIFEST
  623: 	echo 'loncom/production_hosts.tab' >> $(SOURCE)/MANIFEST
  624: 	echo 'loncom/development_hosts.tab' >> $(SOURCE)/MANIFEST
  625: 	echo 'loncom/production_domain.tab' >> $(SOURCE)/MANIFEST
  626: 	echo 'loncom/development_domain.tab' >> $(SOURCE)/MANIFEST
  627: 	echo 'loncom/production_dns_hosts.tab' >> $(SOURCE)/MANIFEST
  628: 	echo 'loncom/development_dns_hosts.tab' >> $(SOURCE)/MANIFEST
  629: 	echo 'loncom/production_dns_domain.tab' >> $(SOURCE)/MANIFEST
  630: 	echo 'loncom/development_dns_domain.tab' >> $(SOURCE)/MANIFEST
  631: 	# ------------------ Files needed for dynamically generated directories
  632: 	echo 'doc/man' >> $(SOURCE)/MANIFEST
  633: 	echo 'doc/lib' >> $(SOURCE)/MANIFEST
  634: 	echo 'doc/lib/perl' >> $(SOURCE)/MANIFEST
  635: 	echo 'doc/lib/perl/Apache' >> $(SOURCE)/MANIFEST
  636: 	echo 'doc/scripts' >> $(SOURCE)/MANIFEST
  637: 	# --------------------------------------------------- Clean up MANIFEST
  638: 	cd $(SOURCE); \
  639: 	sort MANIFEST | perl -nle 'print "$(DIRTARGET)/$$_"' | \
  640: 	perl -nle 's/\w+\/\.\.\///g;s/\w+\/\.\.\///g;print' | \
  641: 	perl -nle 's/\w+\/\.\.\///g;s/\w+\/\.\.\///g;print' | \
  642: 	perl -nle 's/\w+\/\.\.\///g;s/\w+\/\.\.\///g;print' | \
  643: 	perl -nle 's/\/\.\//\//g;print' | sort | uniq > \
  644: 	MANIFEST_loncapa
  645: 	cd $(SOURCE); mv -v MANIFEST_loncapa MANIFEST
  646: 
  647: # --------------- MANIFEST files with important CVS versioning/date information
  648: MANIFEST_cvs:
  649: 	# ------ CVS/Entries directories to retain 'time-checking' intelligence
  650: 	cd $(SOURCE); find . -type f -name 'Entries' | grep 'CVS/Entries' >> \
  651: 	MANIFEST
  652: 
  653: # ------------------- MANIFEST the building, testing and standard loncapa files
  654: MANIFEST_lpml:
  655: 	cat $(SOURCE)/doc/loncapafiles/buildfiles.lpml | \
  656: 	perl lpml_parse.pl MANIFEST development $(DIST) \
  657: 	'$(SOURCE)' '$(TARGET)' | grep '[[:alnum:]]' >> $(SOURCE)/MANIFEST
  658: 	cat $(SOURCE)/doc/loncapafiles/testfiles.lpml | \
  659: 	perl lpml_parse.pl MANIFEST development $(DIST) \
  660: 	'$(SOURCE)' '$(TARGET)' | grep '[[:alnum:]]' >> $(SOURCE)/MANIFEST
  661: 	cat $(SOURCE)/doc/loncapafiles/installfiles.lpml | \
  662: 	perl lpml_parse.pl MANIFEST development $(DIST) \
  663: 	'$(SOURCE)' '$(TARGET)' | grep '[[:alnum:]]' >> $(SOURCE)/MANIFEST
  664: 	cat $(SOURCE)/doc/loncapafiles/loncapafiles.lpml | \
  665: 	perl lpml_parse.pl MANIFEST development $(DIST) \
  666: 	'$(SOURCE)' '$(TARGET)' | grep '[[:alnum:]]' >> $(SOURCE)/MANIFEST
  667: 
  668: # ------------ Files for top-level (the vanilla layer that the user first sees)
  669: MANIFEST_vanillatar:
  670: 	echo 'README' >> $(SOURCE)/MANIFEST
  671: 	echo 'UPDATE' >> $(SOURCE)/MANIFEST
  672: 	echo 'TEST' >> $(SOURCE)/MANIFEST
  673: 	echo 'CHECKRPMS' >> $(SOURCE)/MANIFEST
  674: 
  675: # =============================================== *** STATUS REPORT TARGETS ***
  676: 
  677: warningnote:
  678: 	@if (test -s WARNINGS); then \
  679: 		W=`grep -c '\*\*\*\* WARNING' WARNINGS`; \
  680: 		E=`grep -c '\*\*\*\* ERROR' WARNINGS`; \
  681: 		N=`grep -c '\*\*\*\* NOTE' WARNINGS`; \
  682: 		echo "--->  $$W WARNINGS ENCOUNTERED!       "; \
  683: 		echo "--->  $$E ERRORS ENCOUNTERED!         "; \
  684: 		echo "--->  $$N NOTES ENCOUNTERED!          "; \
  685: 		echo "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"; \
  686: 		echo "!!!!  Please read the WARNINGS file !!!!"; \
  687: 		echo "!!!!   to make sure everything is   !!!!"; \
  688: 		echo "!!!!    correct and taken care of   !!!!"; \
  689: 		echo "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"; \
  690: 	fi
  691: 
  692: HTML:
  693: 	install -d HTML
  694: 	cp $(SOURCE)/doc/loncapafiles/*.gif HTML
  695: 	cat $(SOURCE)/doc/loncapafiles/loncapafiles.lpml | \
  696: 	perl lpml_parse.pl html development default "$(SOURCE)" '$(TARGET)' \
  697: 	> HTML/index.html
  698: 
  699: status:
  700: 	install -d HTML
  701: 	cp $(SOURCE)/doc/loncapafiles/*.gif HTML
  702: 	cat $(SOURCE)/doc/loncapafiles/loncapafiles.lpml | \
  703: 	perl lpml_parse.pl html $(CATEGORY) $(DIST) "$(SOURCE)" "($TARGET)" | \
  704: 	perl lpml_html_posteval.pl > \
  705: 	HTML/filestatus.html
  706: 
  707: statuspost: status
  708: 	cp $(SOURCE)/doc/loncapafiles/*.gif \
  709: 	$(TARGET)/home/httpd/html/lon-status
  710: 	cp HTML/filestatus.html \
  711: 	$(TARGET)/home/httpd/html/lon-status/filestatus.html
  712: 
  713: rpmstatus:
  714: 	install -d RPMSTATUS
  715: 	rpm -qa --queryformat \
  716: 	'%{NAME}\t%{VERSION}\t%{RELEASE}\t%{BUILDTIME}\n' | sort > \
  717: 	RPMSTATUS/current.tmp
  718: 	cat $(SOURCE)/doc/otherfiles/cd_rpms.txt > RPMSTATUS/standard.tmp
  719: 	cat $(SOURCE)/doc/otherfiles/rpm_list.txt > RPMSTATUS/expected.tmp
  720: 	perl rpmparse.pl RPMSTATUS/standard.tmp RPMSTATUS/current.tmp \
  721: 	RPMSTATUS/expected.tmp > RPMSTATUS/rpmstatus.html
  722: 
  723: rpmstatuspost: rpmstatus
  724: 	cp RPMSTATUS/rpmstatus.html /home/httpd/html/lon-status/rpmstatus.html
  725: 
  726: # ======================================= *** ALTERNATIVE PACKAGING TARGETS ***
  727: 
  728: RPM: BinaryRoot base_rpm_file_list
  729: 	cat $(SOURCE)/doc/loncapafiles/loncapafiles.lpml | \
  730: 	perl lpml_parse.pl make_rpm $(CATEGORY) $(DIST) $(SOURCE) $(TARGET) \
  731: 	> base_customizerpm.xml
  732: 	cat base_rpm_file_list.txt | perl make_rpm.pl base $(VERSION) \
  733: 	$(RELEASE) '' '' BinaryRoot base_customizerpm.xml
  734: 
  735: DPKG:
  736: 	make TARGET='lon-capa-$(VERSION)' NORESTORECONF='1' install
  737: 	@echo "You will next need to follow instructions at:"
  738: 	@echo "http://people.debian.org/~jaldhar/make_package1.html"
  739: 	@echo "A directory with a snapshot of the debian package files"
  740: 	@echo "is LON-CAPA-base."
  741: # What DPKG steps need to happen (for future implementation):
  742: # export EMAIL="" ... probably sharrison@mail.lon-capa.org
  743: # deb-make
  744: # edit debian/control
  745: # make debian/dirs file
  746: # make debian/copyright file
  747: # debian/README.debian... point them to LON-CAPA URLS
  748: # debian/changelog
  749: # debian/conffiles
  750: # debuild
  751: # and maybe do some GPG-related steps around here
  752: 
  753: base_rpm_file_list:
  754: 	cat $(SOURCE)/doc/loncapafiles/loncapafiles.lpml | \
  755: 	perl lpml_parse.pl rpm_file_list $(CATEGORY) $(DIST) $(SOURCE) \
  756: 	'BinaryRoot' | sort > base_rpm_file_list.txt
  757: 
  758: BinaryRoot: base_rpm_file_list
  759: 	make TARGET='BinaryRoot' NORESTORECONF='1' install
  760: 
  761: # ======================================== *** MASTER DOCUMENTATION TARGETS ***
  762: 
  763: buildwebsite:
  764: 	cd ../../doc/build; perl ./generate_web_pages.pl
  765: 
  766: 
  767: # Generates CVS:loncom/build/docs; root location of install.lon-capa.org
  768: doc:
  769: 	install -d docs
  770: 	@if (test -e installation_manual.pdf); then \
  771: 		cp -vf installation_manual.pdf docs/.; \
  772: 	else \
  773: 		touch docs/installation_manual.pdf; \
  774: 	fi
  775: 	install -m 0755 -d docs/icons
  776: 	install -m 0644 $(SOURCE)/doc/icons/[^C][^V]* docs/icons
  777: 	install -m 0755 -d docs/reconfig
  778: 	cd docs; ln -fs installation_manual.pdf index.pdf
  779: 	cd docs/reconfig; ln -fs ../installation_manual.pdf index.pdf
  780: 	perl doc_template.pl $(SOURCE)/doc/templates/template.html \
  781: 		$(SOURCE)/doc/build/reconfig.html > docs/reconfig/index.html
  782: 	install -m 0755 -d docs/reconfig/confexamples
  783: 	install -m 0644 $(SOURCE)/doc/build/confexamples/[^C][^V]* \
  784: 		docs/reconfig/confexamples
  785: 	perl doc_template.pl $(SOURCE)/doc/templates/template.html \
  786: 		$(SOURCE)/doc/build/installindex.html > docs/index.html
  787: 	install -m 0755 -d docs/license
  788: 	cd docs/license; ln -fs ../installation_manual.pdf index.pdf
  789: 	perl doc_template.pl $(SOURCE)/doc/templates/template.html \
  790: 		$(SOURCE)/doc/build/license.html > docs/license/index.html
  791: 	install -m 0755 -d docs/contact
  792: 	cd docs/contact; ln -fs ../installation_manual.pdf index.pdf
  793: 	perl doc_template.pl $(SOURCE)/doc/templates/template.html \
  794: 		$(SOURCE)/doc/build/contact.html > docs/contact/index.html
  795: 	install -m 0755 -d docs/faq
  796: 	cd docs/faq; ln -fs ../installation_manual.pdf index.pdf
  797: 	perl doc_template.pl $(SOURCE)/doc/templates/template.html \
  798: 		$(SOURCE)/doc/build/faq.html > docs/faq/index.html
  799: 	install -m 0755 -d docs/downloads
  800: 	cd docs/downloads; ln -fs ../installation_manual.pdf download.pdf
  801: 	perl doc_template.pl $(SOURCE)/doc/templates/template.html \
  802: 		$(SOURCE)/doc/build/download.html > docs/downloads/index.html
  803: 	install -m 0755 -d docs/install
  804: 	cd docs/install; ln -fs ../installation_manual.pdf install.pdf
  805: 	perl doc_template.pl $(SOURCE)/doc/templates/template.html \
  806: 		$(SOURCE)/doc/build/install.html > docs/install/index.html
  807: 	cp -v $(SOURCE)/doc/install/redhat7.3/new_install_rh73.html \
  808: 		docs/install/rh73.html
  809: 	cp -v $(SOURCE)/doc/install/redhat7.3/new_install_rh73.html \
  810: 		docs/downloads/rh73.html
  811: 	install -m 0755 -d docs/upgrade
  812: 	cd docs/upgrade; ln -fs ../installation_manual.pdf upgrade.pdf
  813: 	perl doc_template.pl $(SOURCE)/doc/templates/template.html \
  814: 		$(SOURCE)/doc/build/upgrade.html > docs/upgrade/index.html
  815: 	cd docs; tar czvpf ../docs.tar.gz .
  816: 
  817: pdfdoc: TEST_html2ps
  818: 	install -d pdfdoc
  819: 	/usr/local/html2ps/bin/html2ps -D \
  820: 	$(SOURCE)/doc/build/installindex_noform.html > pdfdoc/installindex.ps
  821: 	/usr/local/html2ps/bin/html2ps -D \
  822: 	$(SOURCE)/doc/build/reconfig.html | \
  823: 	perl -nle 's/\[EXAMPLE\]/\[EXAMPLE \(at end of document\)\]/g;print' \
  824: 	> pdfdoc/reconfig.ps
  825: 	/usr/local/html2ps/bin/html2ps -D \
  826: 	$(SOURCE)/doc/build/install.html > pdfdoc/install.ps
  827: 	/usr/local/html2ps/bin/html2ps -D \
  828: 	$(SOURCE)/doc/build/upgrade.html > pdfdoc/upgrade.ps
  829: 	/usr/local/html2ps/bin/html2ps -D \
  830: 	$(SOURCE)/doc/build/faq.html > pdfdoc/faq.ps
  831: 	/usr/local/html2ps/bin/html2ps -D \
  832: 	$(SOURCE)/doc/build/download.html > pdfdoc/download.ps
  833: 	/usr/local/html2ps/bin/html2ps -D \
  834: 	$(SOURCE)/doc/build/contact.html > pdfdoc/contact.ps
  835: 	/usr/local/html2ps/bin/html2ps -D \
  836: 	$(SOURCE)/doc/build/license.html > pdfdoc/license.ps
  837: #       This creates a bad confexamples.ps... so take the long way around
  838: #	cd $(SOURCE)/doc/build/confexamples; \
  839: #	mpage -P- -1 -H [^C]* > ../../../loncom/build/pdfdoc/confexamples.ps
  840: 	install -d pdfdoc/confexamples
  841: 	cd $(SOURCE)/doc/build/confexamples; \
  842: 	find . -type f | cut -b3- | grep -v '^C' | grep -v 'keyword' | \
  843: 	perl -nle \
  844: 	'`mpage -P- -1 -H $$_ > ../../../loncom/build/pdfdoc/confexamples/$$_.ps`;'
  845: 	echo '' > pdfdoc/contents.txt
  846: 	echo '' >> pdfdoc/contents.txt
  847: 	echo '          The Learning Online Network' >> pdfdoc/contents.txt
  848: 	echo '                    with the' >> pdfdoc/contents.txt
  849: 	echo '     Computer-Assisted Personalized Approach' >> \
  850: 	pdfdoc/contents.txt
  851: 	echo '' >> pdfdoc/contents.txt
  852: 	echo '' >> pdfdoc/contents.txt
  853: 	echo 'CONTENTS' >> pdfdoc/contents.txt
  854: 	echo '--------' >> pdfdoc/contents.txt
  855: 	echo 'Opening' >> pdfdoc/contents.txt
  856: 	echo 'Configuration' >> pdfdoc/contents.txt
  857: 	echo 'Installation' >> pdfdoc/contents.txt
  858: 	echo 'Upgrading a LON-CAPA Server' >> pdfdoc/contents.txt
  859: 	echo 'FAQ' >> pdfdoc/contents.txt
  860: 	echo 'Download' >> pdfdoc/contents.txt
  861: 	echo 'Contact Information' >> pdfdoc/contents.txt
  862: 	echo 'License Information' >> pdfdoc/contents.txt
  863: 	echo 'Configuration Examples' >> pdfdoc/contents.txt
  864: 	mpage -P- -1 \
  865: 	pdfdoc/contents.txt \
  866: 	pdfdoc/installindex.ps \
  867: 	pdfdoc/reconfig.ps \
  868: 	pdfdoc/install.ps \
  869: 	pdfdoc/upgrade.ps \
  870: 	pdfdoc/faq.ps \
  871: 	pdfdoc/download.ps \
  872: 	pdfdoc/contact.ps \
  873: 	pdfdoc/license.ps \
  874: 	pdfdoc/confexamples/*.ps \
  875: 	> pdfdoc/installation_manual.ps
  876: 	ps2pdf pdfdoc/installation_manual.ps pdfdoc/installation_manual.pdf
  877: 	mv -vf pdfdoc/installation_manual.pdf .
  878: 
  879: # ================================================ *** KEEPING THINGS CLEAN ***
  880: 
  881: clean:
  882: 	rm -f buildflag
  883: 	rm -Rf HTML
  884: 	rm -f installation_manual.pdf
  885: 	rm -f Makefile.build
  886: 	rm -f Makefile.install
  887: 	rm -f Makefile.configinstall
  888: 	rm -Rf BinaryRoot
  889: 	rm -Rf SetupBinaryRoot
  890: 	rm -Rf LON-CAPA-base
  891: 	rm -f base_rpm_file_list.txt
  892: 	rm -f base_customizerpm.xml
  893: 	rm -f setup_rpm_file_list.txt
  894: 	rm -f docs.tar.gz
  895: 	rm -Rf docs
  896: 	rm -Rf pdfdoc
  897: 	rm -f program.pl*
  898: 	rm -Rf lpmladm.*
  899: 	rm -f WARNINGS
  900: 	rm -f CPAN_STATUS_REPORT
  901: 	rm -f $(SOURCE)/loncom/build/hosts.tab
  902: 
  903: reallyclean:
  904: 	rm -f buildflag
  905: 	rm -f $(SOURCE)/README
  906: 	rm -f $(SOURCE)/UPDATE
  907: 	rm -f $(SOURCE)/TEST
  908: 	rm -f $(SOURCE)/MANIFEST
  909: 	rm -f $(SOURCE)/MANIFEST_loncapa
  910: 	rm -f $(SOURCE)/loncapa
  911: 	rm -f $(SOURCE)/loncom/build/hosts.tab
  912: 	rm -f $(SOURCE)/loncapa.tar.gz
  913: 	rm -Rf HTML
  914: 	rm -f installation_manual.pdf
  915: 	rm -f Makefile.build
  916: 	rm -f Makefile.install
  917: 	rm -f Makefile.configinstall
  918: 	rm -Rf BinaryRoot
  919: 	rm -Rf SetupBinaryRoot
  920: 	rm -Rf LON-CAPA-base
  921: 	rm -f base_rpm_file_list.txt
  922: 	rm -f base_customizerpm.xml
  923: 	rm -f setup_rpm_file_list.txt
  924: 	rm -f docs.tar.gz
  925: 	rm -Rf docs
  926: 	rm -Rf pdfdoc
  927: 	rm -f program.pl*
  928: 	rm -Rf lpmladm.*
  929: 	make -f Makefile.cvs clean
  930: 	rm -f WARNINGS
  931: 
  932: uninstall:
  933: 	rm -f UNINSTALL_SHELL_COMMANDS
  934: 	cat $(SOURCE)/doc/loncapafiles/loncapafiles.lpml | \
  935: 	perl lpml_parse.pl uninstall_shell_commands $(CATEGORY) $(DIST) \
  936: 	"$(SOURCE)" "$(TARGET)" > UNINSTALL_SHELL_COMMANDS
  937: 	@echo -n "**** NOTE **** A file \"UNINSTALL_SHELL_COMMANDS\" has been "
  938: 	@echo "generated."
  939: 	@echo "First, you should view the contents of this file."
  940: 	@echo "If you are happy with the 'rm -Rf'! commands (or at least"
  941: 	@echo "have another job lined up in case of catastrophe), then you "
  942: 	@echo "can execute the following: sh ./UNINSTALL_SHELL_COMMANDS"
  943: 
  944: backup:
  945: 	@echo "Not yet implemented"
  946: 
  947: restore:
  948: 	@echo "Not yet implemented"
  949: 
  950: # ===================================================== *** AUXILIARY TESTS ***
  951: localauth:
  952: 	@if (test -e $(LOCALAUTHPATH)/localauth.pm) && \
  953:              !(diff $(LOCALAUTHPATH)/localauth-std.pm \
  954:               $(LOCALAUTHPATH)/localauth.pm > /dev/null); then \
  955: 		echo "**** WARNING **** $(LOCALAUTHPATH)/localauth.pm is different than the $(LOCALAUTHPATH)/localauth-std.pm; if you have not customized localauth.pm, then please manually overwrite localauth.pm (rm $(LOCALAUTHPATH)/localauth.pm; ln -s $(LOCALAUTHPATH)/localauth-std.pm $(LOCALAUTHPATH)/localauth.pm); if you have customized localauth.pm, then please double-check to see that your customized localauth.pm is compatible with any localauth-std.pm changes for this version of LON-CAPA"| tee -a WARNINGS; \
  956: 	elif (test -e $(LOCALAUTHPATH)/localauth.pm) && \
  957:               (diff $(LOCALAUTHPATH)/localauth-std.pm \
  958:               $(LOCALAUTHPATH)/localauth.pm > /dev/null); then \
  959: 		echo "**** NOTE **** LOCAL AUTH IS IDENTICAL WITH STANDARD TEMPLATE"| tee -a WARNINGS; \
  960: 	elif !(test -e $(LOCALAUTHPATH)/localauth.pm) && \
  961: 	      (test -e $(LOCALAUTHPATH)/localauth-std.pm); then \
  962: 		ln -s $(LOCALAUTHPATH)/localauth-std.pm $(LOCALAUTHPATH)/localauth.pm; \
  963: 	fi
  964: 
  965: # ================================================ *** A HELPFUL DEPENDENCY ***
  966: alwaysrun:

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>