* Commit new eyes plugin.
(Old svn revision: 2018)
This commit is contained in:
commit
2dc8facea7
90 changed files with 2701 additions and 0 deletions
35
panel-plugin/Makefile.am
Normal file
35
panel-plugin/Makefile.am
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
plugindir = $(libexecdir)/xfce4/panel-plugins
|
||||
plugin_PROGRAMS = xfce4-eyes-plugin
|
||||
|
||||
xfce4_eyes_plugin_SOURCES = \
|
||||
eyes.h \
|
||||
eyes.c \
|
||||
themes.h \
|
||||
themes.c
|
||||
|
||||
xfce4_eyes_plugin_CFLAGS = \
|
||||
-I$(top_srcdir) \
|
||||
$(LIBXFCEGUI4_CFLAGS) \
|
||||
$(LIBXFCE4PANEL_CFLAGS) \
|
||||
-DPACKAGE_LOCALE_DIR=\"$(localedir)\" \
|
||||
-DTHEMESDIR=\"$(datadir)/xfce4/eyes/themes\"
|
||||
|
||||
xfce4_eyes_plugin_LDADD = \
|
||||
$(LIBXFCE4PANEL_LIBS) \
|
||||
$(LIBXFCEGUI4_LIBS)
|
||||
|
||||
desktopdir = $(datadir)/xfce4/panel-plugins
|
||||
desktop_in_in_files = eyes.desktop.in.in
|
||||
desktop_in_files = $(desktop_in_in_files:.desktop.in.in=.desktop.in)
|
||||
%.desktop.in: %.desktop.in.in
|
||||
sed -e "s,\@libexecdir\@,$(libexecdir),g" < $< > $@
|
||||
desktop_DATA = $(desktop_in_files:.desktop.in=.desktop)
|
||||
@INTLTOOL_DESKTOP_RULE@
|
||||
|
||||
EXTRA_DIST = \
|
||||
$(desktop_in_in_files)
|
||||
|
||||
CLEANFILES = \
|
||||
$(desktop_in_files) \
|
||||
$(desktop_DATA)
|
||||
|
||||
Reference in a new issue