~ubuntu-branches/ubuntu/jaunty/gimp/jaunty-security

« back to all changes in this revision

Viewing changes to menus/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Holbach
  • Date: 2007-05-02 16:33:03 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20070502163303-bvzhjzbpw8qglc4y
Tags: 2.3.16-1ubuntu1
* Resynchronized with Debian, remaining Ubuntu changes:
  - debian/rules: i18n magic.
* debian/control.in:
  - Maintainer: Ubuntu Core Developers <ubuntu-devel@lists.ubuntu.com>
* debian/patches/02_help-message.patch,
  debian/patches/03_gimp.desktop.in.in.patch,
  debian/patches/10_dont_show_wizard.patch: updated.
* debian/patches/04_composite-signedness.patch,
  debian/patches/05_add-letter-spacing.patch: dropped, used upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
 
12
12
menudata_DATA = \
13
13
        $(menudata_built_files)         \
 
14
        brush-editor-menu.xml           \
14
15
        brushes-menu.xml                \
15
16
        buffers-menu.xml                \
16
17
        channels-menu.xml               \
17
 
        colormap-editor-menu.xml        \
 
18
        colormap-menu.xml               \
 
19
        cursor-info-menu.xml            \
18
20
        documents-menu.xml              \
19
21
        error-console-menu.xml          \
20
22
        fonts-menu.xml                  \
25
27
        palette-editor-menu.xml         \
26
28
        palettes-menu.xml               \
27
29
        patterns-menu.xml               \
28
 
        qmask-menu.xml                  \
29
 
        selection-editor-menu.xml       \
 
30
        quick-mask-menu.xml             \
 
31
        sample-points-menu.xml          \
 
32
        selection-menu.xml              \
30
33
        templates-menu.xml              \
31
34
        text-editor-toolbar.xml         \
32
35
        tool-options-menu.xml           \
33
36
        tools-menu.xml                  \
 
37
        undo-menu.xml                   \
34
38
        vectors-menu.xml
35
39
 
36
40
EXTRA_DIST = \
38
42
        $(menudata_in_files)            \
39
43
        dialogs-menuitems.xml           \
40
44
        gtkuimanager.dtd                \
41
 
        menus.xsl
 
45
        menus.xsl                       \
 
46
        makefile.msc
42
47
 
43
48
MAINTAINERCLEAN_FILES = $(menudata_built_files)
44
49
 
45
50
 
 
51
if GIMP_UNSTABLE
 
52
XSLTPARAMS = --stringparam debug-menu yes
 
53
endif
 
54
 
46
55
%.xml: %.xml.in menus.xsl dialogs-menuitems.xml
47
56
if HAVE_XSLTPROC
48
 
        $(XSLTPROC) --xinclude menus.xsl $< > $(@) || rm -f $(@)
 
57
        $(XSLTPROC) --xinclude $(XSLTPARAMS) menus.xsl $< > $(@) || rm -f $(@)
49
58
else
50
59
        @echo "xsltproc is needed to build the menus XML files"; exit 1;
51
60
endif