Browse Source

Dimitar Zhekov <jimmy@is-vn.bg>:

The latest mplayer sources are 0600/0700, so fix anything
copied into $docdir. Tested with stage 5 and 9 builds.


git-svn-id: http://www.rocklinux.org/svn/rock-linux/trunk@1356 c5f82cb5-29bc-0310-9cd0-bff59a50e3bc
rocklinux
Dimitar Zhekov 21 years ago
parent
commit
e8f08ce6ce
2 changed files with 7 additions and 5 deletions
  1. +1
    -0
      Documentation/Developers/CHANGELOG-RENE
  2. +6
    -5
      package/jimmy/mplayer/mplayer.conf

+ 1
- 0
Documentation/Developers/CHANGELOG-RENE

@ -10,6 +10,7 @@
- Alejandro Mery: updates to mnemoc incl. bohem-gc/mono fixes
- Clifford Wolf: fixed strace useage in Build-Pkg
- fixed openldap to install the .init (#109)
- Dimitar Zhekov: fix mplayer doc copy
*) 2003-09-07 (2.0.0-rc1 - 2.0.0-rc2)

+ 6
- 5
package/jimmy/mplayer/mplayer.conf

@ -33,15 +33,16 @@ mplayer_postmake() {
rm -rf $datadir/$pkg/font
ln -sf font-arial-24-iso-8859-1 $datadir/$pkg/font
echo "correcting permissions and ownership ..."
chown -R root.root $datadir/$pkg/*
find $datadir/$pkg -type d | xargs -r chmod 0755
find $datadir/$pkg -type f | xargs -r chmod 0644
echo "copy/move some documentation ..."
cp -fR DOCS/*.{css,html} DOCS/tech $docdir
rm -f $docdir/users_against_developers.html
mv -f $datadir/$pkg/README* $docdir
echo "correcting permissions and ownership ..."
chown -R root.root $datadir/$pkg/*
find $datadir/$pkg $docdir -type d | xargs -r chmod 0755
find $datadir/$pkg $docdir -type f | xargs -r chmod 0644
# create a default configuration
cat <<- 'EOT' > $sysconfdir/mplayer.conf
# Write your default config options here!

Loading…
Cancel
Save