~ubuntu-branches/ubuntu/quantal/banshee/quantal

« back to all changes in this revision

Viewing changes to src/Extensions/Banshee.Podcasting/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
617
618
 
618
619
# Build path to allow running uninstalled
619
620
RUN_PATH = $(subst $(space),$(colon), $(MONO_BASE_PATH))
620
 
UNIQUE_FILTER_PIPE = tr [:space:] \\n | sort | uniq
621
 
BUILD_DATA_DIR = $(top_builddir)/bin/share/$(PACKAGE)
622
621
SOURCES_BUILD = $(addprefix $(srcdir)/, $(SOURCES)) \
623
622
        $(top_srcdir)/src/AssemblyInfo.cs
624
623
RESOURCES_EXPANDED = $(addprefix $(srcdir)/, $(RESOURCES))
625
624
RESOURCES_BUILD = $(foreach resource, $(RESOURCES_EXPANDED), \
626
625
        -resource:$(resource),$(notdir $(resource)))
627
626
 
628
 
INSTALL_ICONS = $(top_srcdir)/build/private-icon-theme-installer "$(mkinstalldirs)" "$(INSTALL_DATA)"
629
627
THEME_ICONS_SOURCE = $(wildcard $(srcdir)/ThemeIcons/*/*/*.png) $(wildcard $(srcdir)/ThemeIcons/scalable/*/*.svg)
630
628
THEME_ICONS_RELATIVE = $(subst $(srcdir)/ThemeIcons/, , $(THEME_ICONS_SOURCE))
631
629
ASSEMBLY_EXTENSION = $(strip $(patsubst library, dll, $(TARGET)))
632
630
ASSEMBLY_FILE = $(top_builddir)/bin/$(ASSEMBLY).$(ASSEMBLY_EXTENSION)
633
 
INSTALL_DIR_RESOLVED = $(firstword $(subst , $(DEFAULT_INSTALL_DIR), $(INSTALL_DIR)))
634
 
@ENABLE_TESTS_TRUE@ENABLE_TESTS_FLAG = "-define:ENABLE_TESTS"
635
 
FILTERED_LINK = $(shell echo "$(LINK)" | $(UNIQUE_FILTER_PIPE))
636
 
DEP_LINK = $(shell echo "$(LINK)" | $(UNIQUE_FILTER_PIPE) | sed s,-r:,,g | grep '$(top_builddir)/bin/')
637
631
OUTPUT_FILES = \
638
632
        $(ASSEMBLY_FILE) \
639
633
        $(ASSEMBLY_FILE).mdb
640
634
 
641
 
moduledir = $(INSTALL_DIR_RESOLVED)
642
 
module_SCRIPTS = $(OUTPUT_FILES)
643
635
EXTRA_DIST = $(SOURCES_BUILD) $(RESOURCES_EXPANDED) $(THEME_ICONS_SOURCE)
644
636
CLEANFILES = $(OUTPUT_FILES)
645
637
DISTCLEANFILES = *.pidb
646
638
MAINTAINERCLEANFILES = Makefile.in
 
639
UNIQUE_FILTER_PIPE = tr [:space:] \\n | sort | uniq
 
640
BUILD_DATA_DIR = $(top_builddir)/bin/share/$(PACKAGE)
 
641
INSTALL_ICONS = $(top_srcdir)/build/private-icon-theme-installer "$(mkinstalldirs)" "$(INSTALL_DATA)"
 
642
INSTALL_DIR_RESOLVED = $(firstword $(subst , $(DEFAULT_INSTALL_DIR), $(INSTALL_DIR)))
 
643
@ENABLE_TESTS_TRUE@ENABLE_TESTS_FLAG = "-define:ENABLE_TESTS"
 
644
FILTERED_LINK = $(shell echo "$(LINK)" | $(UNIQUE_FILTER_PIPE))
 
645
DEP_LINK = $(shell echo "$(LINK)" | $(UNIQUE_FILTER_PIPE) | sed s,-r:,,g | grep '$(top_builddir)/bin/')
 
646
moduledir = $(INSTALL_DIR_RESOLVED)
 
647
module_SCRIPTS = $(OUTPUT_FILES)
647
648
all: all-am
648
649
 
649
650
.SUFFIXES:
650
 
$(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)
 
651
$(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)
651
652
        @for dep in $?; do \
652
653
          case '$(am__configure_deps)' in \
653
654
            *$$dep*) \
875
876
 
876
877
all: $(ASSEMBLY_FILE) theme-icons
877
878
 
878
 
run: 
 
879
run:
879
880
        @pushd $(top_builddir); \
880
881
        make run; \
881
882
        popd;