Changeset 968
- Timestamp:
- 09/05/08 17:23:43 (3 months ago)
- Location:
- trunk/initramfs-tools-tcos
- Files:
-
- 4 modified
-
Makefile (modified) (2 diffs)
-
debian/changelog (modified) (2 diffs)
-
hooks-addons/20alsa (modified) (1 diff)
-
hooks-addons/21pulseaudio (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/initramfs-tools-tcos/Makefile
r963 r968 243 243 244 244 patch_feisty: patch_amd64 245 # nothing to patch245 sed -i 's/libsox-fmt-all/sox/g' debian/control 246 246 247 247 patch_gutsy: patch_amd64 248 # nothing to patch248 sed -i 's/libsox-fmt-all/sox/g' debian/control 249 249 250 250 patch_max: patch_amd64 … … 260 260 # PATCHING INITRAMFS_TOOLS_TCOS in Debian etch 261 261 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 262 263 263 264 patch_testing: patch_amd64 -
trunk/initramfs-tools-tcos/debian/changelog
r963 r968 1 initramfs-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 1 9 initramfs-tools-tcos (0.89.6) unstable; urgency=low 2 10 … … 17 25 - Add intrepid in if sentences 18 26 19 -- Mario Izquierdo (mariodebian) <mariodebian@gmail.com> Fri, 05 Sep 2008 1 5:10:58+020027 -- Mario Izquierdo (mariodebian) <mariodebian@gmail.com> Fri, 05 Sep 2008 17:22:54 +0200 20 28 21 29 initramfs-tools-tcos (0.89.5) unstable; urgency=low -
trunk/initramfs-tools-tcos/hooks-addons/20alsa
r928 r968 40 40 fi 41 41 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 42 67 43 68 stat_after "Alsa sound support" -
trunk/initramfs-tools-tcos/hooks-addons/21pulseaudio
r958 r968 89 89 cpifexists /etc/pulse/client.conf /etc/pulse/ 90 90 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); do99 cpifexists $lib /usr/lib/sox/100 done101 102 91 103 92
