summaryrefslogtreecommitdiff
path: root/desktop-themes/Green-Submarine
diff options
context:
space:
mode:
authorrbuj <[email protected]>2021-02-09 14:46:52 +0100
committerraveit65 <[email protected]>2021-02-09 22:42:54 +0100
commit62c46148a8553214d2ecd4d096412b9e068ceec3 (patch)
treee505627d4cac5639b6555a678e215c2f5a16aa9f /desktop-themes/Green-Submarine
parent58653911017b1eabb49715752d6936f04ea8b4ff (diff)
downloadmate-themes-62c46148a8553214d2ecd4d096412b9e068ceec3.tar.bz2
mate-themes-62c46148a8553214d2ecd4d096412b9e068ceec3.tar.xz
build: allow users to disable gettext support (--disable-nls)
Diffstat (limited to 'desktop-themes/Green-Submarine')
-rw-r--r--desktop-themes/Green-Submarine/Makefile.am19
1 files changed, 11 insertions, 8 deletions
diff --git a/desktop-themes/Green-Submarine/Makefile.am b/desktop-themes/Green-Submarine/Makefile.am
index 0cb9e35f..ab8e44ce 100644
--- a/desktop-themes/Green-Submarine/Makefile.am
+++ b/desktop-themes/Green-Submarine/Makefile.am
@@ -1,19 +1,22 @@
-THEME_NAME=Green-Submarine
-THEME_IN_FILES=index.theme.in
+THEME_NAME = Green-Submarine
themedir = $(datadir)/themes/$(THEME_NAME)
+theme_in_files = index.theme.in
+theme_DATA = $(theme_in_files:.theme.in=.theme)
-theme_DATA = index.theme
-
-$(theme_DATA): $(THEME_IN_FILES)
+%.theme: %.theme.in
+if USE_NLS
$(AM_V_GEN) $(MSGFMT) --desktop --template $< -d $(top_srcdir)/po -o $@
+else
+ $(AM_V_GEN) cp -f $< $@
+endif
SUBDIRS = \
cinnamon \
- emerald \
+ emerald \
gtk-2.0 \
gtk-3.0 \
metacity-1
-DISTCLEANFILES = index.theme
-EXTRA_DIST = index.theme.in
+CLEANFILES = index.theme
+EXTRA_DIST = $(theme_in_files)