Kerberos authentication extension makefiles

Makefiles for new FF kerberos authentication extension

ihttps://fedorahosted.org/freeipa/ticket/3094
This commit is contained in:
Petr Vobornik
2012-10-02 16:47:28 +02:00
committed by Rob Crittenden
parent b4e19509c0
commit 206b6ca04b
8 changed files with 111 additions and 0 deletions

View File

@@ -611,6 +611,17 @@ fi
%{_usr}/share/ipa/*.ldif
%{_usr}/share/ipa/*.uldif
%{_usr}/share/ipa/*.template
%dir %{_usr}/share/ipa/ffextension
%{_usr}/share/ipa/ffextension/bootstrap.js
%{_usr}/share/ipa/ffextension/install.rdf
%{_usr}/share/ipa/ffextension/chrome.manifest
%dir %{_usr}/share/ipa/ffextension/chrome
%dir %{_usr}/share/ipa/ffextension/chrome/content
%{_usr}/share/ipa/ffextension/chrome/content/kerberosauth.js
%{_usr}/share/ipa/ffextension/chrome/content/kerberosauth_overlay.xul
%dir %{_usr}/share/ipa/ffextension/locale
%dir %{_usr}/share/ipa/ffextension/locale/en-US
%{_usr}/share/ipa/ffextension/locale/en-US/kerberosauth.properties
%dir %{_usr}/share/ipa/html
%{_usr}/share/ipa/html/ssbrowser.html
%{_usr}/share/ipa/html/browserconfig.html

View File

@@ -7,6 +7,7 @@ NULL =
SUBDIRS = \
certmonger \
conf \
ffextension \
html \
migration \
share \

View File

@@ -77,6 +77,11 @@ AC_CONFIG_FILES([
Makefile
certmonger/Makefile
conf/Makefile
ffextension/Makefile
ffextension/chrome/Makefile
ffextension/chrome/content/Makefile
ffextension/locale/Makefile
ffextension/locale/en-US/Makefile
html/Makefile
migration/Makefile
share/Makefile

View File

@@ -0,0 +1,23 @@
AUTOMAKE_OPTIONS = 1.7
NULL =
SUBDIRS = \
chrome \
locale \
$(NULL)
appdir = $(IPA_DATA_DIR)/ffextension
app_DATA = \
bootstrap.js \
chrome.manifest \
install.rdf \
$(NULL)
EXTRA_DIST = \
$(app_DATA) \
$(NULL)
MAINTAINERCLEANFILES = \
*~ \
Makefile.in

View File

@@ -0,0 +1,19 @@
AUTOMAKE_OPTIONS = 1.7
NULL =
SUBDIRS = \
content \
$(NULL)
appdir = $(IPA_DATA_DIR)/ffextension/chrome
app_DATA = \
$(NULL)
EXTRA_DIST = \
$(app_DATA) \
$(NULL)
MAINTAINERCLEANFILES = \
*~ \
Makefile.in

View File

@@ -0,0 +1,17 @@
AUTOMAKE_OPTIONS = 1.7
NULL =
appdir = $(IPA_DATA_DIR)/ffextension/chrome/content
app_DATA = \
kerberosauth_overlay.xul \
kerberosauth.js \
$(NULL)
EXTRA_DIST = \
$(app_DATA) \
$(NULL)
MAINTAINERCLEANFILES = \
*~ \
Makefile.in

View File

@@ -0,0 +1,19 @@
AUTOMAKE_OPTIONS = 1.7
NULL =
SUBDIRS = \
en-US \
$(NULL)
appdir = $(IPA_DATA_DIR)/ffextension/locale
app_DATA = \
$(NULL)
EXTRA_DIST = \
$(app_DATA) \
$(NULL)
MAINTAINERCLEANFILES = \
*~ \
Makefile.in

View File

@@ -0,0 +1,16 @@
AUTOMAKE_OPTIONS = 1.7
NULL =
appdir = $(IPA_DATA_DIR)/ffextension/locale/en-US
app_DATA = \
kerberosauth.properties \
$(NULL)
EXTRA_DIST = \
$(app_DATA) \
$(NULL)
MAINTAINERCLEANFILES = \
*~ \
Makefile.in