~ubuntu-branches/ubuntu/maverick/gnome-screensaver/maverick

« back to all changes in this revision

Viewing changes to data/images/cosmos/Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2009-09-23 12:54:12 UTC
  • mfrom: (1.1.32 upstream)
  • Revision ID: james.westby@ubuntu.com-20090923125412-thw2xjbm00cilt2w
Tags: 2.28.0-0ubuntu1
* New upstream version
  Fixed bugs:
  - #444927, get idle time from xorg (lp: #357494)
  - #463010, Port gnome-screensaver from libglade to gtkbuilder
  - #564061, Install .desktop file
  - #570402, screensaver crash if number of screens changes
  - #570941, String not marked for translation gnome-screensaver-command.c
  - #574896, [Leave message] Cancel button should clean clipboard buffe
  - #576463, can't unlock screen after upgrade until restarting 
             gnome-screensaver
  - #581995, Fade out doesn't properly fall back to gamma number if X server
             only supports 0-size ramp
  - #586174, Encoding key in desktop files is deprecated
  - #589728, gnome-screensaver: implicit declaration g_printf
  - #590776, screensaver is never activated
  - #591193, Update/Create .gitignore
  - #591194, Add Comment and Icon in gnome-screensaver.desktop
  - #594082, gnome-screensaver ignores input when fading to black
  Translators
* debian/control.in:
  - don't use libglade
* debian/patches/06_unbreak_upgrade_from_jaunty.patch:
  - the change is in the new version

Show diffs side-by-side

added added

removed removed

Lines of Context:
67
67
am__base_list = \
68
68
  sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
69
69
  sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
70
 
am__installdirs = "$(DESTDIR)$(imagesdir)"
71
 
DATA = $(images_DATA)
 
70
am__installdirs = "$(DESTDIR)$(imagesdir)" "$(DESTDIR)$(metadatadir)"
 
71
DATA = $(images_DATA) $(metadata_DATA)
72
72
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
73
73
ACLOCAL = @ACLOCAL@
74
74
ALL_LINGUAS = @ALL_LINGUAS@
174
174
PACKAGE_NAME = @PACKAGE_NAME@
175
175
PACKAGE_STRING = @PACKAGE_STRING@
176
176
PACKAGE_TARNAME = @PACKAGE_TARNAME@
 
177
PACKAGE_URL = @PACKAGE_URL@
177
178
PACKAGE_VERSION = @PACKAGE_VERSION@
178
179
PAM_PREFIX = @PAM_PREFIX@
179
180
PATH_SEPARATOR = @PATH_SEPARATOR@
255
256
top_builddir = @top_builddir@
256
257
top_srcdir = @top_srcdir@
257
258
NULL = 
258
 
imagesdir = $(SLIDESHOW_COSMOS_DIR)
259
 
images_DATA = \
 
259
BACKGROUNDS = \
 
260
        blue-marble-west.jpg    \
260
261
        cloud.jpg               \
261
262
        comet.jpg               \
262
263
        earth-horizon.jpg       \
263
 
        earthrise.jpg           \
264
264
        galaxy-ngc3370.jpg      \
265
265
        helix-nebula.jpg        \
266
266
        jupiter.jpg             \
268
268
        whirlpool.jpg           \
269
269
        $(NULL)
270
270
 
 
271
imagesdir = $(SLIDESHOW_COSMOS_DIR)
 
272
images_DATA = \
 
273
        $(BACKGROUNDS)          \
 
274
        background-1.xml        \
 
275
        $(NULL)
 
276
 
 
277
metadata_in_files = cosmos.xml.in
 
278
metadatadir = $(datadir)/gnome-background-properties
 
279
metadata_DATA = $(metadata_in_files:.xml.in=.xml)
 
280
edit = sed \
 
281
        -e 's|@IMAGESDIR[@]|$(imagesdir)|g'
 
282
 
271
283
EXTRA_DIST = \
272
284
        CREDITS                 \
273
 
        $(images_DATA)          \
 
285
        $(BACKGROUNDS)          \
 
286
        background-1.xml.in     \
 
287
        cosmos.xml.in.in        \
 
288
        $(NULL)
 
289
 
 
290
CLEANFILES = \
 
291
        cosmos.xml.in                   \
 
292
        $(NULL)
 
293
 
 
294
DISTCLEANFILES = \
 
295
        cosmos.xml                      \
 
296
        background-1.xml                \
 
297
        $(NULL)
 
298
 
 
299
MAINTAINERCLEANFILES = \
 
300
        *~                              \
 
301
        Makefile.in                     \
274
302
        $(NULL)
275
303
 
276
304
all: all-am
332
360
        test -n "$$files" || exit 0; \
333
361
        echo " ( cd '$(DESTDIR)$(imagesdir)' && rm -f" $$files ")"; \
334
362
        cd "$(DESTDIR)$(imagesdir)" && rm -f $$files
 
363
install-metadataDATA: $(metadata_DATA)
 
364
        @$(NORMAL_INSTALL)
 
365
        test -z "$(metadatadir)" || $(MKDIR_P) "$(DESTDIR)$(metadatadir)"
 
366
        @list='$(metadata_DATA)'; test -n "$(metadatadir)" || list=; \
 
367
        for p in $$list; do \
 
368
          if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
 
369
          echo "$$d$$p"; \
 
370
        done | $(am__base_list) | \
 
371
        while read files; do \
 
372
          echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(metadatadir)'"; \
 
373
          $(INSTALL_DATA) $$files "$(DESTDIR)$(metadatadir)" || exit $$?; \
 
374
        done
 
375
 
 
376
uninstall-metadataDATA:
 
377
        @$(NORMAL_UNINSTALL)
 
378
        @list='$(metadata_DATA)'; test -n "$(metadatadir)" || list=; \
 
379
        files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
 
380
        test -n "$$files" || exit 0; \
 
381
        echo " ( cd '$(DESTDIR)$(metadatadir)' && rm -f" $$files ")"; \
 
382
        cd "$(DESTDIR)$(metadatadir)" && rm -f $$files
335
383
tags: TAGS
336
384
TAGS:
337
385
 
373
421
check: check-am
374
422
all-am: Makefile $(DATA)
375
423
installdirs:
376
 
        for dir in "$(DESTDIR)$(imagesdir)"; do \
 
424
        for dir in "$(DESTDIR)$(imagesdir)" "$(DESTDIR)$(metadatadir)"; do \
377
425
          test -z "$$dir" || $(MKDIR_P) "$$dir"; \
378
426
        done
379
427
install: install-am
393
441
mostlyclean-generic:
394
442
 
395
443
clean-generic:
 
444
        -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
396
445
 
397
446
distclean-generic:
398
447
        -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
399
448
        -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
 
449
        -test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES)
400
450
 
401
451
maintainer-clean-generic:
402
452
        @echo "This command is intended for maintainers to use"
403
453
        @echo "it deletes files that may require special tools to rebuild."
 
454
        -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES)
404
455
clean: clean-am
405
456
 
406
457
clean-am: clean-generic clean-libtool mostlyclean-am
421
472
 
422
473
info-am:
423
474
 
424
 
install-data-am: install-imagesDATA
 
475
install-data-am: install-imagesDATA install-metadataDATA
425
476
 
426
477
install-dvi: install-dvi-am
427
478
 
465
516
 
466
517
ps-am:
467
518
 
468
 
uninstall-am: uninstall-imagesDATA
 
519
uninstall-am: uninstall-imagesDATA uninstall-metadataDATA
469
520
 
470
521
.MAKE: install-am install-strip
471
522
 
475
526
        install-data install-data-am install-dvi install-dvi-am \
476
527
        install-exec install-exec-am install-html install-html-am \
477
528
        install-imagesDATA install-info install-info-am install-man \
478
 
        install-pdf install-pdf-am install-ps install-ps-am \
479
 
        install-strip installcheck installcheck-am installdirs \
480
 
        maintainer-clean maintainer-clean-generic mostlyclean \
481
 
        mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
482
 
        uninstall uninstall-am uninstall-imagesDATA
483
 
 
 
529
        install-metadataDATA install-pdf install-pdf-am install-ps \
 
530
        install-ps-am install-strip installcheck installcheck-am \
 
531
        installdirs maintainer-clean maintainer-clean-generic \
 
532
        mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \
 
533
        ps ps-am uninstall uninstall-am uninstall-imagesDATA \
 
534
        uninstall-metadataDATA
 
535
 
 
536
 
 
537
cosmos.xml.in: cosmos.xml.in.in Makefile
 
538
        $(edit) $< >$@
 
539
 
 
540
background-1.xml: background-1.xml.in Makefile
 
541
        $(edit) $< >$@
 
542
@INTLTOOL_XML_RULE@
484
543
 
485
544
# Tell versions [3.59,3.63) of GNU make to not export all variables.
486
545
# Otherwise a system limit (for SysV at least) may be exceeded.