~ubuntu-branches/ubuntu/karmic/pulseaudio/karmic-updates

« back to all changes in this revision

Viewing changes to Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Luke Yelavich, Daniel T Chen, Luke Yelavich
  • Date: 2009-09-21 10:28:25 UTC
  • mfrom: (1.14.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20090921102825-dn0svrgwo8w19bc8
Tags: 1:0.9.18-0ubuntu1
[ Daniel T Chen ]
* New upstream bugfix release
* debian/patches/:
  - 0052-backport-56b6e18030.patch: Drop
  - 0053-fix-output-element.patch: Drop, applied upstream
  - 0090-use-volume-ignore-for-analog-output.patch: Stop applying
    this patch. Too many people are confused as to why PCM isn't
    being changed when they adjust PA's volume.
  + 0060-backport-c194d.patch: Backport fixes from 0.9.18-stable
    branch (to changeset c194db71b0ff853b4f46df26e135edf63b215451)
  + 0090-disable-flat-volumes.patch: Many people seem uncomfortable
    with PA's new default volume adjustment routine, so disable it
    in favour of the existing behaviour known in previous Ubuntu
    releases. The downside is that the user again has many knobs to
    fiddle; the upside is that applications can no longer drop the
    volume floor. This addresses LP: #403859, #433209.

[ Luke Yelavich ]
* debian/pulse-alsa.conf: Expose the pulse device to the ALSA name hint API.
  Thanks to David Henningsson <launchpad.web@epost.diwic.se> for the patch.
* Add epoch to shlibs version definitions.

Show diffs side-by-side

added added

removed removed

Lines of Context:
122
122
am__base_list = \
123
123
  sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
124
124
  sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
125
 
am__installdirs = "$(DESTDIR)$(pkgconfigdir)"
126
 
DATA = $(noinst_DATA) $(pkgconfig_DATA)
 
125
am__installdirs = "$(DESTDIR)$(pkgconfigdir)" "$(DESTDIR)$(vapidir)"
 
126
DATA = $(noinst_DATA) $(pkgconfig_DATA) $(vapi_DATA)
127
127
RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
128
128
  distclean-recursive maintainer-clean-recursive
129
129
AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \
399
399
top_builddir = @top_builddir@
400
400
top_srcdir = @top_srcdir@
401
401
ACLOCAL_AMFLAGS = -I m4
402
 
EXTRA_DIST = bootstrap.sh git-version-gen LICENSE GPL LGPL doxygen/Makefile.am doxygen/Makefile.in doxygen/doxygen.conf.in README todo
 
402
EXTRA_DIST = \
 
403
        bootstrap.sh \
 
404
        git-version-gen \
 
405
        LICENSE \
 
406
        GPL \
 
407
        LGPL \
 
408
        doxygen/Makefile.am \
 
409
        doxygen/Makefile.in \
 
410
        doxygen/doxygen.conf.in \
 
411
        README \
 
412
        todo \
 
413
        vala/libpulse.vapi
 
414
 
403
415
SUBDIRS = src doxygen man po
404
416
MAINTAINERCLEANFILES = 
405
417
noinst_DATA = 
 
418
vapidir = $(datadir)/vala/vapi
 
419
vapi_DATA = vala/libpulse.vapi
406
420
pkgconfigdir = $(libdir)/pkgconfig
407
421
pkgconfig_DATA = libpulse.pc libpulse-simple.pc $(am__append_1) \
408
422
        $(am__append_2)
506
520
        test -n "$$files" || exit 0; \
507
521
        echo " ( cd '$(DESTDIR)$(pkgconfigdir)' && rm -f" $$files ")"; \
508
522
        cd "$(DESTDIR)$(pkgconfigdir)" && rm -f $$files
 
523
install-vapiDATA: $(vapi_DATA)
 
524
        @$(NORMAL_INSTALL)
 
525
        test -z "$(vapidir)" || $(MKDIR_P) "$(DESTDIR)$(vapidir)"
 
526
        @list='$(vapi_DATA)'; test -n "$(vapidir)" || list=; \
 
527
        for p in $$list; do \
 
528
          if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
 
529
          echo "$$d$$p"; \
 
530
        done | $(am__base_list) | \
 
531
        while read files; do \
 
532
          echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(vapidir)'"; \
 
533
          $(INSTALL_DATA) $$files "$(DESTDIR)$(vapidir)" || exit $$?; \
 
534
        done
 
535
 
 
536
uninstall-vapiDATA:
 
537
        @$(NORMAL_UNINSTALL)
 
538
        @list='$(vapi_DATA)'; test -n "$(vapidir)" || list=; \
 
539
        files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
 
540
        test -n "$$files" || exit 0; \
 
541
        echo " ( cd '$(DESTDIR)$(vapidir)' && rm -f" $$files ")"; \
 
542
        cd "$(DESTDIR)$(vapidir)" && rm -f $$files
509
543
 
510
544
# This directory's subdirectories are mostly independent; you can cd
511
545
# into them and run `make' without going through this Makefile.
825
859
all-am: Makefile $(DATA) config.h
826
860
installdirs: installdirs-recursive
827
861
installdirs-am:
828
 
        for dir in "$(DESTDIR)$(pkgconfigdir)"; do \
 
862
        for dir in "$(DESTDIR)$(pkgconfigdir)" "$(DESTDIR)$(vapidir)"; do \
829
863
          test -z "$$dir" || $(MKDIR_P) "$$dir"; \
830
864
        done
831
865
install: $(BUILT_SOURCES)
879
913
 
880
914
info-am:
881
915
 
882
 
install-data-am: install-pkgconfigDATA
 
916
install-data-am: install-pkgconfigDATA install-vapiDATA
883
917
 
884
918
install-dvi: install-dvi-recursive
885
919
 
925
959
 
926
960
ps-am:
927
961
 
928
 
uninstall-am: uninstall-pkgconfigDATA
 
962
uninstall-am: uninstall-pkgconfigDATA uninstall-vapiDATA
929
963
 
930
964
.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) all check \
931
965
        ctags-recursive install install-am install-strip \
942
976
        install-dvi-am install-exec install-exec-am install-html \
943
977
        install-html-am install-info install-info-am install-man \
944
978
        install-pdf install-pdf-am install-pkgconfigDATA install-ps \
945
 
        install-ps-am install-strip installcheck installcheck-am \
946
 
        installdirs installdirs-am maintainer-clean \
 
979
        install-ps-am install-strip install-vapiDATA installcheck \
 
980
        installcheck-am installdirs installdirs-am maintainer-clean \
947
981
        maintainer-clean-generic mostlyclean mostlyclean-generic \
948
982
        mostlyclean-libtool pdf pdf-am ps ps-am tags tags-recursive \
949
 
        uninstall uninstall-am uninstall-pkgconfigDATA
 
983
        uninstall uninstall-am uninstall-pkgconfigDATA \
 
984
        uninstall-vapiDATA
950
985
 
951
986
 
952
987
homepage: all dist doxygen