Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 151719 - media-plugins/vdr-xineliboutput does not install all xine plugins
Summary: media-plugins/vdr-xineliboutput does not install all xine plugins
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: All Linux
: Normal minor
Assignee: Gentoo VDR Project
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2006-10-17 10:17 UTC by riku
Modified: 2006-10-18 13:51 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description riku 2006-10-17 10:17:38 UTC
media-pluins/vdr-xineliboutput-1.0.0-pre5 does not install all xine plugins. There are two plugins that are required for some functionality. First is xineplug_post_autocrop.so, that is required for "crop 4:3 letterbox to 16:9" to work. Second is xineplug_post_audiochannel.so, that takes only left or right stereo channel from audiostream. This is required for some dual-language broadcasts on certain news and sports channels.

Here is the fix:
@@ -77,7 +77,9 @@
 
 	insinto ${VDR_PLUGIN_DIR}
 	doins *.so.${MY_PV}
 
 	insinto /usr/$(get_libdir)/xine/plugins/${XINE_LIB_VERSION}
 	doins xineplug_inp_xvdr.so
+	doins xineplug_post_audiochannel.so
+	doins xineplug_post_autocrop.so
 }
Comment 1 Matthias Schwarzott gentoo-dev 2006-10-18 00:53:45 UTC
Perhaps we should check if
doins xineplug*.so
will work.
Comment 2 phintuka 2006-10-18 04:17:58 UTC
> Perhaps we should check if
> doins xineplug*.so
> will work.

Should be OK.
Typically xine post plugins are installed to separate sub-directory, so adding 

        insinto /usr/$(get_libdir)/xine/plugins/${XINE_LIB_VERSION}
        doins xineplug_inp_xvdr.so
+
+       insinto /usr/$(get_libdir)/xine/plugins/${XINE_LIB_VERSION}/post
+       doins xineplug_post_*.so

might be even better (?)
Comment 3 Matthias Schwarzott gentoo-dev 2006-10-18 13:51:17 UTC
Commited version similar to the one from Comment #2.
Thanks for reporting.