~ubuntu-branches/ubuntu/vivid/xfce4-session/vivid-proposed

« back to all changes in this revision

Viewing changes to panel-plugin/Makefile.am

  • Committer: Package Import Robot
  • Author(s): Lionel Le Folgoc
  • Date: 2012-05-18 20:21:52 UTC
  • mfrom: (4.1.7 experimental)
  • Revision ID: package-import@ubuntu.com-20120518202152-7bm9pla0j3ccfsnk
Tags: 4.10.0-1ubuntu1
* Merge from Debian experimental, remaining Ubuntu changes:
  - debian/control: build-depends on libgnome-keyring-dev to enable GNOME
    Keyring services support.
  - debian/rules: pass --enable-libgnome-keyring to dh_auto_configure.
  - debian/patches:
    + xubuntu_ignore-gdm-lang.patch: do not set $LANG to $GDM_LANG, there's
      already an xsession script to do that, and $GDM_LANG might not contain
      a valid locale code.

* debian/patches:
  - xubuntu_set-xdg-current-desktop.patch: added. Taken from xfce4-utils,
    export XDG_CURRENT_DESKTOP=XFCE, can be useful with alacarte and
    gnome-menus. lp #927172

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
 
2
 
INCLUDES = \
3
 
        -I$(top_srcdir) \
4
 
        -DLOCALEDIR=\"$(localedir)\" \
5
 
        -DG_LOG_DOMAIN=\"libxfsm-logout-plugin\"
6
 
 
7
 
plugindir = $(libdir)/xfce4/panel/plugins
8
 
 
9
 
plugin_LTLIBRARIES = libxfsm-logout-plugin.la
10
 
 
11
 
libxfsm_logout_plugin_built_sources = \
12
 
        xfsm-logout-plugin-ui.h
13
 
 
14
 
libxfsm_logout_plugin_la_SOURCES = \
15
 
        $(libxfsm_logout_plugin_built_sources) \
16
 
        xfsm-logout-plugin.c
17
 
 
18
 
libxfsm_logout_plugin_la_CFLAGS = \
19
 
        $(LIBX11_CFLAGS) \
20
 
        $(LIBXFCE4PANEL_CFLAGS) \
21
 
        $(XFCONF_CFLAGS) \
22
 
        $(LIBXFCE4UTIL_CFLAGS) \
23
 
        $(LIBXFCE4UI_CFLAGS) \
24
 
        $(GTK_CFLAGS) \
25
 
        $(DBUS_GLIB_CFLAGS)
26
 
 
27
 
libxfsm_logout_plugin_la_LIBADD = \
28
 
        $(LIBX11_LIBS) \
29
 
        $(LIBXFCE4PANEL_LIBS) \
30
 
        $(XFCONF_LIBS) \
31
 
        $(LIBXFCE4UTIL_LIBS) \
32
 
        $(LIBXFCE4UI_LIBS) \
33
 
        $(GTK_LIBS) \
34
 
        $(DBUS_GLIB_LIBS)
35
 
 
36
 
libxfsm_logout_plugin_la_LDFLAGS = \
37
 
        -avoid-version \
38
 
        -module \
39
 
        -no-undefined \
40
 
        -export-symbols-regex '^xfce_panel_module_(preinit|init|construct)'
41
 
 
42
 
#
43
 
# .desktop file
44
 
#
45
 
desktopdir = $(datadir)/xfce4/panel-plugins
46
 
desktop_in_files = xfsm-logout-plugin.desktop.in
47
 
desktop_DATA = $(desktop_in_files:.desktop.in=.desktop)
48
 
@INTLTOOL_DESKTOP_RULE@
49
 
 
50
 
EXTRA_DIST = \
51
 
        xfsm-logout-plugin-ui.xml \
52
 
        $(desktop_in_files)
53
 
 
54
 
DISTCLEANFILES = \
55
 
        $(desktop_DATA)
56
 
 
57
 
if MAINTAINER_MODE
58
 
BUILT_SOURCES = \
59
 
        $(libxfsm_logout_plugin_built_sources)
60
 
 
61
 
DISTCLEANFILES += \
62
 
        $(libxfsm_logout_plugin_built_sources)
63
 
 
64
 
xfsm-logout-plugin-ui.h: $(srcdir)/xfsm-logout-plugin-ui.xml Makefile
65
 
        $(AM_V_GEN) exo-csource --static --strip-comments --strip-content --name=logout_plugin_ui $< > $@
66
 
endif
67
 
 
68
 
# vi:set ts=8 sw=8 noet ai nocindent syntax=automake: