diff options
author | Dennis Kasprzyk <onestone@compiz-fusion.org> | 2008-10-09 22:40:57 +0200 |
---|---|---|
committer | Dennis kasprzyk <onestone@compiz-fusion.org> | 2008-10-09 22:40:57 +0200 |
commit | 085d2ef5529415ae1e310c4d6b972211555ccfce (patch) | |
tree | 0cc8fb561a6efc9f5533644c8e92ccb63b352e3c /metadata | |
parent | 0a6f047acf54246b7f573be85fd45fb803d4fa39 (diff) | |
download | zcomp-085d2ef5529415ae1e310c4d6b972211555ccfce.tar.gz zcomp-085d2ef5529415ae1e310c4d6b972211555ccfce.tar.bz2 |
Drop autoconf/make build system.
Diffstat (limited to 'metadata')
-rw-r--r-- | metadata/Makefile.am | 131 |
1 files changed, 0 insertions, 131 deletions
diff --git a/metadata/Makefile.am b/metadata/Makefile.am deleted file mode 100644 index e70fa6e..0000000 --- a/metadata/Makefile.am +++ /dev/null @@ -1,131 +0,0 @@ -xmldir = $(metadatadir) -xml_in_files = \ - core.xml.in \ - annotate.xml.in \ - blur.xml.in \ - clone.xml.in \ - cube.xml.in \ - dbus.xml.in \ - decor.xml.in \ - fade.xml.in \ - fs.xml.in \ - gconf.xml.in \ - glib.xml.in \ - ini.xml.in \ - inotify.xml.in \ - kconfig.xml.in \ - minimize.xml.in \ - move.xml.in \ - place.xml.in \ - png.xml.in \ - regex.xml.in \ - resize.xml.in \ - rotate.xml.in \ - scale.xml.in \ - screenshot.xml.in \ - svg.xml.in \ - switcher.xml.in \ - video.xml.in \ - water.xml.in \ - wobbly.xml.in \ - zoom.xml.in \ - composite.xml.in \ - opengl.xml.in \ - copytex.xml.in -xml_files = $(xml_in_files:.xml.in=.xml) -xml_DATA = $(xml_files) - -@INTLTOOL_XML_RULE@ - -if USE_GCONF -schemadir = $(GCONF_SCHEMA_FILE_DIR) -schema_files = $(patsubst %.xml.in,compiz-%.schemas,$(xml_in_files)) -schema_DATA = $(schema_files) - -%.schemas: $(xml_files) - xsltproc -o $@ --param defaultPlugins "'$(default_plugins)'" \ - $(srcdir)/schemas.xslt $(subst compiz-,,$*).xml - -schemas_stylesheets = schemas.xslt - -endif - -if USE_KCONFIG -kde_kcfgdir = $(DESTDIR)$(KDE_KCFG_DIR) -kde_kcfg_files = $(patsubst %.xml.in,compiz-%.kcfg,$(xml_in_files)) - -kde_kcfg_stylesheets = kcfg.xslt - -%.kcfg: $(xml_files) - xsltproc -o $@ $(srcdir)/kcfg.xslt $(subst compiz-,,$*).xml; - -kde_configdir = $(DESTDIR)$(KDE_KCONFIG_DIR) -kde_config_files = compizrc - -compizrc: $(kde_kcfg_files) - xsltproc --stringparam screen 0 $(srcdir)/kconfig.xslt \ - $(kde_kcfg_files) > $@; - -kde_config_stylesheets = kconfig.xslt - -endif - -noinst_DATA = \ - $(kde_kcfg_files) \ - $(kde_config_files) - -install-data-local: -if USE_GCONF -if GCONF_SCHEMAS_INSTALL - if test -z "$(DESTDIR)" ; then \ - GCONF_CONFIG_SOURCE=$(GCONF_SCHEMA_CONFIG_SOURCE) $(GCONFTOOL) --makefile-install-rule $(schema_DATA); \ - fi -endif -endif -if USE_KCONFIG - if mkdir -p $(kde_kcfgdir) && test -w $(kde_kcfgdir); then ( \ - $(INSTALL) -m 644 $(kde_kcfg_files) $(kde_kcfgdir) \ - ); \ - fi - if mkdir -p $(kde_configdir) && test -w $(kde_configdir); then ( \ - $(INSTALL) -m 644 $(kde_config_files) $(kde_configdir) \ - ); \ - fi -endif - -uninstall-local: -if USE_KCONFIG - if test -w $(kde_kcfgdir); then ( \ - for file in $(kde_kcfg_files); do \ - rm -f $(kde_kcfgdir)/$$file; \ - done \ - ); \ - fi - if test -w $(kde_configdir); then ( \ - for file in $(kde_config_files); do \ - rm -f $(kde_configdir)/$$file; \ - done \ - ); \ - fi -endif - -xsltdir = $(stylesheetdir) -xslt_files = \ - $(schemas_stylesheets) \ - $(kde_kcfg_stylesheets) \ - $(kde_config_stylesheets) -xslt_DATA = $(xslt_files) - -EXTRA_DIST = \ - $(xml_files) \ - $(xml_in_files) \ - $(xslt_files) \ - $(schema_files) \ - $(kde_kcfg_files) \ - $(kde_config_files) - -DISTCLEANFILES = \ - $(xml_files) \ - $(schema_files) \ - $(kde_kcfg_files) \ - $(kde_config_files) |