diff options
-rw-r--r-- | media-video/realplayer/ChangeLog | 5 | ||||
-rw-r--r-- | media-video/realplayer/realplayer-8-r4.ebuild | 13 |
2 files changed, 10 insertions, 8 deletions
diff --git a/media-video/realplayer/ChangeLog b/media-video/realplayer/ChangeLog index 7fc4566cf304..ec5a24bba4c2 100644 --- a/media-video/realplayer/ChangeLog +++ b/media-video/realplayer/ChangeLog @@ -1,10 +1,13 @@ # ChangeLog for media-video/realplayer # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/media-video/realplayer/ChangeLog,v 1.6 2003/01/08 23:08:50 seemant Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-video/realplayer/ChangeLog,v 1.7 2003/01/12 14:49:57 mholzer Exp $ *realplayer-8-r4 (08 Jan 2003) + 12 Jan 2003; Martin Holzer <mholzer@gentoo.org> realplayer-8-r4.ebuild : + Fixed script, now display's how it should do + 08 Jan 2003; Seemant Kulleen <seemant@gentoo.org> realplayer-8-r4.ebuild files/realplayer.desktop files/mimeinfo files/digest-realplayer-8-r4 : diff --git a/media-video/realplayer/realplayer-8-r4.ebuild b/media-video/realplayer/realplayer-8-r4.ebuild index a7920ae4fa20..fa74e08c1cf0 100644 --- a/media-video/realplayer/realplayer-8-r4.ebuild +++ b/media-video/realplayer/realplayer-8-r4.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-video/realplayer/realplayer-8-r4.ebuild,v 1.2 2003/01/08 23:58:03 seemant Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-video/realplayer/realplayer-8-r4.ebuild,v 1.3 2003/01/12 14:49:57 mholzer Exp $ DESCRIPTION="RealPlayer 8 is a streaming media player" HOMEPAGE="http://forms.real.com/real/player/unix/unix.html" @@ -12,16 +12,16 @@ HOMEPAGE="http://forms.real.com/real/player/unix/unix.html" if use x86 then - MY_P=rp8_linux20_libc6_i386_cs2.bin + A="rp8_linux20_libc6_i386_cs2.bin" elif use ppc then - MY_P=rp8_linux_powerpc_cs1.bin + A="rp8_linux_powerpc_cs1.bin" elif use sparc then - MY_P=rp8_linux_sparc_cs1.bin + A="rp8_linux_sparc_cs1.bin" elif use alpha then - MY_P=rp8_linux_alpha_rh62_cs1.bin + A="rp8_linux_alpha_rh62_cs1.bin" fi @@ -40,8 +40,7 @@ BASE="/opt/RealPlayer8" S=${WORKDIR} pkg_setup() { - if [ ! -f ${DISTDIR}/${MY_P} ] - then + if [ ! -f ${DISTDIR}/${A} ] ; then eerror "Please go to:" eerror "http://forms.real.com/real/player/unix/unix.html" eerror "And download the appropriate realplayer binary installer" |