~kroq-gar78/ubuntu/precise/gnome-control-center/fix-885947

« back to all changes in this revision

Viewing changes to libwindow-settings/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Rodrigo Moya
  • Date: 2011-05-17 10:47:27 UTC
  • mfrom: (0.1.11 experimental) (1.1.45 upstream)
  • Revision ID: james.westby@ubuntu.com-20110517104727-lqel6m8vhfw5jby1
Tags: 1:3.0.1.1-1ubuntu1
* Rebase on Debian, remaining Ubuntu changes:
* debian/control:
  - Build-Depend on hardening-wrapper, dpkg-dev and dh-autoreconf
  - Add dependency on ubuntu-system-service
  - Remove dependency on gnome-icon-theme-symbolic
  - Move dependency on apg, gnome-icon-theme-symbolic and accountsservice to
    be a Recommends: until we get them in main
* debian/rules:
  - Use autoreconf
  - Add binary-post-install rule for gnome-control-center-data
  - Run dh-autoreconf
* debian/gnome-control-center.dirs:
* debian/gnome-control-center.links:
  - Add a link to the control center shell for indicators
* debian/patches/00_disable-nm.patch:
  - Temporary patch to disable building with NetworkManager until we get
    the new one in the archive
* debian/patches/01_git_remove_gettext_calls.patch:
  - Remove calls to AM_GNU_GETTEXT, IT_PROG_INTLTOOL should be enough
* debian/patches/01_git_kill_warning.patch:
  - Kill warning
* debian/patches/50_ubuntu_systemwide_prefs.patch:
  - Ubuntu specific proxy preferences
* debian/patches/51_ubuntu_system_keyboard.patch:
  - Implement the global keyboard spec at https://wiki.ubuntu.com/DefaultKeyboardSettings

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
WM_MODULE_DIR=$(libdir)/window-manager-settings
2
 
 
3
 
INCLUDES =                                                              \
4
 
        -DGNOMELOCALEDIR="\"$(datadir)/locale\""                        \
5
 
        -DGNOME_ICONDIR=\""$(datadir)/pixmaps"\"                        \
6
 
        -DG_LOG_DOMAIN=\"capplet-common\"                               \
7
 
        -DGNOME_WM_PROPERTY_PATH=\"$(datadir)/gnome/wm-properties\"     \
8
 
        -DGNOME_WINDOW_MANAGER_MODULE_PATH=\""$(WM_MODULE_DIR)"\"       \
9
 
        -I$(top_srcdir)/                                                \
10
 
        @CAPPLET_CFLAGS@                                                \
11
 
        -DMETACITY_THEME_DIR=\""$(datadir)/themes"\"
12
 
 
13
 
lib_LTLIBRARIES = libgnome-window-settings.la
14
 
 
15
 
libgnome_window_settings_la_LDFLAGS =   \
16
 
        -export_dynamic                 \
17
 
        -no-undefined                   \
18
 
        -version-info 1:0:0
19
 
 
20
 
libgnome_window_settings_la_LIBADD = $(GNOMECC_LIBS)
21
 
 
22
 
libgnome_window_settings_la_SOURCES = \
23
 
        gnome-window-manager.c  \
24
 
        gnome-window-manager.h  \
25
 
        gnome-wm-manager.c      \
26
 
        gnome-wm-manager.h
27
 
 
28
 
libgnome_window_settingsincludedir = $(includedir)/gnome-window-settings-2.0
29
 
 
30
 
libgnome_window_settingsinclude_HEADERS =       \
31
 
        gnome-window-manager.h                  \
32
 
        gnome-wm-manager.h
33
 
 
34
 
pkgconfigdir = $(libdir)/pkgconfig
35
 
pkgconfig_DATA = gnome-window-settings-2.0.pc
36
 
 
37
 
EXTRA_DIST =                                    \
38
 
        gnome-window-settings-2.0.pc.in
39
 
 
40
 
wms_flags = -export_dynamic -avoid-version -module
41
 
wmsdir = $(WM_MODULE_DIR)
42
 
 
43
 
wms_LTLIBRARIES =                       \
44
 
        libmetacity.la
45
 
 
46
 
libmetacity_la_SOURCES =                \
47
 
        metacity-window-manager.c       \
48
 
        metacity-window-manager.h
49
 
 
50
 
libmetacity_la_LDFLAGS = $(wms_flags)
51
 
libmetacity_la_LIBADD =                 \
52
 
        $(GNOMECC_LIBS)                 \
53
 
        libgnome-window-settings.la
54
 
 
55
 
-include $(top_srcdir)/git.mk