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

« back to all changes in this revision

Viewing changes to typing-break/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
 
bin_PROGRAMS = gnome-typing-monitor
2
 
 
3
 
gnome_typing_monitor_SOURCES =                  \
4
 
        main.c                                  \
5
 
        drwright.c                              \
6
 
        drwright.h                              \
7
 
        drw-break-window.c                      \
8
 
        drw-break-window.h                      \
9
 
        drw-monitor.c                           \
10
 
        drw-monitor.h                           \
11
 
        drw-utils.c                             \
12
 
        drw-utils.h                             \
13
 
        drw-selection.c                         \
14
 
        drw-selection.h                         \
15
 
        drw-timer.c                             \
16
 
        drw-timer.h
17
 
 
18
 
gnome_typing_monitor_CPPFLAGS = \
19
 
        -DGNOMELOCALEDIR="\"$(datadir)/locale\""        \
20
 
        -DIMAGEDIR=\"$(pkgdatadir)/pixmaps\"            \
21
 
        $(AM_CPPFLAGS)
22
 
gnome_typing_monitor_CFLAGS = \
23
 
        @TYPING_CFLAGS@ \
24
 
        $(AM_CFLAGS)
25
 
 
26
 
gnome_typing_monitor_LDADD = @TYPING_LIBS@ @SCREENSAVER_LIBS@
27
 
 
28
 
if HAVE_LIBCANBERRA_GTK
29
 
  gnome_typing_monitor_CFLAGS += -DHAVE_CANBERRA_GTK @LIBCANBERRA_GTK_CFLAGS@ 
30
 
  gnome_typing_monitor_LDADD += @LIBCANBERRA_GTK_LIBS@
31
 
endif
32
 
 
33
 
if HAVE_APP_INDICATOR
34
 
  gnome_typing_monitor_CFLAGS += -DHAVE_APP_INDICATOR @APP_INDICATOR_CFLAGS@
35
 
  gnome_typing_monitor_LDADD += @APP_INDICATOR_LIBS@
36
 
endif
37
 
 
38
 
imagedir = $(pkgdatadir)/pixmaps
39
 
dist_image_DATA = bar.png bar-red.png bar-green.png bar-disabled.png ocean-stripes.png
40
 
 
41
 
# Themeable application icon
42
 
icondir = $(datadir)/icons/hicolor/48x48/apps
43
 
dist_icon_DATA = typing-monitor.png
44
 
svgicondir = $(datadir)/icons/hicolor/scalable/apps
45
 
dist_svgicon_DATA = typing-monitor.svg
46
 
gtk_update_icon_cache = gtk-update-icon-cache -f -t $(datadir)/icons/hicolor
47
 
install-data-hook: update-icon-cache
48
 
uninstall-hook: update-icon-cache
49
 
update-icon-cache:
50
 
        @-if test -z "$(DESTDIR)"; then \
51
 
                echo "Updating Gtk icon cache."; \
52
 
                $(gtk_update_icon_cache); \
53
 
        else \
54
 
                echo "*** Icon cache not updated.  After (un)install, run this:"; \
55
 
                echo "***   $(gtk_update_icon_cache)"; \
56
 
        fi
57
 
 
58
 
-include $(top_srcdir)/git.mk