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

« back to all changes in this revision

Viewing changes to src/Clients/Booter/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:
36
36
host_triplet = @host@
37
37
DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \
38
38
        $(srcdir)/banshee.darwin.in $(srcdir)/banshee.linux.in \
 
39
        $(top_srcdir)/build/build.dist.mk \
39
40
        $(top_srcdir)/build/build.environment.mk \
40
41
        $(top_srcdir)/build/build.mk \
41
42
        $(top_srcdir)/build/build.rules.mk
580
581
 
581
582
# Build path to allow running uninstalled
582
583
RUN_PATH = $(subst $(space),$(colon), $(MONO_BASE_PATH))
583
 
UNIQUE_FILTER_PIPE = tr [:space:] \\n | sort | uniq
584
 
BUILD_DATA_DIR = $(top_builddir)/bin/share/$(PACKAGE)
585
584
SOURCES_BUILD = $(addprefix $(srcdir)/, $(SOURCES)) \
586
585
        $(top_srcdir)/src/AssemblyInfo.cs
587
586
RESOURCES_EXPANDED = $(addprefix $(srcdir)/, $(RESOURCES))
588
587
RESOURCES_BUILD = $(foreach resource, $(RESOURCES_EXPANDED), \
589
588
        -resource:$(resource),$(notdir $(resource)))
590
589
 
591
 
INSTALL_ICONS = $(top_srcdir)/build/private-icon-theme-installer "$(mkinstalldirs)" "$(INSTALL_DATA)"
592
590
THEME_ICONS_SOURCE = $(wildcard $(srcdir)/ThemeIcons/*/*/*.png) $(wildcard $(srcdir)/ThemeIcons/scalable/*/*.svg)
593
591
THEME_ICONS_RELATIVE = $(subst $(srcdir)/ThemeIcons/, , $(THEME_ICONS_SOURCE))
594
592
ASSEMBLY_EXTENSION = $(strip $(patsubst library, dll, $(TARGET)))
595
593
ASSEMBLY_FILE = $(top_builddir)/bin/$(ASSEMBLY).$(ASSEMBLY_EXTENSION)
596
 
INSTALL_DIR_RESOLVED = $(firstword $(subst , $(DEFAULT_INSTALL_DIR), $(INSTALL_DIR)))
597
 
@ENABLE_TESTS_TRUE@ENABLE_TESTS_FLAG = "-define:ENABLE_TESTS"
598
 
FILTERED_LINK = $(shell echo "$(LINK)" | $(UNIQUE_FILTER_PIPE))
599
 
DEP_LINK = $(shell echo "$(LINK)" | $(UNIQUE_FILTER_PIPE) | sed s,-r:,,g | grep '$(top_builddir)/bin/')
600
594
OUTPUT_FILES = \
601
595
        $(ASSEMBLY_FILE) \
602
596
        $(ASSEMBLY_FILE).mdb
603
597
 
604
 
moduledir = $(INSTALL_DIR_RESOLVED)
605
 
module_SCRIPTS = $(OUTPUT_FILES) Banshee.exe.config
606
598
EXTRA_DIST = $(SOURCES_BUILD) $(RESOURCES_EXPANDED) \
607
599
        $(THEME_ICONS_SOURCE) Banshee.exe.config
608
600
CLEANFILES = banshee
609
601
DISTCLEANFILES = *.pidb
610
602
MAINTAINERCLEANFILES = Makefile.in
 
603
UNIQUE_FILTER_PIPE = tr [:space:] \\n | sort | uniq
 
604
BUILD_DATA_DIR = $(top_builddir)/bin/share/$(PACKAGE)
 
605
INSTALL_ICONS = $(top_srcdir)/build/private-icon-theme-installer "$(mkinstalldirs)" "$(INSTALL_DATA)"
 
606
INSTALL_DIR_RESOLVED = $(firstword $(subst , $(DEFAULT_INSTALL_DIR), $(INSTALL_DIR)))
 
607
@ENABLE_TESTS_TRUE@ENABLE_TESTS_FLAG = "-define:ENABLE_TESTS"
 
608
FILTERED_LINK = $(shell echo "$(LINK)" | $(UNIQUE_FILTER_PIPE))
 
609
DEP_LINK = $(shell echo "$(LINK)" | $(UNIQUE_FILTER_PIPE) | sed s,-r:,,g | grep '$(top_builddir)/bin/')
 
610
moduledir = $(INSTALL_DIR_RESOLVED)
 
611
module_SCRIPTS = $(OUTPUT_FILES) Banshee.exe.config
611
612
bin_SCRIPTS = banshee
612
613
all: all-am
613
614
 
614
615
.SUFFIXES:
615
 
$(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)
 
616
$(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 $(am__configure_deps)
616
617
        @for dep in $?; do \
617
618
          case '$(am__configure_deps)' in \
618
619
            *$$dep*) \
881
882
 
882
883
all: $(ASSEMBLY_FILE) theme-icons
883
884
 
884
 
run: 
 
885
run:
885
886
        @pushd $(top_builddir); \
886
887
        make run; \
887
888
        popd;