diff options
| author | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2005-10-30 22:06:55 +0000 |
|---|---|---|
| committer | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2005-10-30 22:06:55 +0000 |
| commit | e40c1590a4f65ae8f3ff52477c82301dd68fcfe6 (patch) | |
| tree | 1c36b061cca2b8e958ceb3891b78f953ba55826b /debian/shlibdeps.sh | |
| parent | 5fd98dc3451215272aadbe93dbb7e43805050fc3 (diff) | |
| download | xine-lib-e40c1590a4f65ae8f3ff52477c82301dd68fcfe6.tar.gz xine-lib-e40c1590a4f65ae8f3ff52477c82301dd68fcfe6.tar.bz2 | |
Import packaging diffs from the current official Debian package.
CVS patchset: 7785
CVS date: 2005/10/30 22:06:55
Diffstat (limited to 'debian/shlibdeps.sh')
| -rwxr-xr-x | debian/shlibdeps.sh | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/debian/shlibdeps.sh b/debian/shlibdeps.sh index ef5fd00a4..c69e5b975 100755 --- a/debian/shlibdeps.sh +++ b/debian/shlibdeps.sh @@ -22,14 +22,17 @@ OPTIONAL="$installdir/usr/lib/xine/plugins/$ver/xineplug_ao_out_alsa.so $installdir/usr/lib/xine/plugins/$ver/xineplug_inp_smb.so " -RECOMMENDED="$installdir/usr/lib/xine/plugins/$ver/xineplug_decode_vorbis.so +RECOMMENDED=" $installdir/usr/lib/xine/plugins/$ver/xineplug_ao_out_oss.so $installdir/usr/lib/xine/plugins/$ver/xineplug_vo_out_xv.so $installdir/usr/lib/xine/plugins/$ver/xineplug_dmx_ogg.so - $installdir/usr/lib/xine/plugins/$ver/xineplug_decode_theora.so $installdir/usr/lib/xine/plugins/$ver/xineplug_dmx_mng.so " +#these two do interdepend, so make them required for now: +# $installdir/usr/lib/xine/plugins/$ver/xineplug_decode_vorbis.so +# $installdir/usr/lib/xine/plugins/$ver/xineplug_decode_theora.so + #start with all executables and shared objects REQUIRED=`find $installdir -type f \( -name \*.so -o -perm +111 \)` @@ -44,13 +47,13 @@ done for file in $RECOMMENDED; do if test ! -f "$file"; then echo "WARNING: non-existing file \"$file\" in RECOMMENDED list" - RECOMMENDED=`echo "$var" | grep -v $file` + RECOMMENDED=`echo "$RECOMMENDED" | grep -v $file` fi done for file in $OPTIONAL; do if test ! -f "$file"; then echo "WARNING: non-existing file \"$file\" in OPTIONAL list" - OPTIONAL=`echo "$var" | grep -v $file` + OPTIONAL=`echo "$OPTIONAL" | grep -v $file` fi done |
