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

« back to all changes in this revision

Viewing changes to src/Extensions/Banshee.OpticalDisc/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
601
602
 
602
603
# Build path to allow running uninstalled
603
604
RUN_PATH = $(subst $(space),$(colon), $(MONO_BASE_PATH))
604
 
UNIQUE_FILTER_PIPE = tr [:space:] \\n | sort | uniq
605
 
BUILD_DATA_DIR = $(top_builddir)/bin/share/$(PACKAGE)
606
605
SOURCES_BUILD = $(addprefix $(srcdir)/, $(SOURCES)) \
607
606
        $(top_srcdir)/src/AssemblyInfo.cs
608
607
RESOURCES_EXPANDED = $(addprefix $(srcdir)/, $(RESOURCES))
609
608
RESOURCES_BUILD = $(foreach resource, $(RESOURCES_EXPANDED), \
610
609
        -resource:$(resource),$(notdir $(resource)))
611
610
 
612
 
INSTALL_ICONS = $(top_srcdir)/build/private-icon-theme-installer "$(mkinstalldirs)" "$(INSTALL_DATA)"
613
611
THEME_ICONS_SOURCE = $(wildcard $(srcdir)/ThemeIcons/*/*/*.png) $(wildcard $(srcdir)/ThemeIcons/scalable/*/*.svg)
614
612
THEME_ICONS_RELATIVE = $(subst $(srcdir)/ThemeIcons/, , $(THEME_ICONS_SOURCE))
615
613
ASSEMBLY_EXTENSION = $(strip $(patsubst library, dll, $(TARGET)))
616
614
ASSEMBLY_FILE = $(top_builddir)/bin/$(ASSEMBLY).$(ASSEMBLY_EXTENSION)
617
 
INSTALL_DIR_RESOLVED = $(firstword $(subst , $(DEFAULT_INSTALL_DIR), $(INSTALL_DIR)))
618
 
@ENABLE_TESTS_TRUE@ENABLE_TESTS_FLAG = "-define:ENABLE_TESTS"
619
 
FILTERED_LINK = $(shell echo "$(LINK)" | $(UNIQUE_FILTER_PIPE))
620
 
DEP_LINK = $(shell echo "$(LINK)" | $(UNIQUE_FILTER_PIPE) | sed s,-r:,,g | grep '$(top_builddir)/bin/')
621
615
OUTPUT_FILES = \
622
616
        $(ASSEMBLY_FILE) \
623
617
        $(ASSEMBLY_FILE).mdb
624
618
 
625
 
moduledir = $(INSTALL_DIR_RESOLVED)
626
 
module_SCRIPTS = $(OUTPUT_FILES)
627
619
EXTRA_DIST = $(SOURCES_BUILD) $(RESOURCES_EXPANDED) $(THEME_ICONS_SOURCE)
628
620
CLEANFILES = $(OUTPUT_FILES)
629
621
DISTCLEANFILES = *.pidb
630
622
MAINTAINERCLEANFILES = Makefile.in
 
623
UNIQUE_FILTER_PIPE = tr [:space:] \\n | sort | uniq
 
624
BUILD_DATA_DIR = $(top_builddir)/bin/share/$(PACKAGE)
 
625
INSTALL_ICONS = $(top_srcdir)/build/private-icon-theme-installer "$(mkinstalldirs)" "$(INSTALL_DATA)"
 
626
INSTALL_DIR_RESOLVED = $(firstword $(subst , $(DEFAULT_INSTALL_DIR), $(INSTALL_DIR)))
 
627
@ENABLE_TESTS_TRUE@ENABLE_TESTS_FLAG = "-define:ENABLE_TESTS"
 
628
FILTERED_LINK = $(shell echo "$(LINK)" | $(UNIQUE_FILTER_PIPE))
 
629
DEP_LINK = $(shell echo "$(LINK)" | $(UNIQUE_FILTER_PIPE) | sed s,-r:,,g | grep '$(top_builddir)/bin/')
 
630
moduledir = $(INSTALL_DIR_RESOLVED)
 
631
module_SCRIPTS = $(OUTPUT_FILES)
631
632
all: all-am
632
633
 
633
634
.SUFFIXES:
634
 
$(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)
 
635
$(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)
635
636
        @for dep in $?; do \
636
637
          case '$(am__configure_deps)' in \
637
638
            *$$dep*) \
859
860
 
860
861
all: $(ASSEMBLY_FILE) theme-icons
861
862
 
862
 
run: 
 
863
run:
863
864
        @pushd $(top_builddir); \
864
865
        make run; \
865
866
        popd;