~ubuntu-branches/ubuntu/raring/banshee/raring

« back to all changes in this revision

Viewing changes to src/Backends/Banshee.Gnome/Makefile.in

  • Committer: Package Import Robot
  • Author(s): Chow Loong Jin
  • Date: 2012-01-23 23:16:49 UTC
  • mfrom: (6.3.22 experimental)
  • Revision ID: package-import@ubuntu.com-20120123231649-safm1f8eycltcgsf
Tags: 2.3.4.ds-1ubuntu1
* Merge from Debian Experimental, remaining changes:
  + Enable and recommend SoundMenu and Disable NotificationArea by default
  + Disable boo and karma extensions
  + Enable and suggest u1ms
  + Move desktop file for Meego UI to /usr/share/une/applications
  + Change the url for the Amazon store redirector
  + [08dea2c] Revert "Fix invalid cast causing ftbfs with libgpod"
* [b617fe0] Convert Ubuntu-specific patches to gbp-pq patches
* Also fixes Launchpad bugs:
  - Fixes race condition while starting (LP: #766303)

Show diffs side-by-side

added added

removed removed

Lines of Context:
35
35
build_triplet = @build@
36
36
host_triplet = @host@
37
37
DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \
 
38
        $(top_srcdir)/build/build.dist.mk \
38
39
        $(top_srcdir)/build/build.environment.mk \
39
40
        $(top_srcdir)/build/build.mk \
40
41
        $(top_srcdir)/build/build.rules.mk
591
592
 
592
593
# Build path to allow running uninstalled
593
594
@ENABLE_GNOME_TRUE@RUN_PATH = $(subst $(space),$(colon), $(MONO_BASE_PATH))
594
 
@ENABLE_GNOME_TRUE@UNIQUE_FILTER_PIPE = tr [:space:] \\n | sort | uniq
595
 
@ENABLE_GNOME_TRUE@BUILD_DATA_DIR = $(top_builddir)/bin/share/$(PACKAGE)
 
595
@ENABLE_GNOME_FALSE@SOURCES_BUILD = $(addprefix $(srcdir)/, \
 
596
@ENABLE_GNOME_FALSE@    $(SOURCES)) \
 
597
@ENABLE_GNOME_FALSE@    $(top_srcdir)/src/AssemblyInfo.cs
596
598
@ENABLE_GNOME_TRUE@SOURCES_BUILD = $(addprefix $(srcdir)/, $(SOURCES)) \
597
599
@ENABLE_GNOME_TRUE@     $(top_srcdir)/src/AssemblyInfo.cs
 
600
@ENABLE_GNOME_FALSE@RESOURCES_EXPANDED = $(addprefix $(srcdir)/, $(RESOURCES))
598
601
@ENABLE_GNOME_TRUE@RESOURCES_EXPANDED = $(addprefix $(srcdir)/, $(RESOURCES))
 
602
@ENABLE_GNOME_FALSE@RESOURCES_BUILD = $(foreach resource, $(RESOURCES_EXPANDED), \
 
603
@ENABLE_GNOME_FALSE@    -resource:$(resource),$(notdir $(resource)))
 
604
 
599
605
@ENABLE_GNOME_TRUE@RESOURCES_BUILD = $(foreach resource, $(RESOURCES_EXPANDED), \
600
606
@ENABLE_GNOME_TRUE@     -resource:$(resource),$(notdir $(resource)))
601
607
 
602
 
@ENABLE_GNOME_TRUE@INSTALL_ICONS = $(top_srcdir)/build/private-icon-theme-installer "$(mkinstalldirs)" "$(INSTALL_DATA)"
 
608
@ENABLE_GNOME_FALSE@THEME_ICONS_SOURCE = $(wildcard $(srcdir)/ThemeIcons/*/*/*.png) $(wildcard $(srcdir)/ThemeIcons/scalable/*/*.svg)
603
609
@ENABLE_GNOME_TRUE@THEME_ICONS_SOURCE = $(wildcard $(srcdir)/ThemeIcons/*/*/*.png) $(wildcard $(srcdir)/ThemeIcons/scalable/*/*.svg)
 
610
@ENABLE_GNOME_FALSE@THEME_ICONS_RELATIVE = $(subst $(srcdir)/ThemeIcons/, , $(THEME_ICONS_SOURCE))
604
611
@ENABLE_GNOME_TRUE@THEME_ICONS_RELATIVE = $(subst $(srcdir)/ThemeIcons/, , $(THEME_ICONS_SOURCE))
 
612
@ENABLE_GNOME_FALSE@ASSEMBLY_EXTENSION = $(strip $(patsubst library, dll, $(TARGET)))
605
613
@ENABLE_GNOME_TRUE@ASSEMBLY_EXTENSION = $(strip $(patsubst library, dll, $(TARGET)))
 
614
@ENABLE_GNOME_FALSE@ASSEMBLY_FILE = $(top_builddir)/bin/$(ASSEMBLY).$(ASSEMBLY_EXTENSION)
606
615
@ENABLE_GNOME_TRUE@ASSEMBLY_FILE = $(top_builddir)/bin/$(ASSEMBLY).$(ASSEMBLY_EXTENSION)
607
 
@ENABLE_GNOME_TRUE@INSTALL_DIR_RESOLVED = $(firstword $(subst , $(DEFAULT_INSTALL_DIR), $(INSTALL_DIR)))
608
 
@ENABLE_GNOME_TRUE@@ENABLE_TESTS_TRUE@ENABLE_TESTS_FLAG = "-define:ENABLE_TESTS"
609
 
@ENABLE_GNOME_TRUE@FILTERED_LINK = $(shell echo "$(LINK)" | $(UNIQUE_FILTER_PIPE))
610
 
@ENABLE_GNOME_TRUE@DEP_LINK = $(shell echo "$(LINK)" | $(UNIQUE_FILTER_PIPE) | sed s,-r:,,g | grep '$(top_builddir)/bin/')
 
616
@ENABLE_GNOME_FALSE@OUTPUT_FILES = \
 
617
@ENABLE_GNOME_FALSE@    $(ASSEMBLY_FILE) \
 
618
@ENABLE_GNOME_FALSE@    $(ASSEMBLY_FILE).mdb
 
619
 
611
620
@ENABLE_GNOME_TRUE@OUTPUT_FILES = \
612
621
@ENABLE_GNOME_TRUE@     $(ASSEMBLY_FILE) \
613
622
@ENABLE_GNOME_TRUE@     $(ASSEMBLY_FILE).mdb
614
623
 
615
 
@ENABLE_GNOME_TRUE@moduledir = $(INSTALL_DIR_RESOLVED)
616
 
@ENABLE_GNOME_TRUE@module_SCRIPTS = $(OUTPUT_FILES)
617
 
@ENABLE_GNOME_FALSE@EXTRA_DIST = $(SOURCES) $(RESOURCES)
 
624
@ENABLE_GNOME_FALSE@EXTRA_DIST = $(SOURCES_BUILD) $(RESOURCES_EXPANDED) $(THEME_ICONS_SOURCE)
618
625
@ENABLE_GNOME_TRUE@EXTRA_DIST = $(SOURCES_BUILD) $(RESOURCES_EXPANDED) $(THEME_ICONS_SOURCE)
 
626
@ENABLE_GNOME_FALSE@CLEANFILES = $(OUTPUT_FILES)
619
627
@ENABLE_GNOME_TRUE@CLEANFILES = $(OUTPUT_FILES)
 
628
@ENABLE_GNOME_FALSE@DISTCLEANFILES = *.pidb
620
629
@ENABLE_GNOME_TRUE@DISTCLEANFILES = *.pidb
 
630
@ENABLE_GNOME_FALSE@MAINTAINERCLEANFILES = Makefile.in
621
631
@ENABLE_GNOME_TRUE@MAINTAINERCLEANFILES = Makefile.in
 
632
@ENABLE_GNOME_TRUE@UNIQUE_FILTER_PIPE = tr [:space:] \\n | sort | uniq
 
633
@ENABLE_GNOME_TRUE@BUILD_DATA_DIR = $(top_builddir)/bin/share/$(PACKAGE)
 
634
@ENABLE_GNOME_TRUE@INSTALL_ICONS = $(top_srcdir)/build/private-icon-theme-installer "$(mkinstalldirs)" "$(INSTALL_DATA)"
 
635
@ENABLE_GNOME_TRUE@INSTALL_DIR_RESOLVED = $(firstword $(subst , $(DEFAULT_INSTALL_DIR), $(INSTALL_DIR)))
 
636
@ENABLE_GNOME_TRUE@@ENABLE_TESTS_TRUE@ENABLE_TESTS_FLAG = "-define:ENABLE_TESTS"
 
637
@ENABLE_GNOME_TRUE@FILTERED_LINK = $(shell echo "$(LINK)" | $(UNIQUE_FILTER_PIPE))
 
638
@ENABLE_GNOME_TRUE@DEP_LINK = $(shell echo "$(LINK)" | $(UNIQUE_FILTER_PIPE) | sed s,-r:,,g | grep '$(top_builddir)/bin/')
 
639
@ENABLE_GNOME_TRUE@moduledir = $(INSTALL_DIR_RESOLVED)
 
640
@ENABLE_GNOME_TRUE@module_SCRIPTS = $(OUTPUT_FILES)
622
641
all: all-am
623
642
 
624
643
.SUFFIXES:
625
 
$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir)/build/build.mk $(top_srcdir)/build/build.environment.mk $(top_srcdir)/build/build.rules.mk $(am__configure_deps)
 
644
$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir)/build/build.mk $(top_srcdir)/build/build.environment.mk $(top_srcdir)/build/build.rules.mk $(top_srcdir)/build/build.dist.mk $(top_srcdir)/build/build.dist.mk $(am__configure_deps)
626
645
        @for dep in $?; do \
627
646
          case '$(am__configure_deps)' in \
628
647
            *$$dep*) \
852
871
 
853
872
@ENABLE_GNOME_TRUE@all: $(ASSEMBLY_FILE) theme-icons
854
873
 
855
 
@ENABLE_GNOME_TRUE@run: 
 
874
@ENABLE_GNOME_TRUE@run:
856
875
@ENABLE_GNOME_TRUE@     @pushd $(top_builddir); \
857
876
@ENABLE_GNOME_TRUE@     make run; \
858
877
@ENABLE_GNOME_TRUE@     popd;