~kklimonda/ubuntu/natty/hamster-applet/lp.697667

« back to all changes in this revision

Viewing changes to hamster/keybinder/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Chris Coulson
  • Date: 2010-02-10 02:52:31 UTC
  • mfrom: (1.1.14 upstream)
  • Revision ID: james.westby@ubuntu.com-20100210025231-x0q5h4q7nlvihl09
Tags: 2.29.90-0ubuntu1
* New upstream version
  - workspace tracking - switch activity, when switching desktops
  - chart improvements - theme friendly and less noisier
  - for those without GNOME panel there is now a standalone version, 
    accessible via Applications -> Accessories -> Time Tracker
  - overview window remembers position
  - maintaining cursor on the selected row after edits / refreshes
  - descriptions once again in the main input field, delimited by comma
  - activity suggestion box now sorts items by recency (Patryk Zawadzki)
  - searching
  - simplified save report dialog, thanks to the what you see is what you 
    report revamp
  - overview/stats replaced with activities / totals and stats accessible 
    from totals
  - interactive graphs to drill down in totals
  - miscellaneous performance improvements
  - pixel-perfect graphs
* Updated 01_startup-fix.patch to apply to new source layout
* debian/control:
  - Add build-depend on gnome-doc-utils

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
CPPFLAGS = $(PYTHON_INCLUDES) $(HAMSTER_CFLAGS)
2
 
 
3
 
_keybinderdir = $(pyexecdir)/hamster/keybinder
4
 
_keybinder_LTLIBRARIES = _keybinder.la
5
 
_keybinder_la_LDFLAGS = -module -avoid-version -export-symbols-regex init_keybinder
6
 
_keybinder_la_LIBADD = $(HAMSTER_LIBS)
7
 
_keybinder_la_SOURCES = \
8
 
        _keybindermodule.c \
9
 
        eggaccelerators.c \
10
 
        eggaccelerators.h \
11
 
        tomboykeybinder.c \
12
 
        tomboykeybinder.h
13
 
 
14
 
nodist__keybinder_la_SOURCES = _keybinder.c
15
 
 
16
 
_keybinder_PYTHON = \
17
 
        __init__.py
18
 
 
19
 
CLEANFILES = _keybinder.c
20
 
EXTRA_DIST = \
21
 
        _keybinder.defs \
22
 
        _keybinder.override \
23
 
        gen-defs.sh
24
 
 
25
 
_keybinder.c: _keybinder.defs _keybinder.override
26
 
.defs.c:
27
 
        (cd $(srcdir) \
28
 
         && $(PYGTK_CODEGEN) \
29
 
            --override $*.override \
30
 
            --register $(PYGTK_DEFSDIR)/gtk-types.defs \
31
 
            --register $(PYGTK_DEFSDIR)/gdk-types.defs \
32
 
            --prefix py$* $*.defs) > gen-$*.c \
33
 
        && cp gen-$*.c $*.c \
34
 
        && rm -f gen-$*.c
35