Add Simple-Sign endpoint to SP metadata.
[shibboleth/sp.git] / configs / Makefile.am
index f2b4010..20e2810 100644 (file)
@@ -4,6 +4,7 @@ AUTOMAKE_OPTIONS = foreign
 
 pkglogdir = ${localstatedir}/log/@PACKAGE@
 shirelogdir = ${localstatedir}/log/httpd
+xmldir = $(datadir)/xml
 pkgxmldir = $(datadir)/xml/@PACKAGE@
 varrundir = $(localstatedir)/run
 pkgsysconfdir = $(sysconfdir)/@PACKAGE@
@@ -18,10 +19,11 @@ pkgsysconf_DATA = \
 # installed as "foo" if "foo" does not already exist.  In other words,
 # the config files will not overwrite existing versions.
 BUILTCONFIGFILES = \
-       shibboleth.xml \
+       shibboleth2.xml \
        native.logger \
        shibd.logger \
-       resolver-simple.xml \
+       attribute-map.xml \
+       attribute-policy.xml \
        example-metadata.xml
 
 # While BUILTCONFIGFILES are processed, these are not; so we should pull
@@ -30,10 +32,11 @@ CONFIGFILES = \
        console.logger \
        syslog.logger \
        accessError.html \
-       rmError.html \
        sessionError.html \
        metadataError.html \
        bindingTemplate.html \
+       localLogout.html \
+       globalLogout.html \
        sslError.html \
        sp-example.key \
        sp-example.crt
@@ -44,13 +47,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:@-SHIRELOGDIR-@:${shirelogdir}:' \
-           -e 's:@-VARRUNDIR-@:${varrundir}:'
+           -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
 
@@ -72,10 +76,13 @@ shibd.logger: ${srcdir}/shibd.logger.in Makefile ${top_builddir}/config.status
 native.logger: ${srcdir}/native.logger.in Makefile ${top_builddir}/config.status
        $(MAKE) do-build-file FILE=$@
 
-shibboleth.xml: ${srcdir}/shibboleth.xml.in Makefile ${top_builddir}/config.status
+shibboleth2.xml: ${srcdir}/shibboleth2.xml.in Makefile ${top_builddir}/config.status
        $(MAKE) do-build-file FILE=$@
 
-resolver-simple.xml: ${srcdir}/resolver-simple.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=$@
+
+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
@@ -110,26 +117,20 @@ CLEANFILES = \
        shibd \
        shibd.logger \
        native.logger \
-       shibboleth.xml \
-       resolver-simple.xml \
+       shibboleth2.xml \
+       attribute-map.xml \
+       attribute-policy.xml \
        example-metadata.xml
 
-EXTRA_DIST = .cvsignore \
-       shibboleth.xml.in \
+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 \
        apache22.config.in \
        shibd.in \
-       console.logger \
-       syslog.logger \
-       accessError.html \
-       rmError.html \
-       sessionError.html \
-       metadataError.html \
-       sslError.html \
-       resolver-simple.xml.in \
-       example-metadata.xml.in \
-       sp-example.key \
-       sp-example.crt
+       $(CONFIGFILES)