~ubuntu-branches/ubuntu/wily/gnome-do/wily

« back to all changes in this revision

Viewing changes to Do.Platform/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Christopher James Halse Rogers
  • Date: 2011-02-15 21:50:02 UTC
  • mfrom: (1.1.10 upstream)
  • Revision ID: james.westby@ubuntu.com-20110215215002-1j8ylb69o15asb06
Tags: 0.8.4-0ubuntu1
* The Race Against FF upload.  Merge from unreleased Debian git.
  Remaining Ubuntu changes:
  + debian/patches/05_disable_resize_grips.patch.diff:
    Disable resize handles for the Do windows.
  + debian/control:
    Bump gtk# build dep for HasResizeGrip API.
* New Debian changes:
* The long fortold release
  + Fixes a threadsafety issue resulting in 100% CPU usage (Closes: 565591,
    LP: #450852).
  + Proxies all keyring calls to the GTK main thread, as required by the new
    gnome-keyring (Closes: 603876, LP: #553643)
* debian/patches/00_bundledlibs.dpatch:
* debian/rules:
  + Upstream has dropped bundled gmcs binary; now 100% DFSG-free, so we don't
    have to repack the tarball or patch the buildsystem.
* debian/patches/03_disable_docky.dpatch:
  + Drop.  Docky is now gone in the upstream tarball.
* debian/rules:
* debian/control:
* debian/patches/*:
  + Switch to quilt to harmonise with other pkg-cli-* packages.
* debian/control:
  + Drop recommends on gnome-do-docklets.  Docky is now a separate package,
    so the docklets are useless for Do.
  + Bump Breaks on gnome-do-plugins to 0.8.3.  Do no longer provides the Wink
    library, which has been imported into the 0.8.3 do-plugins sources.
  + Bump standards-version; no changes needed.
  + Migrate to git and update VCS fields appropriately

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
        src/Do.Platform/Do.Platform.Common/DictionaryPreferencesService.cs \
15
15
        src/Do.Platform/Do.Platform.Common/EventsOnlyNotificationsService.cs \
16
16
        src/Do.Platform/Do.Platform.Common/FileLogService.cs \
 
17
        src/Do.Platform/Do.Platform.Common/AbstractKeyBindingService.cs \
17
18
        src/Do.Platform/Do.Platform.Default/CoreService.cs \
18
19
        src/Do.Platform/Do.Platform.Default/DefaultApplicationService.cs \
19
20
        src/Do.Platform/Do.Platform.Default/DefaultSystemService.cs \
 
21
        src/Do.Platform/Do.Platform.Default/DefaultPackageManagerService.cs \
20
22
        src/Do.Platform/Do.Platform.Default/DefaultPathsService.cs \
21
23
        src/Do.Platform/Do.Platform.Default/EnvironmentService.cs \
22
24
        src/Do.Platform/Do.Platform.Default/LogService.cs \
23
25
        src/Do.Platform/Do.Platform.Default/NotificationsService.cs \
 
26
        src/Do.Platform/Do.Platform.Default/PluginManagerService.cs \
24
27
        src/Do.Platform/Do.Platform.Default/PreferencesService.cs \
25
28
        src/Do.Platform/Do.Platform.Default/SecurePreferencesService.cs \
26
29
        src/Do.Platform/Do.Platform.Default/UniverseFactoryService.cs \
27
30
        src/Do.Platform/Do.Platform.Default/WindowingService.cs \
28
31
        src/Do.Platform/Do.Platform.Default/NetworkService.cs \
 
32
        src/Do.Platform/Do.Platform.Default/KeyBindingService.cs \
29
33
        src/Do.Platform/Do.Platform.Preferences/PreferencesFactory.cs \
30
34
        src/Do.Platform/Do.Platform.Preferences/PreferencesImplementation.cs \
31
35
        src/Do.Platform/Do.Platform.ServiceStack/IInitializedService.cs \
32
36
        src/Do.Platform/Do.Platform.ServiceStack/IService.cs \
 
37
        src/Do.Platform/Do.Platform.ServiceStack/IStrictService.cs \
33
38
        src/Do.Platform/ICoreService.cs \
34
39
        src/Do.Platform/IEnvironmentService.cs \
35
40
        src/Do.Platform/ILogService.cs \
36
41
        src/Do.Platform/INotificationsService.cs \
 
42
        src/Do.Platform/IPluginManagerService.cs \
37
43
        src/Do.Platform/IPreferences.cs \
38
44
        src/Do.Platform/IPreferencesService.cs \
39
45
        src/Do.Platform/ISecurePreferencesService.cs \
45
51
        src/Do.Platform/Notification.cs \
46
52
        src/Do.Platform/NotificationEventArgs.cs \
47
53
        src/Do.Platform/AbstractApplicationService.cs \
 
54
        src/Do.Platform/AbstractPackageManagerService.cs \
48
55
        src/Do.Platform/AbstractSystemService.cs \
49
56
        src/Do.Platform/PathsService.cs \
50
57
        src/Do.Platform/PreferencesChangedEventArgs.cs \
52
59
        src/Do.Platform/Services.cs \
53
60
        src/Do.Platform/INetworkService.cs \
54
61
        src/Do.Platform/NetworkStateChangedEventArgs.cs \
 
62
        src/Do.Platform/IKeyBindingService.cs \
 
63
        src/Do.Platform/KeyBinding.cs \
55
64
        src/Do.Universe/Do.Universe.Common/EmailAction.cs \
56
65
        src/Do.Universe/Do.Universe.Common/OpenAction.cs \
57
66
        src/Do.Universe/Do.Universe.Common/OpenUrlAction.cs \
58
67
        src/Do.Universe/Do.Universe.Common/OpenWithAction.cs \
59
68
        src/Do.Universe/Do.Universe.Common/RevealAction.cs \
60
69
        src/Do.Universe/Do.Universe.Common/RunAction.cs \
 
70
        src/Do.Universe/Do.Universe.Common/CopyToClipboardAction.cs \
61
71
        src/System/Linq/EnumerableExtensions.cs
62
72
 
63
73
if HAVE_NUNIT
83
93
        System \
84
94
        System.Core \
85
95
        Mono.Posix \
 
96
        $(GTK_SHARP_20_LIBS) \
86
97
        $(MONO_ADDINS_LIBS) \
87
98
        $(NUNIT_LIBS)