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

« back to all changes in this revision

Viewing changes to po-script-fu/Makefile.in.in

  • 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:
28
28
prefix = @prefix@
29
29
exec_prefix = @exec_prefix@
30
30
datadir = @datadir@
 
31
datarootdir = @datarootdir@
31
32
libdir = @libdir@
32
33
localedir = $(libdir)/locale
33
34
gnulocaledir = $(datadir)/locale
233
234
# and Intltool tags (enclosed in square brackets), and appending a full
234
235
# relative path to them
235
236
POTFILES: POTFILES.in
236
 
        ( if test 'x$(srcdir)' != 'x.'; then \
237
 
            posrcprefix='$(top_srcdir)/'; \
238
 
          else \
239
 
            posrcprefix="../"; \
240
 
          fi; \
 
237
        ( posrcprefix='$(top_srcdir)/'; \
241
238
          rm -f $@-t $@ \
242
 
            && (sed -e '/^#/d'                                          \
243
 
                    -e "s/^\[.*\] +//"                                  \
244
 
                    -e '/^[     ]*$$/d'                                 \
245
 
                    -e "s@.*@   $$posrcprefix& \\\\@" < $(srcdir)/$@.in \
246
 
                | sed -e '$$s/\\$$//') > $@-t \
 
239
            && (sed -e '/^#/d'                                  \
 
240
                    -e 's/^[[].*] *//'                          \
 
241
                    -e '/^[     ]*$$/d'                         \
 
242
                    -e "s@^@    $$posrcprefix@" $(srcdir)/$@.in \
 
243
                | sed -e '$$!s/$$/ \\/') > $@-t \
247
244
            && chmod a-w $@-t \
248
245
            && mv $@-t $@ )
249
246