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

« back to all changes in this revision

Viewing changes to src/nact/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:
33
33
AM_CPPFLAGS += \
34
34
        -I $(top_srcdir)/src                                                            \
35
35
        -DGNOMELOCALEDIR=\""$(datadir)/locale"\"                        \
36
 
        -DGLADEDIR=\"$(pkgdatadir)\"                                            \
 
36
        -DPKGDATADIR=\"$(pkgdatadir)\"                                          \
37
37
        -DG_LOG_DOMAIN=\"${NA_LOGDOMAIN_NACT}\"                         \
38
38
        $(NAUTILUS_ACTIONS_CFLAGS)                                                      \
39
39
        $(NULL)
40
40
 
 
41
BUILT_SOURCES = \
 
42
        nact-marshal.c                                                                          \
 
43
        nact-marshal.h                                                                          \
 
44
        $(NULL)
 
45
 
41
46
nautilus_actions_config_tool_SOURCES = \
42
47
        base-application.c                                                                      \
43
48
        base-application.h                                                                      \
44
49
        base-application-class.h                                                        \
 
50
        base-assistant.c                                                                        \
 
51
        base-assistant.h                                                                        \
 
52
        base-builder.c                                                                          \
 
53
        base-builder.h                                                                          \
 
54
        base-dialog.c                                                                           \
 
55
        base-dialog.h                                                                           \
 
56
        base-iprefs.c                                                                           \
 
57
        base-iprefs.h                                                                           \
45
58
        base-window.c                                                                           \
46
59
        base-window.h                                                                           \
47
60
        base-window-class.h                                                                     \
 
61
        egg-tree-multi-dnd.c                                                            \
 
62
        egg-tree-multi-dnd.h                                                            \
48
63
        nact-application.c                                                                      \
49
64
        nact-application.h                                                                      \
50
 
        nact-assistant.c                                                                        \
51
 
        nact-assistant.h                                                                        \
52
65
        nact-assistant-export.c                                                         \
53
66
        nact-assistant-export.h                                                         \
 
67
        nact-assistant-export-ask.c                                                     \
 
68
        nact-assistant-export-ask.h                                                     \
54
69
        nact-assistant-import.c                                                         \
55
70
        nact-assistant-import.h                                                         \
 
71
        nact-assistant-import-ask.c                                                     \
 
72
        nact-assistant-import-ask.h                                                     \
 
73
        nact-clipboard.c                                                                        \
 
74
        nact-clipboard.h                                                                        \
 
75
        nact-iactions-list.c                                                            \
 
76
        nact-iactions-list.h                                                            \
56
77
        nact-iaction-tab.c                                                                      \
57
78
        nact-iaction-tab.h                                                                      \
58
 
        nact-iactions-list.c                                                            \
59
 
        nact-iactions-list.h                                                            \
60
79
        nact-iadvanced-tab.c                                                            \
61
80
        nact-iadvanced-tab.h                                                            \
 
81
        nact-ibackground-tab.c                                                          \
 
82
        nact-ibackground-tab.h                                                          \
62
83
        nact-icommand-tab.c                                                                     \
63
84
        nact-icommand-tab.h                                                                     \
64
85
        nact-iconditions-tab.c                                                          \
65
86
        nact-iconditions-tab.h                                                          \
66
 
        nact-imenubar.c                                                                         \
67
 
        nact-imenubar.h                                                                         \
68
 
        nact-iprefs.c                                                                           \
69
 
        nact-iprefs.h                                                                           \
70
87
        nact-main.c                                                                                     \
 
88
        nact-main-menubar.c                                                                     \
 
89
        nact-main-menubar.h                                                                     \
 
90
        nact-main-statusbar.c                                                           \
 
91
        nact-main-statusbar.h                                                           \
 
92
        nact-main-tab.c                                                                         \
 
93
        nact-main-tab.h                                                                         \
71
94
        nact-main-window.c                                                                      \
72
95
        nact-main-window.h                                                                      \
 
96
        nact-preferences-editor.c                                                       \
 
97
        nact-preferences-editor.h                                                       \
 
98
        nact-tree-model.c                                                                       \
 
99
        nact-tree-model.h                                                                       \
73
100
        nact-window.c                                                                           \
74
101
        nact-window.h                                                                           \
75
102
        nact-xml-reader.c                                                                       \
76
103
        nact-xml-reader.h                                                                       \
 
104
        $(BUILT_SOURCES)                                                                        \
77
105
        $(NULL)
78
106
 
 
107
nact-marshal.h: nact-marshal.list $(GLIB_GENMARSHAL)
 
108
        $(GLIB_GENMARSHAL) $< --header --prefix=nact_marshal > $@
 
109
 
 
110
nact-marshal.c: nact-marshal.list $(GLIB_GENMARSHAL)
 
111
        echo "#include \"nact-marshal.h\"" > $@ && \
 
112
        $(GLIB_GENMARSHAL) $< --body --prefix=nact_marshal >> $@
 
113
 
79
114
nautilus_actions_config_tool_LDADD = \
80
 
        $(top_builddir)/src/common/libnact.la                           \
 
115
        $(top_builddir)/src/common/libna-common.la                      \
 
116
        $(top_builddir)/src/runtime/libna-runtime.la            \
81
117
        $(NAUTILUS_ACTIONS_LIBS)                                                        \
82
118
        $(NULL)
83
119
 
84
 
pkgdata_DATA = nautilus-actions-config-tool.ui
 
120
pkgdata_DATA = \
 
121
        nautilus-actions-config-tool.actions                            \
 
122
        nautilus-actions-maintainer.actions                                     \
 
123
        nact-assistant-export.ui                                                        \
 
124
        nautilus-actions-config-tool.ui                                         \
 
125
        $(NULL)
85
126
 
86
127
@INTLTOOL_DESKTOP_RULE@
87
128
 
94
135
applications_DATA = $(applications_files)
95
136
 
96
137
CLEANFILES = \
97
 
        $(applications_files)
 
138
        $(applications_files)                                                           \
 
139
        $(BUILT_SOURCES)                                                                        \
 
140
        $(NULL)
98
141
 
99
142
EXTRA_DIST = \
100
143
        $(applications_in_files)                                                        \
101
144
        $(pkgdata_DATA)                                                                         \
 
145
        nact-marshal.list                                                                       \
102
146
        $(NULL)
103
147
 
104
148
uninstall-hook: