version 1.151, 2003/07/29 01:05:28
|
version 1.155.4.2, 2003/09/01 03:10:47
|
Line 22 SAVE=program.pl.$(TIMESTAMP)
|
Line 22 SAVE=program.pl.$(TIMESTAMP)
|
LAUNCHSAVE=$(OUTSTREAM) $(SAVE) |
LAUNCHSAVE=$(OUTSTREAM) $(SAVE) |
METAMTARGET="" |
METAMTARGET="" |
MTARGET="" |
MTARGET="" |
VERSION=0.99.3 |
VERSION=1.0.1 |
# The current working definition for "RELEASE" is: changes not in the software, |
# The current working definition for "RELEASE" is: changes not in the software, |
# but in the operating system dependent packaging of the software. Thus, the |
# but in the operating system dependent packaging of the software. Thus, the |
# generic tarball releases do not need to have a release number specified. |
# generic tarball releases do not need to have a release number specified. |
Line 124 help_TARGETS:
|
Line 124 help_TARGETS:
|
@echo " procedure (via the UPDATE command)" |
@echo " procedure (via the UPDATE command)" |
@echo "postinstall: double-check things after installation" |
@echo "postinstall: double-check things after installation" |
@echo "VERSION: tag the filesystem with version information inside" |
@echo "VERSION: tag the filesystem with version information inside" |
@echo " /etc/loncapa-release" |
@echo " /etc/loncapa-release and" |
|
@echo " /home/httpd/html/lon-status/version.txt" |
@echo "aboutVERSION: place version information inside about.html" |
@echo "aboutVERSION: place version information inside about.html" |
|
@echo " and loncapa_apache.conf" |
@echo "*** Makefile.* TARGETS BUILT DYNAMICALLY FROM loncapafiles.lpml ***" |
@echo "*** Makefile.* TARGETS BUILT DYNAMICALLY FROM loncapafiles.lpml ***" |
@echo "Makefile.configinstall: generate a Makefile for configuration" |
@echo "Makefile.configinstall: generate a Makefile for configuration" |
@echo " files; built dynamically from" |
@echo " files; built dynamically from" |
Line 364 tardist:
|
Line 366 tardist:
|
fi |
fi |
cp -v $(SOURCE)/loncom/license/about.html \ |
cp -v $(SOURCE)/loncom/license/about.html \ |
$(SOURCE)/loncom/license/about.html.orig |
$(SOURCE)/loncom/license/about.html.orig |
|
cp -v $(SOURCE)/loncom/loncapa_apache.conf \ |
|
$(SOURCE)/loncom/loncapa_apache.conf.orig |
make aboutVERSION |
make aboutVERSION |
cd $(SOURCE); \ |
cd $(SOURCE); \ |
tar --no-recursion --numeric-owner --files-from MANIFEST \ |
tar --no-recursion --numeric-owner --files-from MANIFEST \ |
-h -czf $(DIRTARGET).tar.gz 2>tar_WARNINGS || [ "0" == "0" ] |
-h -czf $(DIRTARGET).tar.gz 2>tar_WARNINGS || [ "0" == "0" ] |
mv -v $(SOURCE)/loncom/license/about.html.orig \ |
mv -v $(SOURCE)/loncom/license/about.html.orig \ |
$(SOURCE)/loncom/license/about.html |
$(SOURCE)/loncom/license/about.html |
|
mv -v $(SOURCE)/loncom/loncapa_apache.conf.orig \ |
|
$(SOURCE)/loncom/loncapa_apache.conf |
cat $(SOURCE)/tar_WARNINGS | \ |
cat $(SOURCE)/tar_WARNINGS | \ |
xargs --replace=XXX echo '**** WARNING **** XXX' > WARNINGS |
xargs --replace=XXX echo '**** WARNING **** XXX' > WARNINGS |
rm -f $(SOURCE)/tar_WARNINGS |
rm -f $(SOURCE)/tar_WARNINGS |
Line 410 VERSION:
|
Line 416 VERSION:
|
install -d $(TARGET)/etc |
install -d $(TARGET)/etc |
echo -n "LON-CAPA release $(VERSION)-" > $(TARGET)/etc/loncapa-release |
echo -n "LON-CAPA release $(VERSION)-" > $(TARGET)/etc/loncapa-release |
date +"%Y%m%d" >> $(TARGET)/etc/loncapa-release |
date +"%Y%m%d" >> $(TARGET)/etc/loncapa-release |
|
install -d $(TARGET)/home/httpd/html/lon-status |
|
echo -n "$(VERSION)-" > $(TARGET)/home/httpd/html/lon-status/version.txt |
|
date +"%Y%m%d" >> $(TARGET)/home/httpd/html/lon-status/version.txt |
|
|
aboutVERSION: |
aboutVERSION: |
cat $(SOURCE)/loncom/license/about.html | \ |
cat $(SOURCE)/loncom/license/about.html | \ |
Line 417 aboutVERSION:
|
Line 426 aboutVERSION:
|
$(SOURCE)/loncom/license/about.html.new |
$(SOURCE)/loncom/license/about.html.new |
mv -v $(SOURCE)/loncom/license/about.html.new \ |
mv -v $(SOURCE)/loncom/license/about.html.new \ |
$(SOURCE)/loncom/license/about.html |
$(SOURCE)/loncom/license/about.html |
|
cat $(SOURCE)/loncom/loncapa_apache.conf | \ |
|
perl -e '$$d=`date +"%Y%m%d"`;chomp($$d);while(<>){s/\<\!\-\- VERSION \-\-\>/$(VERSION)-$$d/; print;}' > \ |
|
$(SOURCE)/loncom/loncapa_apache.conf.new |
|
mv -v $(SOURCE)/loncom/loncapa_apache.conf.new \ |
|
$(SOURCE)/loncom/loncapa_apache.conf |
|
|
# ========= *** Makefile.* TARGETS BUILT DYNAMICALLY FROM loncapafiles.lpml *** |
# ========= *** Makefile.* TARGETS BUILT DYNAMICALLY FROM loncapafiles.lpml *** |
|
|