diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2005-08-24 07:53:44 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2005-08-24 07:53:44 +0000 |
commit | 0e555d003333c6ba4da935e6ca7d551d1b50f8fd (patch) | |
tree | 0b32d075dc0c603cf3aa1f63b771e295f37a7f4a /x11-themes/mplayer-skins | |
parent | Don't call chown with root:root. (diff) | |
download | historical-0e555d003333c6ba4da935e6ca7d551d1b50f8fd.tar.gz historical-0e555d003333c6ba4da935e6ca7d551d1b50f8fd.tar.bz2 historical-0e555d003333c6ba4da935e6ca7d551d1b50f8fd.zip |
Fixed cp commandline and removed root:root chown.
Package-Manager: portage-2.0.51.22
Diffstat (limited to 'x11-themes/mplayer-skins')
-rw-r--r-- | x11-themes/mplayer-skins/ChangeLog | 8 | ||||
-rw-r--r-- | x11-themes/mplayer-skins/mplayer-skins-0.2-r4.ebuild | 8 |
2 files changed, 10 insertions, 6 deletions
diff --git a/x11-themes/mplayer-skins/ChangeLog b/x11-themes/mplayer-skins/ChangeLog index 844e1724e4dc..c14bb35bc258 100644 --- a/x11-themes/mplayer-skins/ChangeLog +++ b/x11-themes/mplayer-skins/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for x11-themes/mplayer-skins -# Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-themes/mplayer-skins/ChangeLog,v 1.15 2004/06/28 22:44:37 agriffis Exp $ +# Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-themes/mplayer-skins/ChangeLog,v 1.16 2005/08/24 07:53:44 flameeyes Exp $ + + 24 Aug 2005; Diego Pettenò <flameeyes@gentoo.org> + mplayer-skins-0.2-r4.ebuild: + Fixed cp commandline and removed root:root chown. 28 Jun 2004; Aron Griffis <agriffis@gentoo.org> mplayer-skins-0.2-r3.ebuild, mplayer-skins-0.2-r4.ebuild: diff --git a/x11-themes/mplayer-skins/mplayer-skins-0.2-r4.ebuild b/x11-themes/mplayer-skins/mplayer-skins-0.2-r4.ebuild index f8b184ed461c..fbe82cd6d3ab 100644 --- a/x11-themes/mplayer-skins/mplayer-skins-0.2-r4.ebuild +++ b/x11-themes/mplayer-skins/mplayer-skins-0.2-r4.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2004 Gentoo Foundation +# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-themes/mplayer-skins/mplayer-skins-0.2-r4.ebuild,v 1.5 2004/06/28 22:44:37 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-themes/mplayer-skins/mplayer-skins-0.2-r4.ebuild,v 1.6 2005/08/24 07:53:44 flameeyes Exp $ S=${WORKDIR} DESCRIPTION="Collection of mplayer themes" @@ -54,8 +54,8 @@ RDEPEND="media-video/mplayer src_install () { dodir /usr/share/mplayer/Skin - cp -dR * ${D}/usr/share/mplayer/Skin/ - chown -R root:root ${D}/usr/share/mplayer/Skin/ + cp -R * ${D}/usr/share/mplayer/Skin/ + chown -R root:0 ${D}/usr/share/mplayer/Skin/ chmod -R o-w ${D}/usr/share/mplayer/Skin/ chmod -R a+rX ${D}/usr/share/mplayer/Skin/ } |