summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorIñigo Martínez <inigomartinez@gmail.com>2017-08-03 16:09:48 +0200
committerFelix Riemann <friemann@gnome.org>2018-01-07 16:13:16 +0100
commitb2dcab7e582c5b9e3d6131361b074bf215bb40fe (patch)
tree3d2c87d9b379d451f3be324fa25e01b222ca3388 /plugins
parent610c915c0887fc7c98462def5972a784bad0689e (diff)
downloadeog-b2dcab7e582c5b9e3d6131361b074bf215bb40fe.tar.gz
build: Remove autotools
To avoid the burden of maintaining multiple build systems, this patch removes autotools support. https://bugzilla.gnome.org/show_bug.cgi?id=784354
Diffstat (limited to 'plugins')
-rw-r--r--plugins/Makefile.am71
1 files changed, 0 insertions, 71 deletions
diff --git a/plugins/Makefile.am b/plugins/Makefile.am
deleted file mode 100644
index ee4434be..00000000
--- a/plugins/Makefile.am
+++ /dev/null
@@ -1,71 +0,0 @@
-AUTOMAKE_OPTIONS = subdir-objects
-
-pluginsdir = $(libdir)/eog/plugins
-
-AM_CPPFLAGS = \
- -I$(top_srcdir)/src \
- $(EOG_CFLAGS) \
- $(WARN_CFLAGS) \
- -DEOG_LOCALEDIR=\""$(prefix)/$(DATADIRNAME)/locale"\"
-
-AM_LDFLAGS = -avoid-version -module
-
-plugins_LTLIBRARIES = \
- fullscreen/libfullscreen.la \
- reload/libreload.la
-
-plugins_in_files = \
- fullscreen/fullscreen.plugin.desktop.in \
- reload/reload.plugin.desktop.in
-
-# Fullscreen plugin
-fullscreen_libfullscreen_la_SOURCES = \
- fullscreen/eog-fullscreen-plugin.h \
- fullscreen/eog-fullscreen-plugin.c
-
-fullscreen_libfullscreen_la_LIBADD = \
- $(top_builddir)/src/libeog.la \
- $(EOG_LIBS)
-
-# Reload plugin
-reload_libreload_la_SOURCES = \
- reload/eog-reload-plugin.h \
- reload/eog-reload-plugin.c
-
-reload_libreload_la_LIBADD = \
- $(top_builddir)/src/libeog.la \
- $(EOG_LIBS)
-
-# Statusbar Date Plugin
-if HAVE_EXIF
-plugins_LTLIBRARIES += statusbar-date/libstatusbar-date.la
-
-statusbar_date_libstatusbar_date_la_SOURCES = \
- statusbar-date/eog-statusbar-date-plugin.h \
- statusbar-date/eog-statusbar-date-plugin.c
-
-statusbar_date_libstatusbar_date_la_LIBADD = \
- $(top_builddir)/src/libeog.la \
- $(EOG_LIBS)
-
-plugins_in_files += statusbar-date/statusbar-date.plugin.desktop.in
-endif
-
-# Generate plugin info files
-plugins_DATA = $(plugins_in_files:.plugin.desktop.in=.plugin)
-
-# msgfmt 0.19.8 has a bug that adding additional keywords for translation
-# disables the default keywords, so we have to explicitly name them for now.
-$(plugins_DATA): %.plugin: %.plugin.desktop.in $(wildcard $(top_srcdir)/po/*po)
- $(AM_V_GEN)$(MSGFMT) --desktop --keyword=Name --keyword=Description --template $< -d $(top_srcdir)/po -o $@
-
-
-
-DISTCLEANFILES = $(plugins_DATA)
-CLEANFILES = $(plugins_DATA)
-
-EXTRA_DIST = \
- $(plugins_in_files) \
- meson.build
-
--include $(top_srcdir)/git.mk