~ubuntu-branches/ubuntu/gutsy/tomboy/gutsy-updates

« back to all changes in this revision

Viewing changes to Tomboy/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Sebastian Dröge
  • Date: 2006-11-16 21:24:14 UTC
  • mfrom: (1.1.7 upstream) (2.1.1 etch)
  • Revision ID: james.westby@ubuntu.com-20061116212414-i9mqu3nnn90ulo7m
Tags: 0.5.0-0ubuntu1
* New upstream release
* debian/patches/52_applet-crash.patch:
  + Dropped, merged upstream
* debian/control,
  debian/patches/52_external-dbus-sharp.patch:
  + Build depend on libdbus-1-cil and build against it instead of the
    bundled version
* debian/rules:
  + Install DBus service file into the correct directory
* debian/patches/53_tomboy-tray-icon.patch:
  + Correctly set the icon for the trayicon

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
        $(srcdir)/RemoteControlProxy.cs
15
15
endif
16
16
 
17
 
if ENABLE_GTKSPELL
18
 
ENABLE_GTKSPELL_CSFLAGS = -define:ENABLE_GTKSPELL
19
 
endif
20
 
 
21
17
if FIXED_GTKSPELL
22
18
FIXED_GTKSPELL_CSFLAGS = -define:FIXED_GTKSPELL
23
19
endif
28
24
        -unsafe                         \
29
25
        -target:exe                     \
30
26
        $(DBUS_CSFLAGS)                 \
31
 
        $(ENABLE_GTKSPELL_CSFLAGS)      \
32
27
        $(FIXED_GTKSPELL_CSFLAGS)
33
28
 
34
29
CSFILES =                                       \
43
38
        $(srcdir)/PluginManager.cs              \
44
39
        $(srcdir)/Preferences.cs                \
45
40
        $(srcdir)/RecentChanges.cs              \
46
 
        $(srcdir)/Search.cs                     \
47
41
        $(srcdir)/Tray.cs                       \
48
42
        $(srcdir)/Trie.cs                       \
49
43
        $(srcdir)/Undo.cs                       \
55
49
        \
56
50
        $(DBUS_CSFILES) 
57
51
 
 
52
### Obsolete CSFILES
 
53
#       $(srcdir)/Search.cs
 
54
 
 
55
 
58
56
ASSEMBLIES =            \
59
57
        $(TOMBOY_LIBS)  \
60
58
        -r:Mono.Posix
63
61
        -resource:$(top_srcdir)/data/GNOME_TomboyApplet.xml,GNOME_TomboyApplet.xml      \
64
62
        -resource:$(top_builddir)/data/DefaultPlugins.desktop,DefaultPlugins.desktop    \
65
63
        -resource:$(top_srcdir)/data/images/tomboy.png,tomboy.png                       \
66
 
        -resource:$(top_srcdir)/data/images/gnome-searchtool.png,gnome-searchtool.png
 
64
        -resource:$(top_srcdir)/data/images/tomboy-note-16.png,tomboy-note.png                  \
 
65
        -resource:$(top_srcdir)/data/images/tintin.png,tintin.png                       \
 
66
        -resource:$(top_srcdir)/data/images/gnome-searchtool.png,gnome-searchtool.png   \
 
67
        -resource:$(top_srcdir)/data/images/pinup.png,pinup.png                         \
 
68
        -resource:$(top_srcdir)/data/images/pinup-active.png,pinup-active.png           \
 
69
        -resource:$(top_srcdir)/data/images/pindown.png,pindown.png
 
70
 
67
71
 
68
72
$(TARGET): $(CSFILES) Defines.cs
69
73
        $(CSC) -out:$@ $(CSFLAGS) $^ $(ASSEMBLIES) $(RESOURCES)