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