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