~ubuntu-branches/ubuntu/maverick/nautilus-actions/maverick

« back to all changes in this revision

Viewing changes to src/runtime/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Christine Spang
  • Date: 2009-10-25 14:04:13 UTC
  • mfrom: (1.1.7 upstream) (3.1.5 squeeze)
  • Revision ID: james.westby@ubuntu.com-20091025140413-okqdth1kvcx8ko3o
Tags: 2.29.1-1
* New upstream version.
  - implements full API as defined for use by Nautilus menu
    extensions : this let the user define items which will be
    available when there is no selection, and will apply to
    current folder, either in the 'File' menu or in the
    toolbar ;
  - the ability for the user to define a full hierarchy of
    actions with menus, submenus, and so on ;
  - drag and drop ;
  - full cut/copy/paste clipboard support.
  - Gnome bugs fixed:
    - #325528 reported by Frederic Ruaudel
              (bloated  contextual menu)
    - #325587 reported by Frederic Ruaudel
              (drag & drop support)
    - #326699 reported by Frederic Ruaudel
              (action items do not remain in user defined order)
    - #353353 reported by Frederic Ruaudel
              (check if command exist and if not warn user)
    - #588482 reported by Sean
            (ordering in actions list)
    - #326699 reported by Frederic Ruaudel
            (action items do not remain in user defined order)
    - #353353 reported by Frederic Ruaudel
              (check if command exist and if not warn user)
    - #588482 reported by Sean
              (ordering in actions list)
    - #590400 reported by Pierre Wieser
              (have some sort of warnings in the ui)
    - #599520 reported by António Lima
              (do not mark authors names and emails for translating)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Nautilus Actions
 
2
# A Nautilus extension which offers configurable context menu actions.
 
3
#
 
4
# Copyright (C) 2005 The GNOME Foundation
 
5
# Copyright (C) 2006, 2007, 2008 Frederic Ruaudel and others (see AUTHORS)
 
6
# Copyright (C) 2009 Pierre Wieser and others (see AUTHORS)
 
7
#
 
8
# This Program is free software; you can redistribute it and/or
 
9
# modify it under the terms of the GNU General Public License as
 
10
# published by the Free Software Foundation; either version 2 of
 
11
# the License, or (at your option) any later version.
 
12
#
 
13
# This Program is distributed in the hope that it will be useful,
 
14
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
15
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
16
# GNU General Public License for more details.
 
17
#
 
18
# You should have received a copy of the GNU General Public
 
19
# License along with this Library; see the file COPYING.  If not,
 
20
# write to the Free Software Foundation, Inc., 59 Temple Place,
 
21
# Suite 330, Boston, MA 02111-1307, USA.
 
22
#
 
23
# Authors:
 
24
#   Frederic Ruaudel <grumz@grumz.net>
 
25
#   Rodrigo Moya <rodrigo@gnome-db.org>
 
26
#   Pierre Wieser <pwieser@trychlos.org>
 
27
#   ... and many others (see AUTHORS)
 
28
 
 
29
noinst_LTLIBRARIES = libna-runtime.la
 
30
 
 
31
AM_CPPFLAGS += \
 
32
        -DGNOMELOCALEDIR=\""$(datadir)/locale"\"        \
 
33
        -DG_LOG_DOMAIN=\"${NA_LOGDOMAIN_RUNTIME}\"      \
 
34
        $(NAUTILUS_ACTIONS_CFLAGS)                                      \
 
35
        $(NULL)
 
36
 
 
37
libna_runtime_la_SOURCES = \
 
38
        na-gconf-keys.h                                                         \
 
39
        na-gconf-monitor.c                                                      \
 
40
        na-gconf-monitor.h                                                      \
 
41
        na-gconf-provider.c                                                     \
 
42
        na-gconf-provider.h                                                     \
 
43
        na-gconf-provider-keys.h                                        \
 
44
        na-gconf-utils.c                                                        \
 
45
        na-gconf-utils.h                                                        \
 
46
        na-gnome-vfs-uri.c                                                      \
 
47
        na-gnome-vfs-uri.h                                                      \
 
48
        na-iabout.c                                                                     \
 
49
        na-iabout.h                                                                     \
 
50
        na-iduplicable.c                                                        \
 
51
        na-iduplicable.h                                                        \
 
52
        na-iio-provider.c                                                       \
 
53
        na-iio-provider.h                                                       \
 
54
        na-ipivot-consumer.c                                            \
 
55
        na-ipivot-consumer.h                                            \
 
56
        na-iprefs.c                                                                     \
 
57
        na-iprefs.h                                                                     \
 
58
        na-object-api.h                                                         \
 
59
        na-object.c                                                                     \
 
60
        na-object-class.h                                                       \
 
61
        na-object-fn.h                                                          \
 
62
        na-object-priv.h                                                        \
 
63
        na-object-id.c                                                          \
 
64
        na-object-id-class.h                                            \
 
65
        na-object-id-fn.h                                                       \
 
66
        na-object-id-priv.h                                                     \
 
67
        na-object-item.c                                                        \
 
68
        na-object-item-class.h                                          \
 
69
        na-object-item-fn.h                                                     \
 
70
        na-object-item-priv.h                                           \
 
71
        na-object-action.c                                                      \
 
72
        na-object-action-class.h                                        \
 
73
        na-object-action-fn.h                                           \
 
74
        na-object-action-priv.h                                         \
 
75
        na-object-menu.c                                                        \
 
76
        na-object-menu-class.h                                          \
 
77
        na-object-menu-fn.h                                                     \
 
78
        na-object-menu-priv.h                                           \
 
79
        na-object-profile.c                                                     \
 
80
        na-object-profile-class.h                                       \
 
81
        na-object-profile-fn.h                                          \
 
82
        na-object-profile-priv.h                                        \
 
83
        na-pivot.c                                                                      \
 
84
        na-pivot.h                                                                      \
 
85
        na-utils.c                                                                      \
 
86
        na-utils.h                                                                      \
 
87
        $(NULL)
 
88
 
 
89
libna_runtime_la_LIBADD = \
 
90
        $(NULL)