Changeset 968

Show
Ignore:
Timestamp:
09/05/08 17:23:43 (3 months ago)
Author:
mariodebian
Message:

initramfs-tools-tcos (0.89.7)

  • debian/control Makefile:
    • Debian etch and Ubuntu feisty, gutsy don't have libsox-fmt-all, use sox instead
  • Move sox and alsa code from 21pulseaudio to 20 alsa
Location:
trunk/initramfs-tools-tcos
Files:
4 modified

Legend:

Unmodified
Added
Removed
  • trunk/initramfs-tools-tcos/Makefile

    r963 r968  
    243243 
    244244patch_feisty: patch_amd64 
    245         # nothing to patch 
     245        sed -i 's/libsox-fmt-all/sox/g' debian/control 
    246246 
    247247patch_gutsy: patch_amd64 
    248         # nothing to patch 
     248        sed -i 's/libsox-fmt-all/sox/g' debian/control 
    249249 
    250250patch_max: patch_amd64 
     
    260260        # PATCHING INITRAMFS_TOOLS_TCOS in Debian etch 
    261261        sed -i '/^Build/s/libusplash-dev/usplash, libbogl-dev, libgd-dev/g' debian/control 
     262        sed -i 's/libsox-fmt-all/sox/g' debian/control 
    262263 
    263264patch_testing: patch_amd64 
  • trunk/initramfs-tools-tcos/debian/changelog

    r963 r968  
     1initramfs-tools-tcos (0.89.7) unstable; urgency=low 
     2 
     3  * debian/control Makefile: 
     4    - Debian etch and Ubuntu feisty, gutsy don't have libsox-fmt-all, use sox instead 
     5  * Move sox and alsa code from 21pulseaudio to 20 alsa 
     6 
     7 -- Mario Izquierdo (mariodebian) <mariodebian@gmail.com>  Fri, 05 Sep 2008 17:23:35 +0200 
     8 
    19initramfs-tools-tcos (0.89.6) unstable; urgency=low 
    210 
     
    1725    - Add intrepid in if sentences 
    1826 
    19  -- Mario Izquierdo (mariodebian) <mariodebian@gmail.com>  Fri, 05 Sep 2008 15:10:58 +0200 
     27 -- Mario Izquierdo (mariodebian) <mariodebian@gmail.com>  Fri, 05 Sep 2008 17:22:54 +0200 
    2028 
    2129initramfs-tools-tcos (0.89.5) unstable; urgency=low 
  • trunk/initramfs-tools-tcos/hooks-addons/20alsa

    r928 r968  
    4040    fi 
    4141 
     42 
     43    # copy sox if avalaible (needed for RTP) 
     44    if [ "$(_ldd /usr/bin/play >/dev/null 2>&1 ; echo $? )" = "1"  ]; then 
     45      # play is a script (Ubuntu dapper => gutsy and Debian etch) 
     46      cpifexists /usr/bin/play  /usr/bin/ 
     47      cpifexists /usr/bin/sox   /usr/bin/ 
     48    else 
     49      # play is a binary (or symlink to sox) 
     50      cpifexists /usr/bin/play  /usr/bin/ 
     51    fi 
     52 
     53    if [ -d /usr/lib/sox ]; then 
     54      mkdir -p ${DESTDIR}/usr/lib/sox/ 
     55      for lib in $(find /usr/lib/sox/ -type f| grep -v -e mp3 -e flac -e sd2 -e fap -e vorbis -e mat5 -e wavpack -e ffmpeg -e mat4 -e pvf); do 
     56         cpifexists $lib  /usr/lib/sox/ 
     57      done 
     58    fi 
     59 
     60    mkdir -p ${DESTDIR}/usr/lib/alsa-lib/ 
     61    cpifexists /usr/lib/alsa-lib/libasound_module_pcm_pulse.so    /usr/lib/alsa-lib/ 
     62    cpifexists /usr/lib/alsa-lib/libasound_module_ctl_pulse.so    /usr/lib/alsa-lib/ 
     63    cpifexists /usr/lib/alsa-lib/libasound_module_pcm_alsa_dsp.so /usr/lib/alsa-lib/ 
     64 
     65 
     66 
    4267  
    4368    stat_after "Alsa sound support" 
  • trunk/initramfs-tools-tcos/hooks-addons/21pulseaudio

    r958 r968  
    8989 cpifexists /etc/pulse/client.conf     /etc/pulse/ 
    9090 cpifexists /etc/pulse/daemon.conf     /etc/pulse/ 
    91  
    92   mkdir -p ${DESTDIR}/usr/lib/alsa-lib/ 
    93   cpifexists /usr/lib/alsa-lib/libasound_module_pcm_pulse.so    /usr/lib/alsa-lib/ 
    94   cpifexists /usr/lib/alsa-lib/libasound_module_ctl_pulse.so    /usr/lib/alsa-lib/ 
    95   cpifexists /usr/lib/alsa-lib/libasound_module_pcm_alsa_dsp.so /usr/lib/alsa-lib/ 
    96  
    97   mkdir -p ${DESTDIR}/usr/lib/sox/ 
    98   for lib in $(find /usr/lib/sox/ -type f| grep -v -e mp3 -e flac -e sd2 -e fap -e vorbis -e mat5 -e wavpack -e ffmpeg -e mat4 -e pvf); do 
    99      cpifexists $lib  /usr/lib/sox/ 
    100   done 
    101  
    10291 
    10392