summaryrefslogtreecommitdiffstats
path: root/encap/src/encap-profiles/reports
diff options
context:
space:
mode:
Diffstat (limited to 'encap/src/encap-profiles/reports')
-rw-r--r--encap/src/encap-profiles/reports/Makefile90
-rw-r--r--encap/src/encap-profiles/reports/README7
-rw-r--r--encap/src/encap-profiles/reports/bcfg2-django-0.96.ep1
-rw-r--r--encap/src/encap-profiles/reports/bcfg2-mod_python-3.3.1.ep1
-rw-r--r--encap/src/encap-profiles/reports/bcfg2-pysqlite-2.3.4.ep1
l---------encap/src/encap-profiles/reports/ep2target1
-rw-r--r--encap/src/encap-profiles/reports/sqlite-3.4.0.ep1
7 files changed, 0 insertions, 102 deletions
diff --git a/encap/src/encap-profiles/reports/Makefile b/encap/src/encap-profiles/reports/Makefile
deleted file mode 100644
index e2f1529e5..000000000
--- a/encap/src/encap-profiles/reports/Makefile
+++ /dev/null
@@ -1,90 +0,0 @@
-# $Id$
-
-.PHONY : test log all install clean distclean encaps rename
-.SUFFIXES :
-.SUFFIXES : .ep .installed .packaged .d
-
-export BASEDIR = /usr/local
-export ENCAPDIR := ${BASEDIR}/encap
-export EPKG := ${BASEDIR}/bin/epkg
-export MKENCAP := ${BASEDIR}/bin/mkencap
-export SHELL = /bin/sh
-srcdir = .
-export EP2TARGET := $(srcdir)/ep2target
-PAGER ?= more
-
-BCFG2_DJANGO := $(basename $(wildcard bcfg2-django-*.ep))
-BCFG2_MOD_PYTHON := $(basename $(wildcard bcfg2-mod_python-*.ep))
-BCFG2_PYSQLITE := $(basename $(wildcard bcfg2-pysqlite-*.ep))
-SQLITE := $(basename $(wildcard sqlite-*.ep))
-
-sources := $(BCFG2_DJANGO) $(BCFG2_MOD_PYTHON) $(BCFG2_PYSQLITE) $(SQLITE)
-
-%.installed : %.ep # Clean, compile and install an encap package
- @printf "***** START .ep.installed for |$*| ***** \n"
- -$(EPKG) -q -r $(ENCAPDIR)/$*
- -rm -rf $(ENCAPDIR)/$*
- -$(MKENCAP) -m /usr/local/bin/m4 -b -DUP $(srcdir)/$*.ep > ./$*.log 2>&1
- -$(MKENCAP) -m /usr/local/bin/m4 -b -T $(srcdir)/$*.ep >> ./$*.log 2>&1
- $(MKENCAP) -m /usr/local/bin/m4 -b -CBI $(srcdir)/$*.ep >> ./$*.log 2>&1
- $(EPKG) -q -i $(ENCAPDIR)/$*
- test -h $(BASEDIR)/var/encap/$*
- touch ./$*.installed
- @printf "***** STOP .ep.installed for |$*| ***** \n"
-
-%.packaged : %.installed # Create .tar.gz encap packages
- @printf "***** START .installed.packaged for |$*| ***** \n"
- -rm $(ENCAPDIR)/$*-*.tar.gz
- -(cd $(ENCAPDIR) && $(MKENCAP) -e $*)
- -(cd $(ENCAPDIR) && $(MKENCAP) -c $*)
- mv $(ENCAPDIR)/$*-encap-*.tar.gz ./
- touch ./$*.packaged
- @printf "***** STOP .installed.packaged for |$*| ***** \n"
-
-%.d : %.ep # Create dependancy files from .ep files
- @printf "***** START .d.ep for |$*| ***** \n"
- $(EP2TARGET) $< > $@
- @printf "***** STOP .d.ep for |$*| ***** \n"
-
-log :
- ( $(MAKE) install > ./make.log 2>&1 \
- && $(MAKE) encaps >> ./make.log 2>&1 \
- && $(MAKE) rename >> ./make.log 2>&1 ) &
-
-all : install encaps rename
-
-.DELETE_ON_ERROR : # delete the target of a rule if it has changed and its
- # commands exit with a nonzero exit status
-
-install : $(EPKG) $(MKENCAP) $(EP2TARGET) $(M4).installed $(addsuffix .installed,$(sources))
-
-encaps : $(EPKG) $(MKENCAP) $(EP2TARGET) $(addsuffix .packaged,$(sources))
-
-rename : encaps
- if [ "$(OS)x" != "x" ]; then OS="$(OS)"; fi && \
- if [ "$${OS}x" != "x" ]; then \
- for OLDNAME in `(ls . | grep .*-encap-.*.tar.gz) || break`; do \
- NEWNAME="`printf "%s\n" "$${OLDNAME}" \
- | awk -F- '{$$NF = "OSDIST.tar.gz" ; print}' \
- | sed s:\ :-:g | sed s:OSDIST:\$${OS}:g`" ; \
- if [ "$${OLDNAME}x" != "$${NEWNAME}x" ]; then \
- mv ./$${OLDNAME} ./$${NEWNAME}; \
- fi; \
- done; \
- fi
- for OLDNAME in `(ls . | grep .*-doc-.*-encap-.*.tar.gz) || break`; do \
- NEWNAME="`printf "%s\n" "$${OLDNAME}" \
- | awk -F- '{$$NF = "OSDIST.tar.gz" ; print}' \
- | sed s:\ :-:g | sed s:OSDIST:share:g`" ; \
- if [ "$${OLDNAME}x" != "$${NEWNAME}x" ]; then \
- mv ./$${OLDNAME} ./$${NEWNAME}; \
- fi; \
- done;
-
-clean :
- -(rm ./*.log; rm ./*.packaged; rm ./*.gz; rm ./*~)
-
-distclean : clean
- -rm ./*.d
-
-include $(addsuffix .d,$(sources))
diff --git a/encap/src/encap-profiles/reports/README b/encap/src/encap-profiles/reports/README
deleted file mode 100644
index 36f4dd9bc..000000000
--- a/encap/src/encap-profiles/reports/README
+++ /dev/null
@@ -1,7 +0,0 @@
-You must build and install the client packages in ".." and the server
-packages in "../server" before building here.
-
-Type "make".
-
-Bcfg2 Reports do not work on all of the platforms supported by Bcfg2 client.
-GNU/Linux on x86_32 or x86_64 are recommended.
diff --git a/encap/src/encap-profiles/reports/bcfg2-django-0.96.ep b/encap/src/encap-profiles/reports/bcfg2-django-0.96.ep
deleted file mode 100644
index 65f1991a7..000000000
--- a/encap/src/encap-profiles/reports/bcfg2-django-0.96.ep
+++ /dev/null
@@ -1 +0,0 @@
-http://www.djangoproject.com/download/0.96/tarball/
diff --git a/encap/src/encap-profiles/reports/bcfg2-mod_python-3.3.1.ep b/encap/src/encap-profiles/reports/bcfg2-mod_python-3.3.1.ep
deleted file mode 100644
index d60cf7cdf..000000000
--- a/encap/src/encap-profiles/reports/bcfg2-mod_python-3.3.1.ep
+++ /dev/null
@@ -1 +0,0 @@
-http://www.eng.lsu.edu/mirrors/apache/httpd/modpython/mod_python-3.3.1.tgz
diff --git a/encap/src/encap-profiles/reports/bcfg2-pysqlite-2.3.4.ep b/encap/src/encap-profiles/reports/bcfg2-pysqlite-2.3.4.ep
deleted file mode 100644
index 31e41d79e..000000000
--- a/encap/src/encap-profiles/reports/bcfg2-pysqlite-2.3.4.ep
+++ /dev/null
@@ -1 +0,0 @@
-http://initd.org/pub/software/pysqlite/releases/2.3/2.3.4/pysqlite-2.3.4.tar.gz
diff --git a/encap/src/encap-profiles/reports/ep2target b/encap/src/encap-profiles/reports/ep2target
deleted file mode 120000
index 6a7aaa552..000000000
--- a/encap/src/encap-profiles/reports/ep2target
+++ /dev/null
@@ -1 +0,0 @@
-../ep2target \ No newline at end of file
diff --git a/encap/src/encap-profiles/reports/sqlite-3.4.0.ep b/encap/src/encap-profiles/reports/sqlite-3.4.0.ep
deleted file mode 100644
index 935380227..000000000
--- a/encap/src/encap-profiles/reports/sqlite-3.4.0.ep
+++ /dev/null
@@ -1 +0,0 @@
-http://www.sqlite.org/sqlite-3.4.0.tar.gz