Wrong decoder for unscoped attribute.
[shibboleth/sp.git] / configs / Makefile.am
index 8b4f6ef..2f40bde 100644 (file)
@@ -2,31 +2,42 @@
 
 AUTOMAKE_OPTIONS = foreign
 
-pkglogdir=${localstatedir}/log/@PACKAGE@
+pkglogdir = ${localstatedir}/log/@PACKAGE@
+shirelogdir = ${localstatedir}/log/httpd
+xmldir = $(datadir)/xml
 pkgxmldir = $(datadir)/xml/@PACKAGE@
+varrundir = $(localstatedir)/run
 pkgsysconfdir = $(sysconfdir)/@PACKAGE@
 pkgsysconf_DATA = \
+       shibd \
        apache.config \
        apache2.config \
-       inqueue.pem
+       apache22.config
 
 # The config files are installed "special".  Unlike the entries in
 # pkgsysconf_DATA, these files are installed as "foo.dist" and only
 # installed as "foo" if "foo" does not already exist.  In other words,
 # the config files will not overwrite existing versions.
+BUILTCONFIGFILES = \
+       shibboleth2.xml \
+       native.logger \
+       shibd.logger \
+       attribute-map.xml \
+       attribute-policy.xml \
+       example-metadata.xml
+
+# While BUILTCONFIGFILES are processed, these are not; so we should pull
+# them from SRCDIR.
 CONFIGFILES = \
-       shibboleth.xml \
-       shibboleth.logger \
-       shire.logger \
-       shar.logger \
+       console.logger \
+       syslog.logger \
        accessError.html \
-       rmError.html \
-       shireError.html \
-       AAP.xml \
-       IQ-sites.xml \
-       IQ-trust.xml \
-       shar.key \
-       shar.crt
+       sessionError.html \
+       metadataError.html \
+       bindingTemplate.html \
+       sslError.html \
+       sp-example.key \
+       sp-example.crt
 
 #
 # Some of these need building
@@ -34,11 +45,14 @@ CONFIGFILES = \
 do-build-file:
        rm -f ${FILE}.tmp
        sed < ${srcdir}/${FILE}.in > ${FILE}.tmp \
-           -e 's:@-PREFIX-@:${prefix}:' \
-           -e 's:@-LIBEXECDIR-@:${libexecdir}:' \
-           -e 's:@-PKGSYSCONFDIR-@:${pkgsysconfdir}:' \
-           -e 's:@-PKGXMLDIR-@:${pkgxmldir}:' \
-           -e 's:@-PKGLOGDIR-@:${pkglogdir}:'
+           -e 's:@-PREFIX-@:${prefix}:g' \
+           -e 's:@-LIBEXECDIR-@:${libexecdir}:g' \
+           -e 's:@-PKGSYSCONFDIR-@:${pkgsysconfdir}:g' \
+           -e 's:@-PKGXMLDIR-@:${pkgxmldir}:g' \
+            -e 's:@-XMLDIR-@:${xmldir}:g' \
+           -e 's:@-PKGLOGDIR-@:${pkglogdir}:g' \
+           -e 's:@-SHIRELOGDIR-@:${shirelogdir}:g' \
+           -e 's:@-VARRUNDIR-@:${varrundir}:g'
        cmp -s ${FILE} ${FILE}.tmp || mv ${FILE}.tmp ${FILE}
        rm -f ${FILE}.tmp
 
@@ -48,61 +62,80 @@ apache.config: ${srcdir}/apache.config.in Makefile ${top_builddir}/config.status
 apache2.config: ${srcdir}/apache2.config.in Makefile ${top_builddir}/config.status
        $(MAKE) do-build-file FILE=$@
 
-shar.logger: ${srcdir}/shar.logger.in Makefile ${top_builddir}/config.status
+apache22.config: ${srcdir}/apache22.config.in Makefile ${top_builddir}/config.status
        $(MAKE) do-build-file FILE=$@
 
-shire.logger: ${srcdir}/shire.logger.in Makefile ${top_builddir}/config.status
+shibd: ${srcdir}/shibd.in Makefile ${top_builddir}/config.status
        $(MAKE) do-build-file FILE=$@
 
-shibboleth.xml: ${srcdir}/shibboleth.xml.in Makefile ${top_builddir}/config.status
+shibd.logger: ${srcdir}/shibd.logger.in Makefile ${top_builddir}/config.status
        $(MAKE) do-build-file FILE=$@
 
-AAP.xml: ${srcdir}/AAP.xml.in Makefile ${top_builddir}/config.status
+native.logger: ${srcdir}/native.logger.in Makefile ${top_builddir}/config.status
        $(MAKE) do-build-file FILE=$@
 
-IQ-sites.xml: ${srcdir}/IQ-sites.xml.in Makefile ${top_builddir}/config.status
+shibboleth2.xml: ${srcdir}/shibboleth2.xml.in Makefile ${top_builddir}/config.status
        $(MAKE) do-build-file FILE=$@
 
-IQ-trust.xml: ${srcdir}/IQ-trust.xml.in Makefile ${top_builddir}/config.status
+attribute-map.xml: ${srcdir}/attribute-map.xml.in Makefile ${top_builddir}/config.status
        $(MAKE) do-build-file FILE=$@
 
-all-data-local: $(CONFIGFILES)
+attribute-policy.xml: ${srcdir}/attribute-policy.xml.in Makefile ${top_builddir}/config.status
+       $(MAKE) do-build-file FILE=$@
+
+example-metadata.xml: ${srcdir}/example-metadata.xml.in Makefile ${top_builddir}/config.status
+       $(MAKE) do-build-file FILE=$@
+
+all-data-local: $(BUILTCONFIGFILES)
 
 install-data-local:    all-data-local
        $(mkinstalldirs) $(DESTDIR)$(pkglogdir)
+       $(mkinstalldirs) $(DESTDIR)$(shirelogdir)
+       $(mkinstalldirs) $(DESTDIR)$(varrundir)
        $(mkinstalldirs) $(DESTDIR)$(pkgxmldir)
        $(mkinstalldirs) $(DESTDIR)$(prefix)/data
        $(mkinstalldirs) $(DESTDIR)$(pkgsysconfdir)
-       for f in $(CONFIGFILES); do \
+       for f in $(BUILTCONFIGFILES); do \
                if test ! -f $(DESTDIR)${pkgsysconfdir}/$$f; then \
                        $(INSTALL_DATA) $$f $(DESTDIR)${pkgsysconfdir}; \
                fi; \
                $(INSTALL_DATA) $$f $(DESTDIR)${pkgsysconfdir}/$$f.dist; \
         done
+       for f in $(CONFIGFILES); do \
+               if test ! -f $(DESTDIR)${pkgsysconfdir}/$$f; then \
+                       $(INSTALL_DATA) $(srcdir)/$$f $(DESTDIR)${pkgsysconfdir}; \
+               fi; \
+               $(INSTALL_DATA) $(srcdir)/$$f $(DESTDIR)${pkgsysconfdir}/$$f.dist; \
+        done
 
 CLEANFILES = \
        apache.config \
        apache2.config \
-       shar.logger \
-       shire.logger \
-       shibboleth.xml \
-       AAP.xml \
-       IQ-sites.xml \
-       IQ-trust.xml
-
-EXTRA_DIST = .cvsignore \
-       shibboleth.xml.in \
-       shire.logger.in \
-       shar.logger.in \
+       apache22.config \
+       shibd \
+       shibd.logger \
+       native.logger \
+       shibboleth2.xml \
+       attribute-map.xml \
+       attribute-policy.xml \
+       example-metadata.xml
+
+EXTRA_DIST = \
+       shibboleth2.xml.in \
+       attribute-map.xml.in \
+       attribute-policy.xml.in \
+       example-metadata.xml.in \
+       native.logger.in \
+       shibd.logger.in \
        apache.config.in \
        apache2.config.in \
-       shibboleth.logger \
+       apache22.config.in \
+       shibd.in \
+       console.logger \
+       syslog.logger \
        accessError.html \
-       rmError.html \
-       shireError.html \
-       AAP.xml.in \
-       IQ-sites.xml.in \
-       IQ-trust.xml.in \
-       inqueue.pem \
-       shar.key \
-       shar.crt
+       sessionError.html \
+       metadataError.html \
+       sslError.html \
+       sp-example.key \
+       sp-example.crt