1
0
mirror of https://github.com/horst3180/arc-theme.git synced 2024-09-28 14:00:44 +00:00
horst3180_arc-theme/common/Makefile.am

302 lines
7.2 KiB
Makefile
Raw Normal View History

2015-07-10 14:38:57 +00:00
themedir = $(datadir)/themes/Arc
themedarkerdir = $(datadir)/themes/Arc-Darker
themedarkdir = $(datadir)/themes/Arc-Dark
ithemedir = $(DESTDIR)$(themedir)
ithemedarkerdir = $(DESTDIR)$(themedarkerdir)
ithemedarkdir = $(DESTDIR)$(themedarkdir)
2015-05-28 15:41:22 +00:00
2015-10-07 23:17:03 +00:00
install-exec-hook:
2015-05-28 15:41:22 +00:00
install-data-local:
2015-07-10 14:38:57 +00:00
if ENABLE_LIGHT
2015-05-28 15:41:22 +00:00
$(MKDIR_P) $(ithemedir)
cp --no-preserve=mode,ownership $(srcdir)/index.theme $(ithemedir)
2015-07-10 14:38:57 +00:00
endif # ENABLE_LIGHT
if ENABLE_DARKER
$(MKDIR_P) $(ithemedarkerdir)
cp --no-preserve=mode,ownership $(srcdir)/index.theme-darker $(ithemedarkerdir)/index.theme
endif # ENABLE_LIGHT
if ENABLE_DARK
$(MKDIR_P) $(ithemedarkdir)
cp --no-preserve=mode,ownership $(srcdir)/index.theme-dark $(ithemedarkdir)/index.theme
endif # ENABLE_DARK
2015-05-28 15:41:22 +00:00
2015-08-13 22:05:57 +00:00
if ENABLE_CINNAMON
$(MKDIR_P) $(ithemedir)/cinnamon
cd $(srcdir)/cinnamon && cp -r --no-preserve=mode,ownership \
common-assets \
light-assets \
cinnamon.css \
$(ithemedir)/cinnamon
if ENABLE_DARK
$(MKDIR_P) $(ithemedarkdir)/cinnamon
cd $(srcdir)/cinnamon && cp -r --no-preserve=mode,ownership \
common-assets \
dark-assets \
$(ithemedarkdir)/cinnamon
cd $(srcdir)/cinnamon && cp -r --no-preserve=mode,ownership \
cinnamon-dark.css \
$(ithemedarkdir)/cinnamon/cinnamon.css
endif # ENABLE_DARK
2015-08-13 22:05:57 +00:00
endif # ENABLE_GNOME_SHELL
2015-05-28 15:41:22 +00:00
if ENABLE_GNOME_SHELL
2015-07-17 12:34:04 +00:00
$(MKDIR_P) $(ithemedir)/gnome-shell
cd $(srcdir)/gnome-shell/$(GNOME_VERSION) && cp -r --no-preserve=mode,ownership \
2015-08-13 22:05:57 +00:00
common-assets \
light-assets \
2015-07-17 12:34:04 +00:00
gnome-shell.css \
$(ithemedir)/gnome-shell
if ENABLE_DARK
$(MKDIR_P) $(ithemedarkdir)/gnome-shell
cd $(srcdir)/gnome-shell/$(GNOME_VERSION) && cp -r --no-preserve=mode,ownership \
common-assets \
dark-assets \
$(ithemedarkdir)/gnome-shell
cd $(srcdir)/gnome-shell/$(GNOME_VERSION) && cp -r --no-preserve=mode,ownership \
gnome-shell-dark.css \
$(ithemedarkdir)/gnome-shell/gnome-shell.css
endif # ENABLE_DARK
2015-05-28 15:41:22 +00:00
endif # ENABLE_GNOME_SHELL
if ENABLE_GTK2
2015-07-10 14:38:57 +00:00
if ENABLE_LIGHT
2015-07-17 12:34:04 +00:00
$(MKDIR_P) $(ithemedir)/gtk-2.0
cd $(srcdir)/gtk-2.0 && cp -r --no-preserve=mode,ownership \
assets \
menubar-toolbar \
*.rc \
gtkrc \
$(ithemedir)/gtk-2.0
2015-07-10 14:38:57 +00:00
endif # ENABLE_LIGHT
if ENABLE_DARKER
2015-07-17 12:34:04 +00:00
$(MKDIR_P) $(ithemedarkerdir)/gtk-2.0
2015-07-10 14:38:57 +00:00
2015-07-17 12:34:04 +00:00
cd $(srcdir)/gtk-2.0 && cp -r --no-preserve=mode,ownership \
assets \
menubar-toolbar \
*.rc \
$(ithemedarkerdir)/gtk-2.0
2015-07-10 14:38:57 +00:00
2015-07-17 12:34:04 +00:00
cd $(srcdir)/gtk-2.0 && cp -r --no-preserve=mode,ownership \
gtkrc-darker \
$(ithemedarkerdir)/gtk-2.0/gtkrc
2015-07-10 14:38:57 +00:00
endif # ENABLE_DARKER
if ENABLE_DARK
2015-07-17 12:34:04 +00:00
$(MKDIR_P) $(ithemedarkdir)/gtk-2.0
2015-07-10 14:38:57 +00:00
2015-07-17 12:34:04 +00:00
cd $(srcdir)/gtk-2.0 && cp -r --no-preserve=mode,ownership \
menubar-toolbar \
*.rc \
$(ithemedarkdir)/gtk-2.0
2015-07-10 14:38:57 +00:00
2015-07-17 12:34:04 +00:00
cd $(srcdir)/gtk-2.0 && cp -r --no-preserve=mode,ownership \
assets-dark \
$(ithemedarkdir)/gtk-2.0/assets
cd $(srcdir)/gtk-2.0 && cp -r --no-preserve=mode,ownership \
gtkrc-dark \
$(ithemedarkdir)/gtk-2.0/gtkrc
2015-07-10 14:38:57 +00:00
endif # ENABLE_DARK
2015-05-28 15:41:22 +00:00
endif # ENABLE_GTK2
if ENABLE_GTK3
2015-07-10 14:38:57 +00:00
if ENABLE_LIGHT
2015-07-17 12:34:04 +00:00
$(MKDIR_P) $(ithemedir)/gtk-3.0
2015-07-10 14:38:57 +00:00
2015-07-17 12:34:04 +00:00
cd $(srcdir)/gtk-3.0/$(GNOME_VERSION) && cp -r --no-preserve=mode,ownership \
assets \
gtk.css \
gtk-contained.css \
gtk-dark.css \
gtk-contained-dark.css \
$(ithemedir)/gtk-3.0
2015-07-10 14:38:57 +00:00
endif # ENABLE_LIGHT
if ENABLE_DARKER
2015-07-17 12:34:04 +00:00
$(MKDIR_P) $(ithemedarkerdir)/gtk-3.0
2015-07-10 14:38:57 +00:00
2015-07-17 12:34:04 +00:00
cd $(srcdir)/gtk-3.0/$(GNOME_VERSION) && cp -r --no-preserve=mode,ownership \
assets \
gtk.css \
gtk-dark.css \
gtk-contained-dark.css \
$(ithemedarkerdir)/gtk-3.0
cd $(srcdir)/gtk-3.0/$(GNOME_VERSION) && cp -r --no-preserve=mode,ownership \
gtk-contained-darker.css \
$(ithemedarkerdir)/gtk-3.0/gtk-contained.css
2015-07-10 14:38:57 +00:00
endif # ENABLE_DARKER
if ENABLE_DARK
2015-07-17 12:34:04 +00:00
$(MKDIR_P) $(ithemedarkdir)/gtk-3.0
2015-07-10 14:38:57 +00:00
2015-07-17 12:34:04 +00:00
cd $(srcdir)/gtk-3.0/$(GNOME_VERSION) && cp -r --no-preserve=mode,ownership \
assets \
gtk.css \
$(ithemedarkdir)/gtk-3.0
2015-07-10 14:38:57 +00:00
2015-07-17 12:34:04 +00:00
cd $(srcdir)/gtk-3.0/$(GNOME_VERSION) && cp -r --no-preserve=mode,ownership \
gtk-contained-dark.css \
$(ithemedarkdir)/gtk-3.0/gtk-contained.css
2015-07-10 14:38:57 +00:00
endif # ENABLE_DARK
2015-06-03 20:23:22 +00:00
if !ENABLE_TRANSPARENCY
2015-07-10 14:38:57 +00:00
if ENABLE_LIGHT
2015-07-17 12:34:04 +00:00
cd $(srcdir)/gtk-3.0/$(GNOME_VERSION) && cp -r --no-preserve=mode,ownership \
gtk-contained-solid.css \
$(ithemedir)/gtk-3.0/gtk-contained.css
cd $(srcdir)/gtk-3.0/$(GNOME_VERSION) && cp -r --no-preserve=mode,ownership \
gtk-contained-solid-dark.css \
$(ithemedir)/gtk-3.0/gtk-contained-dark.css
2015-07-10 14:38:57 +00:00
endif # ENABLE_LIGHT
if ENABLE_DARKER
2015-07-17 12:34:04 +00:00
cd $(srcdir)/gtk-3.0/$(GNOME_VERSION) && cp -r --no-preserve=mode,ownership \
gtk-contained-solid-darker.css \
$(ithemedarkerdir)/gtk-3.0/gtk-contained.css
cd $(srcdir)/gtk-3.0/$(GNOME_VERSION) && cp -r --no-preserve=mode,ownership \
gtk-contained-solid-dark.css \
$(ithemedarkerdir)/gtk-3.0/gtk-contained-dark.css
2015-07-10 14:38:57 +00:00
endif # ENABLE_DARKER
if ENABLE_DARK
2015-07-17 12:34:04 +00:00
cd $(srcdir)/gtk-3.0/$(GNOME_VERSION) && cp -r --no-preserve=mode,ownership \
gtk-contained-solid-dark.css \
$(ithemedarkdir)/gtk-3.0/gtk-contained.css
2015-07-10 14:38:57 +00:00
endif # ENABLE_DARK
2015-06-03 20:23:22 +00:00
endif #!ENABLE_TRANSPARENCY
2015-05-28 15:41:22 +00:00
endif # ENABLE_GTK3
if ENABLE_METACITY
2015-07-10 14:38:57 +00:00
if ENABLE_LIGHT
2015-05-28 15:41:22 +00:00
cp -r --no-preserve=mode,ownership $(srcdir)/metacity-1 $(ithemedir)
2015-07-10 14:38:57 +00:00
cd $(ithemedir)/metacity-1 && rm metacity-theme-1-dark.xml metacity-theme-2-dark.xml
endif # ENABLE_LIGHT
if ENABLE_DARKER
cp -r --no-preserve=mode,ownership $(srcdir)/metacity-1 $(ithemedarkerdir)
cd $(ithemedarkerdir)/metacity-1 && \
mv metacity-theme-1-dark.xml metacity-theme-1.xml && \
mv metacity-theme-2-dark.xml metacity-theme-2.xml
endif # ENABLE_DARKER
if ENABLE_DARK
cp -r --no-preserve=mode,ownership $(srcdir)/metacity-1 $(ithemedarkdir)
cd $(ithemedarkdir)/metacity-1 && \
mv metacity-theme-1-dark.xml metacity-theme-1.xml && \
mv metacity-theme-2-dark.xml metacity-theme-2.xml
endif # ENABLE_DARK
2015-05-28 15:41:22 +00:00
endif # ENABLE_METACITY
if ENABLE_UNITY
2015-07-10 14:38:57 +00:00
if ENABLE_LIGHT
2015-05-28 15:41:22 +00:00
cp -r --no-preserve=mode,ownership $(srcdir)/unity $(ithemedir)
2015-07-10 14:38:57 +00:00
cd $(ithemedir)/unity && rm -rf window-buttons-dark
endif # ENABLE_LIGHT
if ENABLE_DARKER
cp -r --no-preserve=mode,ownership $(srcdir)/unity $(ithemedarkerdir)
cd $(ithemedarkerdir)/unity && \
rm -rf window-buttons && \
mv window-buttons-dark window-buttons
endif # ENABLE_DARKER
if ENABLE_DARK
cp -r --no-preserve=mode,ownership $(srcdir)/unity $(ithemedarkdir)
cd $(ithemedarkdir)/unity && \
rm -rf window-buttons && \
mv window-buttons-dark window-buttons
endif # ENABLE_DARK
2015-05-28 15:41:22 +00:00
endif # ENABLE_UNITY
2015-06-13 17:56:02 +00:00
if ENABLE_XFCE_NOTIFY
2015-07-10 14:38:57 +00:00
$(MKDIR_P) $(ithemedir)
2015-06-13 17:56:02 +00:00
cp -r --no-preserve=mode,ownership $(srcdir)/xfce-notify-4.0 $(ithemedir)
endif # ENABLE_XFCE_NOTIFY
2015-05-28 15:41:22 +00:00
if ENABLE_XFWM
2015-07-10 14:38:57 +00:00
if ENABLE_LIGHT
2015-05-28 15:41:22 +00:00
cp -r --no-preserve=mode,ownership $(srcdir)/xfwm4 $(ithemedir)
2015-07-10 14:38:57 +00:00
endif # ENABLE_LIGHT
if ENABLE_DARKER
cp -r --no-preserve=mode,ownership $(srcdir)/xfwm4-dark $(ithemedarkerdir)/xfwm4
endif # ENABLE_DARKER
if ENABLE_DARK
cp -r --no-preserve=mode,ownership $(srcdir)/xfwm4-dark $(ithemedarkdir)/xfwm4
endif # ENABLE_DARK
2015-05-28 15:41:22 +00:00
endif # ENABLE_XFWM
uninstall-local:
rm -rf $(ithemedir)
2015-08-23 11:38:23 +00:00
if ENABLE_DARKER
rm -rf $(ithemedarkerdir)
endif # ENABLE_DARKER
if ENABLE_DARK
rm -rf $(ithemedarkdir)
endif # ENABLE_DARK
2015-05-28 15:41:22 +00:00
2015-08-23 11:38:23 +00:00
EXTRA_DIST = $(srcdir)/cinnamon \
$(srcdir)/gnome-shell \
$(srcdir)/gtk-2.0 \
$(srcdir)/gtk-3.0 \
$(srcdir)/metacity-1 \
$(srcdir)/unity \
$(srcdir)/xfce-notify-4.0 \
$(srcdir)/xfwm4 \
$(srcdir)/xfwm4-dark \
$(srcdir)/index.theme \
$(srcdir)/index.theme-darker \
$(srcdir)/index.theme-dark