summaryrefslogtreecommitdiff
path: root/audio
diff options
context:
space:
mode:
authorjlam <jlam@pkgsrc.org>2000-12-25 09:35:58 +0000
committerjlam <jlam@pkgsrc.org>2000-12-25 09:35:58 +0000
commit17119b823bc81547ef67e78bcdb4a1367ce92fec (patch)
tree876e42aef56d4a6f0d8ec0c85f3569f010a22032 /audio
parent57f4a951e9708dadfa5b06e6821bfadf96c6a681 (diff)
downloadpkgsrc-17119b823bc81547ef67e78bcdb4a1367ce92fec.tar.gz
RealPlayer 8 for UNIX
This version seems to now work correctly with audio streams over the Internet. This package is imported as audio/realplayer with the intention of removing the old audio/realplayer7 package, as www.real.com only carries a single distfile for the latest version, and we are not allowed to mirror the distfiles. When a new version of RealPlayer is released for UNIX, please just update this package.
Diffstat (limited to 'audio')
-rw-r--r--audio/realplayer/Makefile82
-rw-r--r--audio/realplayer/files/md53
-rw-r--r--audio/realplayer/files/patch-sum6
-rw-r--r--audio/realplayer/files/realplay.sh7
-rw-r--r--audio/realplayer/patches/patch-aa13
-rw-r--r--audio/realplayer/patches/patch-ab73
-rw-r--r--audio/realplayer/patches/patch-ac10
-rw-r--r--audio/realplayer/patches/patch-ad15
-rw-r--r--audio/realplayer/pkg/COMMENT1
-rw-r--r--audio/realplayer/pkg/DESCR2
-rw-r--r--audio/realplayer/pkg/MESSAGE15
-rw-r--r--audio/realplayer/pkg/PLIST316
-rw-r--r--audio/realplayer/scripts/pre-extract38
13 files changed, 581 insertions, 0 deletions
diff --git a/audio/realplayer/Makefile b/audio/realplayer/Makefile
new file mode 100644
index 00000000000..d15e7c5c753
--- /dev/null
+++ b/audio/realplayer/Makefile
@@ -0,0 +1,82 @@
+# $NetBSD: Makefile,v 1.1.1.1 2000/12/25 09:35:58 jlam Exp $
+
+DISTNAME= rp8_linux20_libc6_i386_cs1
+PKGNAME= realplayer-8
+WRKSRC= ${WRKDIR}/RealPlayer8
+CATEGORIES= audio
+MASTER_SITES= # empty
+EXTRACT_SUFX= .bin
+
+MAINTAINER= packages@netbsd.org
+HOMEPAGE= http://www.real.com/products/player/
+
+DEPENDS+= suse_x11>=6.1:../../emulators/suse_x11
+
+RESTRICTED= "Redistribution not permitted"
+NO_SRC_ON_FTP= ${RESTRICTED}
+NO_SRC_ON_CDROM= ${RESTRICTED}
+NO_BIN_ON_FTP= ${RESTRICTED}
+NO_BIN_ON_CDROM= ${RESTRICTED}
+
+ONLY_FOR_PLATFORM= NetBSD-*-i386
+
+CRYPTO= # defined
+IS_INTERACTIVE= # defined
+CHECK_SHLIBS= NO
+
+XAUTHORITY?= ${HOME}/.Xauthority
+.if exists(${XAUTHORITY})
+EXTRACT_CMD= HOME=${WRKDIR} XAUTHORITY=${XAUTHORITY} ${RP_INSTALLER}
+.else
+EXTRACT_CMD= HOME=${WRKDIR} ${RP_INSTALLER}
+.endif
+
+NO_CONFIGURE= # defined
+SCRIPTS_ENV+= CAT="${CAT}"
+SCRIPTS_ENV+= CHMOD="${CHMOD}"
+SCRIPTS_ENV+= RP_INSTALLER="${RP_INSTALLER}"
+MESSAGE_FILE= ${WRKDIR}/MESSAGE
+
+DOWNLOAD= http://proforma.real.com/real/player/unix/unix.html
+RP_INSTALLER= ${DISTDIR}/${DISTNAME}${EXTRACT_SUFX}
+REALPLAYER_HOME= ${PREFIX}/lib/RealPlayer8
+NS_PLUGINS_DIR= ${PREFIX}/lib/netscape/plugins
+
+do-fetch:
+ @if [ ! -f ${RP_INSTALLER} ]; then \
+ ${ECHO_MSG} "==============================================================="; \
+ ${ECHO_MSG} " RealPlayer 8 for Linux 2.x (libc6 i386, Self-Extracting) must"; \
+ ${ECHO_MSG} " be fetched into ${DISTDIR} from"; \
+ ${ECHO_MSG} " ${DOWNLOAD}."; \
+ ${ECHO_MSG} "==============================================================="; \
+ ${FALSE}; \
+ fi
+
+# scripts/pre-extract
+
+do-build:
+ cd ${WRKSRC}; \
+ ${MV} -f mimeinstall.sh mimeinstall.sh.old; \
+ ${SED} -e "s,@PREFIX@,${PREFIX},g" \
+ -e "s,@REALPLAYER_HOME@,${REALPLAYER_HOME},g" \
+ < mimeinstall.sh.old > mimeinstall.sh; \
+ ${CHMOD} +x mimeinstall.sh
+ ${SED} -e "s,@REALPLAYER_HOME@,${REALPLAYER_HOME},g" \
+ < ${FILESDIR}/realplay.sh > ${WRKDIR}/realplay.sh
+
+pre-install:
+ ${FIND} ${WRKSRC} \
+ \( -name "*.orig" -o -name "*.old" \) -exec ${RM} {} \;
+ ${SED} -e "s,@REALPLAYER_HOME@,${REALPLAYER_HOME},g" \
+ < ${PKGDIR}/MESSAGE > ${MESSAGE_FILE}
+
+do-install:
+ ${INSTALL_SCRIPT} ${WRKDIR}/realplay.sh ${PREFIX}/bin/realplay
+ cd ${WRKDIR}; ${PAX} -rw RealPlayer8 ${PREFIX}/lib
+
+post-install:
+ ${INSTALL_DATA_DIR} ${NS_PLUGINS_DIR}
+ ${INSTALL_DATA} ${REALPLAYER_HOME}/raclass.zip ${NS_PLUGINS_DIR}
+ ${INSTALL_DATA} ${REALPLAYER_HOME}/rpnp.so ${NS_PLUGINS_DIR}
+
+.include "../../mk/bsd.pkg.mk"
diff --git a/audio/realplayer/files/md5 b/audio/realplayer/files/md5
new file mode 100644
index 00000000000..473f3b170f8
--- /dev/null
+++ b/audio/realplayer/files/md5
@@ -0,0 +1,3 @@
+$NetBSD: md5,v 1.1.1.1 2000/12/25 09:35:58 jlam Exp $
+
+MD5 (rp8_linux20_libc6_i386_cs1.bin) = 284c0db02874050b9f1d15dc312e8a28
diff --git a/audio/realplayer/files/patch-sum b/audio/realplayer/files/patch-sum
new file mode 100644
index 00000000000..34267512007
--- /dev/null
+++ b/audio/realplayer/files/patch-sum
@@ -0,0 +1,6 @@
+$NetBSD: patch-sum,v 1.1.1.1 2000/12/25 09:35:58 jlam Exp $
+
+MD5 (patch-aa) = fa8160cdfff13df5e13b068b69f4b182
+MD5 (patch-ab) = 7bb56b9bf0491a5c1badb0595f639389
+MD5 (patch-ac) = 86d55bef30e27d27646e8a5e66281fbe
+MD5 (patch-ad) = c230a073e9b3a74fbc056fb42cfd1307
diff --git a/audio/realplayer/files/realplay.sh b/audio/realplayer/files/realplay.sh
new file mode 100644
index 00000000000..16febfe6408
--- /dev/null
+++ b/audio/realplayer/files/realplay.sh
@@ -0,0 +1,7 @@
+#!/bin/sh
+#
+# $NetBSD: realplay.sh,v 1.1.1.1 2000/12/25 09:35:58 jlam Exp $
+#
+REALPLAYER_HOME=@REALPLAYER_HOME@ ; export REALPLAYER_HOME
+LD_LIBRARY_PATH=${REALPLAYER_HOME}:${LD_LIBRARY_PATH} ; export LD_LIBRARY_PATH
+exec ${REALPLAYER_HOME}/realplay "$@"
diff --git a/audio/realplayer/patches/patch-aa b/audio/realplayer/patches/patch-aa
new file mode 100644
index 00000000000..87007865b16
--- /dev/null
+++ b/audio/realplayer/patches/patch-aa
@@ -0,0 +1,13 @@
+$NetBSD: patch-aa,v 1.1.1.1 2000/12/25 09:35:58 jlam Exp $
+
+--- app.kdelnk.orig Wed Dec 20 20:15:54 2000
++++ app.kdelnk
+@@ -6,7 +6,7 @@
+ BinaryPattern=realplayer;RealPlayer;
+ Name=RealPlayer8
+ MimeType=
+-Exec=__LOCATION__/realplay
++Exec=__REALPLAY__
+ Icon=__LOCATION__/rp7.xpm
+ MiniIcon=__LOCATION__/rp7mini.xpm
+ TerminalOptions=
diff --git a/audio/realplayer/patches/patch-ab b/audio/realplayer/patches/patch-ab
new file mode 100644
index 00000000000..6943b729b9c
--- /dev/null
+++ b/audio/realplayer/patches/patch-ab
@@ -0,0 +1,73 @@
+$NetBSD: patch-ab,v 1.1.1.1 2000/12/25 09:35:58 jlam Exp $
+
+--- mimeinstall.sh.orig Wed Dec 20 20:15:54 2000
++++ mimeinstall.sh
+@@ -12,9 +12,12 @@
+ # 3 mimetypes (space sep)
+ # 4 mime.types location
+
++REALPLAY=@PREFIX@/bin/realplay
++LOC=@REALPLAYER_HOME@
++
+ if [ ! -f realplay ] ; then
+- echo "This shell script should only be run from the installed location of the"
+- echo "RealPlayer. Please cd to that directory and try again"
++ echo "This shell script should only be run from ${LOC}."
++ echo "Please cd to that directory and try again."
+ exit
+ fi
+
+@@ -33,7 +36,8 @@
+ sed s:__EXT__:$kdestyleexts:g > $filename
+ fi
+ mkdir -p `dirname $2/$1`
+- cat $filename | sed s:__LOCATION__:`pwd`:g > $2/$1.kdelnk
++ cat $filename | sed s:__LOCATION__:${LOC}:g \
++ | sed s:__REALPLAY__:${REALPLAY}:g > $2/$1.kdelnk
+ rm $filename
+ filesmodified=$2/$1.kdelnk
+
+@@ -50,7 +54,7 @@
+ # how come gnome doesn't let you do absolute paths?
+ printf "\topen=realplay %%f &\n" >> $GNOMEDEST/realplay.keys
+ printf "\tview=realplay %%f &\n" >> $GNOMEDEST/realplay.keys
+- printf "\ticon-filename=`pwd`/rp7doc.png\n" >> $GNOMEDEST/realplay.keys
++ printf "\ticon-filename=${LOC}/rp7doc.png\n" >> $GNOMEDEST/realplay.keys
+ filesmodified="$filesmodified $GNOMEDEST/realplay.keys"
+
+ mkdir -p $GNOMEDEST
+@@ -85,7 +89,7 @@
+ if [ -f $mailcapdest ] ; then
+ grep -v $1 $mailcapdest > /tmp/$$ && cp /tmp/$$ $mailcapdest && rm -f /tmp/$$
+ fi
+- echo "$1;`pwd`/realplay \"%u\"" >> $mailcapdest
++ echo "$1;${REALPLAY} \"%u\"" >> $mailcapdest
+ filesmodified="$filesmodified $mailcapdest"
+ done
+
+@@ -100,9 +104,6 @@
+ exit 1
+ }
+
+-REALPLAY=`pwd`/realplay
+-LOC=`pwd`
+-
+ if [ "$2" = "global" ];
+ then
+ STDDEST=global
+@@ -126,11 +127,13 @@
+
+ # first install the app
+ mkdir -p $KDEAPPDEST
+-cat app.kdelnk | sed "s:__LOCATION__:`pwd`:g" > $KDEAPPDEST/RealPlayer.kdelnk
++cat app.kdelnk | sed "s:__LOCATION__:${LOC}:g" \
++ | sed "s:__REALPLAY__:${REALPLAY}:g" > $KDEAPPDEST/RealPlayer.kdelnk
+ echo "Installed Realplayer link for KDE"
+
+ mkdir -p $GNOMEAPPDEST
+-cat realplay.desktop | sed "s:__LOCATION__:`pwd`:g" > $GNOMEAPPDEST/realplayer.desktop
++cat realplay.desktop | sed "s:__LOCATION__:${LOC}:g" \
++ | sed "s:__REALPLAY__:${REALPLAY}:g" > $GNOMEAPPDEST/realplayer.desktop
+ echo "Installed Realplayer link for Gnome"
+
+ printf "%-30s%-50s\n" MIMETYPE "INSTALLED LOCATION"
diff --git a/audio/realplayer/patches/patch-ac b/audio/realplayer/patches/patch-ac
new file mode 100644
index 00000000000..141379087f1
--- /dev/null
+++ b/audio/realplayer/patches/patch-ac
@@ -0,0 +1,10 @@
+$NetBSD: patch-ac,v 1.1.1.1 2000/12/25 09:35:58 jlam Exp $
+
+--- pluginstall.sh.orig Wed Dec 20 20:15:54 2000
++++ pluginstall.sh
+@@ -30,4 +30,4 @@
+ cp ./rpnp.so $HOME/.netscape/plugins
+ cp ./raclass.zip $HOME/.netscape/plugins
+
+-echo "The Netscape plugin has been sucessfully installed."
++echo "The Netscape plugin has been successfully installed."
diff --git a/audio/realplayer/patches/patch-ad b/audio/realplayer/patches/patch-ad
new file mode 100644
index 00000000000..7603dc0d07b
--- /dev/null
+++ b/audio/realplayer/patches/patch-ad
@@ -0,0 +1,15 @@
+$NetBSD: patch-ad,v 1.1.1.1 2000/12/25 09:35:58 jlam Exp $
+
+--- realplay.desktop.orig Wed Dec 20 20:15:54 2000
++++ realplay.desktop
+@@ -1,8 +1,8 @@
+
+ [Desktop Entry]
+ Name[en_US.ISO8859-1]=RealPlayer
+-Comment[en_US.ISO8859-1]=MH Mail Front End
+-Exec=__LOCATION__/realplay&
++Comment[en_US.ISO8859-1]=RealPlayer
++Exec=__REALPLAY__&
+ Icon=__LOCATION__/rp7.xpm
+ MiniIcon=__LOCATION__/rp7mini.xpm
+ Terminal=false
diff --git a/audio/realplayer/pkg/COMMENT b/audio/realplayer/pkg/COMMENT
new file mode 100644
index 00000000000..d6053199c21
--- /dev/null
+++ b/audio/realplayer/pkg/COMMENT
@@ -0,0 +1 @@
+RealAudio and RealVideo player
diff --git a/audio/realplayer/pkg/DESCR b/audio/realplayer/pkg/DESCR
new file mode 100644
index 00000000000..f5717384dab
--- /dev/null
+++ b/audio/realplayer/pkg/DESCR
@@ -0,0 +1,2 @@
+RealPlayer for Unix allows you to play streaming audio and video over the
+Internet in real-time.
diff --git a/audio/realplayer/pkg/MESSAGE b/audio/realplayer/pkg/MESSAGE
new file mode 100644
index 00000000000..9bb272e5bbc
--- /dev/null
+++ b/audio/realplayer/pkg/MESSAGE
@@ -0,0 +1,15 @@
+===========================================================================
+$NetBSD: MESSAGE,v 1.1.1.1 2000/12/25 09:35:59 jlam Exp $
+
+Please be sure to read the licensing terms in
+
+ @REALPLAYER_HOME@/LICENSE
+
+prior to using RealPlayer. Users may run:
+
+ @REALPLAYER_HOME@/mimeinstall.sh
+
+to install the RealPlayer MIME types into their .mime.types and .mailcap
+files and to install a RealPlayer icon and MIME types into their KDE or
+GNOME desktop.
+===========================================================================
diff --git a/audio/realplayer/pkg/PLIST b/audio/realplayer/pkg/PLIST
new file mode 100644
index 00000000000..487249d3471
--- /dev/null
+++ b/audio/realplayer/pkg/PLIST
@@ -0,0 +1,316 @@
+@comment $NetBSD: PLIST,v 1.1.1.1 2000/12/25 09:35:59 jlam Exp $
+bin/realplay
+lib/RealPlayer8/Codecs/14_4.so.6.0
+lib/RealPlayer8/Codecs/28_8.so.6.0
+lib/RealPlayer8/Codecs/atrc.so.6.0
+lib/RealPlayer8/Codecs/cook.so.6.0
+lib/RealPlayer8/Codecs/ddnt.so.6.0
+lib/RealPlayer8/Codecs/dnet.so.6.0
+lib/RealPlayer8/Codecs/drv1.so.6.0
+lib/RealPlayer8/Codecs/drv2.so.6.0
+lib/RealPlayer8/Codecs/drv3.so.6.0
+lib/RealPlayer8/Codecs/dspr.so.6.0
+lib/RealPlayer8/Codecs/rncolor.so.6.0
+lib/RealPlayer8/Codecs/rv10.so.6.0
+lib/RealPlayer8/Codecs/rv20.so.6.0
+lib/RealPlayer8/Codecs/rv30.so.6.0
+lib/RealPlayer8/Codecs/sipr.so.6.0
+lib/RealPlayer8/Codecs/tokr.so.6.0
+lib/RealPlayer8/Common/pnrscmgr.so.6.0
+lib/RealPlayer8/Common/rcacore.so.6.0
+lib/RealPlayer8/Common/rcaembed.so.6.0
+lib/RealPlayer8/Common/rmacore.so.6.0
+lib/RealPlayer8/Help/readme
+lib/RealPlayer8/Help/realplay.htm
+lib/RealPlayer8/Help/realplay/aud_play.htm
+lib/RealPlayer8/Help/realplay/buffered.htm
+lib/RealPlayer8/Help/realplay/cinfobar.htm
+lib/RealPlayer8/Help/realplay/clip_bar.htm
+lib/RealPlayer8/Help/realplay/clipinfo.htm
+lib/RealPlayer8/Help/realplay/clipwork.htm
+lib/RealPlayer8/Help/realplay/compact.htm
+lib/RealPlayer8/Help/realplay/con_pref.htm
+lib/RealPlayer8/Help/realplay/configur.htm
+lib/RealPlayer8/Help/realplay/cont_menu.htm
+lib/RealPlayer8/Help/realplay/disp_hlp.htm
+lib/RealPlayer8/Help/realplay/display.htm
+lib/RealPlayer8/Help/realplay/distort.htm
+lib/RealPlayer8/Help/realplay/error690.htm
+lib/RealPlayer8/Help/realplay/error693.htm
+lib/RealPlayer8/Help/realplay/error698.htm
+lib/RealPlayer8/Help/realplay/file_menu.htm
+lib/RealPlayer8/Help/realplay/filetype.htm
+lib/RealPlayer8/Help/realplay/gen_pref.htm
+lib/RealPlayer8/Help/realplay/glossary.htm
+lib/RealPlayer8/Help/realplay/gotoreal.htm
+lib/RealPlayer8/Help/realplay/help_menu.htm
+lib/RealPlayer8/Help/realplay/how_to.htm
+lib/RealPlayer8/Help/realplay/index.htm
+lib/RealPlayer8/Help/realplay/inner.htm
+lib/RealPlayer8/Help/realplay/intrface.htm
+lib/RealPlayer8/Help/realplay/introduction.htm
+lib/RealPlayer8/Help/realplay/jump_to.htm
+lib/RealPlayer8/Help/realplay/keyshort.htm
+lib/RealPlayer8/Help/realplay/loadclip.htm
+lib/RealPlayer8/Help/realplay/manually.htm
+lib/RealPlayer8/Help/realplay/menubar.htm
+lib/RealPlayer8/Help/realplay/menus.htm
+lib/RealPlayer8/Help/realplay/mute.htm
+lib/RealPlayer8/Help/realplay/notice.htm
+lib/RealPlayer8/Help/realplay/panels.htm
+lib/RealPlayer8/Help/realplay/pause.htm
+lib/RealPlayer8/Help/realplay/per_pref.htm
+lib/RealPlayer8/Help/realplay/pics/DOCUMENTB.gif
+lib/RealPlayer8/Help/realplay/pics/RealLogo.gif
+lib/RealPlayer8/Help/realplay/pics/RealNetx.gif
+lib/RealPlayer8/Help/realplay/pics/SHED-EXAMPLE.gif
+lib/RealPlayer8/Help/realplay/pics/back.gif
+lib/RealPlayer8/Help/realplay/pics/backbutt.gif
+lib/RealPlayer8/Help/realplay/pics/bckbutt.gif
+lib/RealPlayer8/Help/realplay/pics/brightness.gif
+lib/RealPlayer8/Help/realplay/pics/btn_a.gif
+lib/RealPlayer8/Help/realplay/pics/btn_b.gif
+lib/RealPlayer8/Help/realplay/pics/btn_c.gif
+lib/RealPlayer8/Help/realplay/pics/btn_d.gif
+lib/RealPlayer8/Help/realplay/pics/btn_e.gif
+lib/RealPlayer8/Help/realplay/pics/btn_f.gif
+lib/RealPlayer8/Help/realplay/pics/btn_g.gif
+lib/RealPlayer8/Help/realplay/pics/btn_h.gif
+lib/RealPlayer8/Help/realplay/pics/btn_i.gif
+lib/RealPlayer8/Help/realplay/pics/btn_j.gif
+lib/RealPlayer8/Help/realplay/pics/btn_k.gif
+lib/RealPlayer8/Help/realplay/pics/btn_l.gif
+lib/RealPlayer8/Help/realplay/pics/btn_m.gif
+lib/RealPlayer8/Help/realplay/pics/btn_n.gif
+lib/RealPlayer8/Help/realplay/pics/btn_o.gif
+lib/RealPlayer8/Help/realplay/pics/btn_p.gif
+lib/RealPlayer8/Help/realplay/pics/btn_q.gif
+lib/RealPlayer8/Help/realplay/pics/btn_r.gif
+lib/RealPlayer8/Help/realplay/pics/btn_s.gif
+lib/RealPlayer8/Help/realplay/pics/btn_t.gif
+lib/RealPlayer8/Help/realplay/pics/btn_u.gif
+lib/RealPlayer8/Help/realplay/pics/btn_v.gif
+lib/RealPlayer8/Help/realplay/pics/btn_w.gif
+lib/RealPlayer8/Help/realplay/pics/btn_x.gif
+lib/RealPlayer8/Help/realplay/pics/btn_y.gif
+lib/RealPlayer8/Help/realplay/pics/btn_z.gif
+lib/RealPlayer8/Help/realplay/pics/callouts.gif
+lib/RealPlayer8/Help/realplay/pics/channelstab.gif
+lib/RealPlayer8/Help/realplay/pics/closed2.gif
+lib/RealPlayer8/Help/realplay/pics/cnt0.gif
+lib/RealPlayer8/Help/realplay/pics/cnt1.gif
+lib/RealPlayer8/Help/realplay/pics/colorcontrol.gif
+lib/RealPlayer8/Help/realplay/pics/compbutt.gif
+lib/RealPlayer8/Help/realplay/pics/contrast.gif
+lib/RealPlayer8/Help/realplay/pics/creditroll.gif
+lib/RealPlayer8/Help/realplay/pics/cursor_hand.gif
+lib/RealPlayer8/Help/realplay/pics/delete3.gif
+lib/RealPlayer8/Help/realplay/pics/do-it.gif
+lib/RealPlayer8/Help/realplay/pics/dropdwnarrow.gif
+lib/RealPlayer8/Help/realplay/pics/eq-autogainadj.gif
+lib/RealPlayer8/Help/realplay/pics/eq-on-off.gif
+lib/RealPlayer8/Help/realplay/pics/eq-onbutton.gif
+lib/RealPlayer8/Help/realplay/pics/eq-restoredefault.gif
+lib/RealPlayer8/Help/realplay/pics/eq-slider3.gif
+lib/RealPlayer8/Help/realplay/pics/eq-smarteq.gif
+lib/RealPlayer8/Help/realplay/pics/equalizer3.gif
+lib/RealPlayer8/Help/realplay/pics/favicon.gif
+lib/RealPlayer8/Help/realplay/pics/favoritestab.gif
+lib/RealPlayer8/Help/realplay/pics/forward.gif
+lib/RealPlayer8/Help/realplay/pics/forwardbutt.gif
+lib/RealPlayer8/Help/realplay/pics/fullplayershed.gif
+lib/RealPlayer8/Help/realplay/pics/fulltoc.gif
+lib/RealPlayer8/Help/realplay/pics/fwdbutt.gif
+lib/RealPlayer8/Help/realplay/pics/g2-status.gif
+lib/RealPlayer8/Help/realplay/pics/glossary.gif
+lib/RealPlayer8/Help/realplay/pics/index.gif
+lib/RealPlayer8/Help/realplay/pics/index_a.gif
+lib/RealPlayer8/Help/realplay/pics/index_b.gif
+lib/RealPlayer8/Help/realplay/pics/index_c.gif
+lib/RealPlayer8/Help/realplay/pics/index_d.gif
+lib/RealPlayer8/Help/realplay/pics/index_e.gif
+lib/RealPlayer8/Help/realplay/pics/index_f.gif
+lib/RealPlayer8/Help/realplay/pics/index_g.gif
+lib/RealPlayer8/Help/realplay/pics/index_h.gif
+lib/RealPlayer8/Help/realplay/pics/index_i.gif
+lib/RealPlayer8/Help/realplay/pics/index_j.gif
+lib/RealPlayer8/Help/realplay/pics/index_k.gif
+lib/RealPlayer8/Help/realplay/pics/index_l.gif
+lib/RealPlayer8/Help/realplay/pics/index_m.gif
+lib/RealPlayer8/Help/realplay/pics/index_n.gif
+lib/RealPlayer8/Help/realplay/pics/index_o.gif
+lib/RealPlayer8/Help/realplay/pics/index_p.gif
+lib/RealPlayer8/Help/realplay/pics/index_q.gif
+lib/RealPlayer8/Help/realplay/pics/index_r.gif
+lib/RealPlayer8/Help/realplay/pics/index_s.gif
+lib/RealPlayer8/Help/realplay/pics/index_t.gif
+lib/RealPlayer8/Help/realplay/pics/index_u.gif
+lib/RealPlayer8/Help/realplay/pics/index_v.gif
+lib/RealPlayer8/Help/realplay/pics/index_w.gif
+lib/RealPlayer8/Help/realplay/pics/index_x.gif
+lib/RealPlayer8/Help/realplay/pics/index_y.gif
+lib/RealPlayer8/Help/realplay/pics/index_z.gif
+lib/RealPlayer8/Help/realplay/pics/led-buffer-gauge.gif
+lib/RealPlayer8/Help/realplay/pics/led-connect-wds.gif
+lib/RealPlayer8/Help/realplay/pics/led-kbps-wds.gif
+lib/RealPlayer8/Help/realplay/pics/led-live.gif
+lib/RealPlayer8/Help/realplay/pics/led-nettraffic-red.gif
+lib/RealPlayer8/Help/realplay/pics/led-nettrafficgreen.gif
+lib/RealPlayer8/Help/realplay/pics/led-nettrafficyellow.gif
+lib/RealPlayer8/Help/realplay/pics/led-pause.gif
+lib/RealPlayer8/Help/realplay/pics/led-play.gif
+lib/RealPlayer8/Help/realplay/pics/led-stop.gif
+lib/RealPlayer8/Help/realplay/pics/led-surestreamdown.gif
+lib/RealPlayer8/Help/realplay/pics/led-surestreamup.gif
+lib/RealPlayer8/Help/realplay/pics/led-timeleft.gif
+lib/RealPlayer8/Help/realplay/pics/led-timer.gif
+lib/RealPlayer8/Help/realplay/pics/moreinfo.gif
+lib/RealPlayer8/Help/realplay/pics/mute.gif
+lib/RealPlayer8/Help/realplay/pics/mute3.gif
+lib/RealPlayer8/Help/realplay/pics/newchannels.gif
+lib/RealPlayer8/Help/realplay/pics/next.gif
+lib/RealPlayer8/Help/realplay/pics/next0.gif
+lib/RealPlayer8/Help/realplay/pics/next1.gif
+lib/RealPlayer8/Help/realplay/pics/notice.gif
+lib/RealPlayer8/Help/realplay/pics/optionsbutt.gif
+lib/RealPlayer8/Help/realplay/pics/pause.gif
+lib/RealPlayer8/Help/realplay/pics/play.gif
+lib/RealPlayer8/Help/realplay/pics/plus2.gif
+lib/RealPlayer8/Help/realplay/pics/pregain3.gif
+lib/RealPlayer8/Help/realplay/pics/prev0.gif
+lib/RealPlayer8/Help/realplay/pics/prev1.gif
+lib/RealPlayer8/Help/realplay/pics/readme.gif
+lib/RealPlayer8/Help/realplay/pics/real.gif
+lib/RealPlayer8/Help/realplay/pics/realplay00000000.gif
+lib/RealPlayer8/Help/realplay/pics/realplay00000013.gif
+lib/RealPlayer8/Help/realplay/pics/realplay00000046.gif
+lib/RealPlayer8/Help/realplay/pics/realplay00000071.gif
+lib/RealPlayer8/Help/realplay/pics/realplay00090000.gif
+lib/RealPlayer8/Help/realplay/pics/realplay00090001.gif
+lib/RealPlayer8/Help/realplay/pics/recbutt.gif
+lib/RealPlayer8/Help/realplay/pics/recbuttondwn.gif
+lib/RealPlayer8/Help/realplay/pics/reverb3.gif
+lib/RealPlayer8/Help/realplay/pics/roomsize3.gif
+lib/RealPlayer8/Help/realplay/pics/saturation.gif
+lib/RealPlayer8/Help/realplay/pics/savesettings3.gif
+lib/RealPlayer8/Help/realplay/pics/scan.gif
+lib/RealPlayer8/Help/realplay/pics/search.gif
+lib/RealPlayer8/Help/realplay/pics/settings4.gif
+lib/RealPlayer8/Help/realplay/pics/sharpness.gif
+lib/RealPlayer8/Help/realplay/pics/shortcut.gif
+lib/RealPlayer8/Help/realplay/pics/shorttoc.gif
+lib/RealPlayer8/Help/realplay/pics/stationstab.gif
+lib/RealPlayer8/Help/realplay/pics/stop.gif
+lib/RealPlayer8/Help/realplay/pics/tint.gif
+lib/RealPlayer8/Help/realplay/pics/unixplay.jpg
+lib/RealPlayer8/Help/realplay/pics/videocontrols3.gif
+lib/RealPlayer8/Help/realplay/pics/volslider.gif
+lib/RealPlayer8/Help/realplay/pics/zoom.gif
+lib/RealPlayer8/Help/realplay/pics/zoomtest
+lib/RealPlayer8/Help/realplay/play.htm
+lib/RealPlayer8/Help/realplay/play_menu.htm
+lib/RealPlayer8/Help/realplay/playclip.htm
+lib/RealPlayer8/Help/realplay/position.htm
+lib/RealPlayer8/Help/realplay/prx_pref.htm
+lib/RealPlayer8/Help/realplay/real_wrk.htm
+lib/RealPlayer8/Help/realplay/rollcred.htm
+lib/RealPlayer8/Help/realplay/set_pref.htm
+lib/RealPlayer8/Help/realplay/size.htm
+lib/RealPlayer8/Help/realplay/slider.htm
+lib/RealPlayer8/Help/realplay/snd_set.htm
+lib/RealPlayer8/Help/realplay/stat_bar.htm
+lib/RealPlayer8/Help/realplay/statist.htm
+lib/RealPlayer8/Help/realplay/status.htm
+lib/RealPlayer8/Help/realplay/stop.htm
+lib/RealPlayer8/Help/realplay/streams.htm
+lib/RealPlayer8/Help/realplay/sup_pref.htm
+lib/RealPlayer8/Help/realplay/surestrm.htm
+lib/RealPlayer8/Help/realplay/sync_snd.htm
+lib/RealPlayer8/Help/realplay/takefive.htm
+lib/RealPlayer8/Help/realplay/toc.htm
+lib/RealPlayer8/Help/realplay/toc_full.htm
+lib/RealPlayer8/Help/realplay/toc_menu.htm
+lib/RealPlayer8/Help/realplay/toc_pref.htm
+lib/RealPlayer8/Help/realplay/toc_strt.htm
+lib/RealPlayer8/Help/realplay/toc_trbl.htm
+lib/RealPlayer8/Help/realplay/trn_pref.htm
+lib/RealPlayer8/Help/realplay/trn_set.htm
+lib/RealPlayer8/Help/realplay/trouble.htm
+lib/RealPlayer8/Help/realplay/use_real.htm
+lib/RealPlayer8/Help/realplay/vid_play.htm
+lib/RealPlayer8/Help/realplay/video.htm
+lib/RealPlayer8/Help/realplay/view_menu.htm
+lib/RealPlayer8/Help/realplay/volume.htm
+lib/RealPlayer8/Help/realplay/win_ctrl.htm
+lib/RealPlayer8/Help/realplay/zoom.htm
+lib/RealPlayer8/Help/realplay/zoomhelp.htm
+lib/RealPlayer8/LICENSE
+lib/RealPlayer8/Mailcap
+lib/RealPlayer8/Mime.types
+lib/RealPlayer8/Plugins/ExtResources/coreres60.xrs
+lib/RealPlayer8/Plugins/audplin.so.6.0
+lib/RealPlayer8/Plugins/authmgr.so.6.0
+lib/RealPlayer8/Plugins/bascauth.so.6.0
+lib/RealPlayer8/Plugins/httpfsys.so.6.0
+lib/RealPlayer8/Plugins/memfsys.so.6.0
+lib/RealPlayer8/Plugins/meta.so.6.0
+lib/RealPlayer8/Plugins/mp3f.so.6.0
+lib/RealPlayer8/Plugins/mp3mfpln.so.6.0
+lib/RealPlayer8/Plugins/mp3r.so.6.0
+lib/RealPlayer8/Plugins/pnxres.so.6.0
+lib/RealPlayer8/Plugins/ppffplin.so.6.0
+lib/RealPlayer8/Plugins/pxcgif2.so.6.0
+lib/RealPlayer8/Plugins/pxcjpeg2.so.6.0
+lib/RealPlayer8/Plugins/pxcpng.so.6.0
+lib/RealPlayer8/Plugins/pxff.so.6.0
+lib/RealPlayer8/Plugins/pxgf.so.6.0
+lib/RealPlayer8/Plugins/pxgr.so.6.0
+lib/RealPlayer8/Plugins/pxjf.so.6.0
+lib/RealPlayer8/Plugins/pxjr.so.6.0
+lib/RealPlayer8/Plugins/pxpf.so.6.0
+lib/RealPlayer8/Plugins/pxpr.so.6.0
+lib/RealPlayer8/Plugins/pxrend2.so.6.0
+lib/RealPlayer8/Plugins/rarender.so.6.0
+lib/RealPlayer8/Plugins/rcadlg.so.6.0
+lib/RealPlayer8/Plugins/rmffplin.so.6.0
+lib/RealPlayer8/Plugins/rn5auth.so.6.0
+lib/RealPlayer8/Plugins/rtffplin.so.6.0
+lib/RealPlayer8/Plugins/rtrender.so.6.0
+lib/RealPlayer8/Plugins/rvrend.so.6.0
+lib/RealPlayer8/Plugins/sdpplin.so.6.0
+lib/RealPlayer8/Plugins/skinfs.so.6.0
+lib/RealPlayer8/Plugins/smlffpln.so.6.0
+lib/RealPlayer8/Plugins/smlrendr.so.6.0
+lib/RealPlayer8/Plugins/smmrendr.so.6.0
+lib/RealPlayer8/Plugins/smplfsys.so.6.0
+lib/RealPlayer8/Plugins/swff.so.6.0
+lib/RealPlayer8/Plugins/swfrend.so.6.0
+lib/RealPlayer8/Plugins/vidplin.so.6.0
+lib/RealPlayer8/Plugins/vsrcplin.so.6.0
+lib/RealPlayer8/Plugins/xlibsite.so.6.0
+lib/RealPlayer8/README
+lib/RealPlayer8/app.kdelnk
+lib/RealPlayer8/audiosig.rm
+lib/RealPlayer8/firstrun.rm
+lib/RealPlayer8/mime.kdelnk
+lib/RealPlayer8/mimeinstall.sh
+lib/RealPlayer8/pluginstall.sh
+lib/RealPlayer8/raclass.zip
+lib/RealPlayer8/realplay
+lib/RealPlayer8/realplay.desktop
+lib/RealPlayer8/rp7.xpm
+lib/RealPlayer8/rp7doc.png
+lib/RealPlayer8/rp7doc.xpm
+lib/RealPlayer8/rp7mini.xpm
+lib/RealPlayer8/rpnp.so
+lib/netscape/plugins/raclass.zip
+lib/netscape/plugins/rpnp.so
+@unexec rmdir -p %D/lib/netscape/plugins 2>/dev/null || true
+@dirrm lib/RealPlayer8/Plugins/ExtResources
+@dirrm lib/RealPlayer8/Plugins
+@dirrm lib/RealPlayer8/Help/realplay/pics
+@dirrm lib/RealPlayer8/Help/realplay
+@dirrm lib/RealPlayer8/Help
+@dirrm lib/RealPlayer8/Common
+@dirrm lib/RealPlayer8/Codecs
+@dirrm lib/RealPlayer8
diff --git a/audio/realplayer/scripts/pre-extract b/audio/realplayer/scripts/pre-extract
new file mode 100644
index 00000000000..82adef21797
--- /dev/null
+++ b/audio/realplayer/scripts/pre-extract
@@ -0,0 +1,38 @@
+#!/bin/sh
+#
+# $NetBSD: pre-extract,v 1.1.1.1 2000/12/25 09:35:59 jlam Exp $
+
+# The number of seconds to pause before continuing with the extraction
+# process.
+#
+delay=15
+
+${CAT} << EOF
+===========================================================================
+
+ Now running the RealPlayer installation program.
+
+ 1) Choose 'Accept' on the end user license agreement (EULA) screen.
+
+ 2) Make sure the "Destination Directory" is:
+
+ ${WRKSRC}
+
+ (it should be the first choice on the drop-down menu), then press
+ 'Finish'.
+
+ 3) 'Cancel' and 'Exit' out of the MIME types and plugin install.
+
+ 4) 'Cancel' and 'Exit' out of the electronic registration screen.
+
+ After the introductory clip runs, exit RealPlayer to continue the
+ package installation.
+
+===========================================================================
+
+Be sure to read the above! Proceeding in ${delay} seconds...
+EOF
+
+sleep ${delay}
+
+${CHMOD} +x ${RP_INSTALLER}