diff options
author | 2001-09-30 18:33:46 +0000 | |
---|---|---|
committer | 2001-09-30 18:33:46 +0000 | |
commit | cf8cfd1afce4216ebc442d132bdcbe0f556a84d9 (patch) | |
tree | 13d5da13308e5bc86edd0eb9f59ac25b6737772c /media-video | |
parent | Fix font, skin and file with spaces problem (diff) | |
download | historical-cf8cfd1afce4216ebc442d132bdcbe0f556a84d9.tar.gz historical-cf8cfd1afce4216ebc442d132bdcbe0f556a84d9.tar.bz2 historical-cf8cfd1afce4216ebc442d132bdcbe0f556a84d9.zip |
Removed the ugly wrapper mplayer used, thanks goes to Mog :)
Diffstat (limited to 'media-video')
-rw-r--r-- | media-video/mplayer/mplayer-0.50_pre1.ebuild | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/media-video/mplayer/mplayer-0.50_pre1.ebuild b/media-video/mplayer/mplayer-0.50_pre1.ebuild index ca327cab72f2..f58f09bb12af 100644 --- a/media-video/mplayer/mplayer-0.50_pre1.ebuild +++ b/media-video/mplayer/mplayer-0.50_pre1.ebuild @@ -93,10 +93,6 @@ src_install() { cp -a ${WORKDIR}/iso-8859-1/ ${D}/usr/share/mplayer/fonts dosym /usr/share/mplayer/fonts/iso-8859-1/arial-14/ /usr/share/mplayer/font - # Install a wrapper for mplayer to handle the codecs.conf - mv ${D}/usr/bin/mplayer ${D}/usr/bin/mplayer-bin - exeinto /usr/bin ; doexe ${FILESDIR}/mplayer - # This tries setting up mplayer.conf automagically local video="sdl" audio="sdl" if [ "`use X`" ] ; then @@ -132,6 +128,10 @@ src_install() { sed -e "s/vo=xv/vo=${video}/" -e "s/ao=oss/ao=${audio}/" -e 's/include =/#include =/' ${S}/etc/example.conf > ${T}/mplayer.conf insinto /etc - doins ${T}/mplayer.conf ${S}/etc/codecs.conf + doins ${T}/mplayer.conf + + # Thanks goes to Mog for this one! + insinto /usr/share/mplayer + doins ${S}/etc/codecs.conf } |