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