~ubuntu-branches/ubuntu/precise/nautilus-actions/precise

« back to all changes in this revision

Viewing changes to src/nact/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Christine Spang
  • Date: 2009-08-12 14:04:00 UTC
  • mfrom: (1.1.6 upstream) (3.1.4 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090812140400-ufe3o3jvr62lf0sf
Tags: 1.12.0-1
* New upstream stable release.
  - Actions can now be enabled/disabled: disabled actions will
    never show up in the nautilus context menu
  - Gnome Bugzilla bugs fixed:
    - #325519 asked by Frederic Ruaudel (enabled property)
    - #590398 reported by Pierre Wieser (install doc)
    - #590399 reported by Pierre Wieser (gtk_image_menu_item_set_image)
    - #590709 reported by Claude Paroz (markup in translatable strings)
    - #590711 reported by Claude Paroz (pipe char is ambiguous to translate)
 - Do not install GConf schemas if --disable-schemas-install option has
   been specified
 - New/updated es and fr translations

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
bin_PROGRAMS = \
 
30
        nautilus-actions-config-tool                                            \
 
31
        $(NULL)
 
32
 
 
33
AM_CPPFLAGS += \
 
34
        -I $(top_srcdir)/src                                                            \
 
35
        -DGNOMELOCALEDIR=\""$(datadir)/locale"\"                        \
 
36
        -DGLADEDIR=\"$(pkgdatadir)\"                                            \
 
37
        -DG_LOG_DOMAIN=\"${NA_LOGDOMAIN_NACT}\"                         \
 
38
        $(NAUTILUS_ACTIONS_CFLAGS)                                                      \
 
39
        $(NULL)
 
40
 
 
41
nautilus_actions_config_tool_SOURCES = \
 
42
        base-application.c                                                                      \
 
43
        base-application.h                                                                      \
 
44
        base-application-class.h                                                        \
 
45
        base-window.c                                                                           \
 
46
        base-window.h                                                                           \
 
47
        base-window-class.h                                                                     \
 
48
        nact-application.c                                                                      \
 
49
        nact-application.h                                                                      \
 
50
        nact-assistant.c                                                                        \
 
51
        nact-assistant.h                                                                        \
 
52
        nact-assistant-export.c                                                         \
 
53
        nact-assistant-export.h                                                         \
 
54
        nact-assistant-import.c                                                         \
 
55
        nact-assistant-import.h                                                         \
 
56
        nact-iaction-tab.c                                                                      \
 
57
        nact-iaction-tab.h                                                                      \
 
58
        nact-iactions-list.c                                                            \
 
59
        nact-iactions-list.h                                                            \
 
60
        nact-iadvanced-tab.c                                                            \
 
61
        nact-iadvanced-tab.h                                                            \
 
62
        nact-icommand-tab.c                                                                     \
 
63
        nact-icommand-tab.h                                                                     \
 
64
        nact-iconditions-tab.c                                                          \
 
65
        nact-iconditions-tab.h                                                          \
 
66
        nact-imenubar.c                                                                         \
 
67
        nact-imenubar.h                                                                         \
 
68
        nact-iprefs.c                                                                           \
 
69
        nact-iprefs.h                                                                           \
 
70
        nact-main.c                                                                                     \
 
71
        nact-main-window.c                                                                      \
 
72
        nact-main-window.h                                                                      \
 
73
        nact-window.c                                                                           \
 
74
        nact-window.h                                                                           \
 
75
        nact-xml-reader.c                                                                       \
 
76
        nact-xml-reader.h                                                                       \
 
77
        $(NULL)
 
78
 
 
79
nautilus_actions_config_tool_LDADD = \
 
80
        $(top_builddir)/src/common/libnact.la                           \
 
81
        $(NAUTILUS_ACTIONS_LIBS)                                                        \
 
82
        $(NULL)
 
83
 
 
84
pkgdata_DATA = nautilus-actions-config-tool.ui
 
85
 
 
86
@INTLTOOL_DESKTOP_RULE@
 
87
 
 
88
applications_in_files = nact.desktop.in
 
89
 
 
90
applications_files = $(applications_in_files:.desktop.in=.desktop)
 
91
 
 
92
applicationsdir = $(datadir)/applications
 
93
 
 
94
applications_DATA = $(applications_files)
 
95
 
 
96
CLEANFILES = \
 
97
        $(applications_files)
 
98
 
 
99
EXTRA_DIST = \
 
100
        $(applications_in_files)                                                        \
 
101
        $(pkgdata_DATA)                                                                         \
 
102
        $(NULL)
 
103
 
 
104
uninstall-hook:
 
105
        -\rm -fr $(DESTDIR)$(pkgdatadir)