summaryrefslogtreecommitdiff
path: root/audio
diff options
context:
space:
mode:
authorjlam <jlam>1999-08-29 01:32:27 +0000
committerjlam <jlam>1999-08-29 01:32:27 +0000
commit81d82af5bdd73ae036986cb4679df89724fa6840 (patch)
tree52a127906f7b61544eae4bc644dd5659812c9531 /audio
parent7c65766d630b5ee40ec20f35e5a1f27ab2e7fcd1 (diff)
downloadpkgsrc-81d82af5bdd73ae036986cb4679df89724fa6840.tar.gz
RealPlayer 5.0: a RealAudio and RealVideo player.
Diffstat (limited to 'audio')
-rw-r--r--audio/rvplayer/Makefile71
-rw-r--r--audio/rvplayer/files/md53
-rw-r--r--audio/rvplayer/files/rvplayer.sh7
-rw-r--r--audio/rvplayer/pkg/COMMENT1
-rw-r--r--audio/rvplayer/pkg/DESCR1
-rw-r--r--audio/rvplayer/pkg/MESSAGE11
-rw-r--r--audio/rvplayer/pkg/PLIST58
7 files changed, 152 insertions, 0 deletions
diff --git a/audio/rvplayer/Makefile b/audio/rvplayer/Makefile
new file mode 100644
index 00000000000..6e341bc3ecc
--- /dev/null
+++ b/audio/rvplayer/Makefile
@@ -0,0 +1,71 @@
+# $NetBSD: Makefile,v 1.1.1.1 1999/08/29 01:32:27 jlam Exp $
+#
+
+DISTNAME= rv50_linux20
+PKGNAME= rvplayer-5.0
+WRKSRC= ${WRKDIR}/rvplayer5.0
+CATEGORIES= audio
+MASTER_SITES=
+
+MAINTAINER= jlam@netbsd.org
+HOMEPAGE= http://www.real.com/products/player/
+
+NO_CDROM= "Redistribution not permitted"
+RESTRICTED= "Export-controlled"
+MIRROR_DISTFILE= no
+
+ONLY_FOR_PLATFORM= NetBSD-*-i386
+NO_CONFIGURE= yes
+
+.if !exists(/emul/linux/lib/ld-linux.so.1)
+IGNORE= requires Linux glibc2 libraries - see compat_linux(8)
+.endif
+
+REAL_HOME= ${PREFIX}/lib/rvplayer
+DOCDIR= ${PREFIX}/share/doc/rvplayer
+
+do-fetch:
+ @if [ ! -f ${DISTDIR}/${DISTNAME}${EXTRACT_SUFX} ]; then \
+ ${ECHO_MSG} "==============================================================="; \
+ ${ECHO_MSG} " RealPlayer 5.0 for Linux-ELF must be fetched into"; \
+ ${ECHO_MSG} " ${DISTDIR} from"; \
+ ${ECHO_MSG} " http://www.real.com/products/player/downloadrealplayer.html."; \
+ ${ECHO_MSG} "==============================================================="; \
+ fi
+
+do-build:
+ ${SED} -e 's#@@REAL_HOME@@#${REAL_HOME}#g' \
+ <${FILESDIR}/rvplayer.sh >${WRKDIR}/rvplayer.sh
+
+do-install:
+ # Install RealPlayer and its codecs.
+ #
+ ${INSTALL_DATA_DIR} ${REAL_HOME}
+ ${INSTALL_PROGRAM} ${WRKSRC}/rvplayer ${REAL_HOME}
+.for file in libdecdnet.so libra14_4.so libra28_8.so libradnet.so \
+ librarv10.so librasipr.so librv10dec.so librvcore.so rvplayer.ad
+ ${INSTALL_DATA} ${WRKSRC}/${file} ${REAL_HOME}
+.endfor
+ #
+ # Install RealPlayer plug-ins.
+ #
+.for file in RAObserver.class RAPlayer.class librvplayer.so
+ ${INSTALL_DATA} ${WRKSRC}/${file} ${REAL_HOME}
+.endfor
+ #
+ # Install the RealPlayer documentation.
+ #
+ ${INSTALL_DATA_DIR} ${DOCDIR}
+.for file in License.txt Mailcap Mime.types README welcome.rm
+ ${INSTALL_DATA} ${WRKSRC}/${file} ${DOCDIR}
+.endfor
+ ${INSTALL_DATA} ${WRKSRC}/index.htm ${DOCDIR}
+ ${CP} -R ${WRKSRC}/doc ${DOCDIR}
+ ${CHOWN} -R ${SHAREOWN}:${SHAREGRP} ${DOCDIR}
+ ${CHMOD} -R go-w ${DOCDIR}
+ #
+ # Install the RealPlayer wrapper script.
+ #
+ ${INSTALL_SCRIPT} ${WRKDIR}/rvplayer.sh ${PREFIX}/bin/rvplayer
+
+.include "../../mk/bsd.pkg.mk"
diff --git a/audio/rvplayer/files/md5 b/audio/rvplayer/files/md5
new file mode 100644
index 00000000000..415fa0b0e78
--- /dev/null
+++ b/audio/rvplayer/files/md5
@@ -0,0 +1,3 @@
+$NetBSD: md5,v 1.1.1.1 1999/08/29 01:32:27 jlam Exp $
+
+MD5 (rv50_linux20.tar.gz) = 631018a5eeb530dbc8e441fd1236f625
diff --git a/audio/rvplayer/files/rvplayer.sh b/audio/rvplayer/files/rvplayer.sh
new file mode 100644
index 00000000000..752a76e4f95
--- /dev/null
+++ b/audio/rvplayer/files/rvplayer.sh
@@ -0,0 +1,7 @@
+#!/bin/sh
+#
+# $NetBSD: rvplayer.sh,v 1.1.1.1 1999/08/29 01:32:27 jlam Exp $
+#
+REAL_HOME=@@REAL_HOME@@ ; export REAL_HOME
+LD_LIBRARY_PATH=${REAL_HOME}:${LD_LIBRARY_PATH} ; export LD_LIBRARY_PATH
+exec ${REAL_HOME}/rvplayer "$@"
diff --git a/audio/rvplayer/pkg/COMMENT b/audio/rvplayer/pkg/COMMENT
new file mode 100644
index 00000000000..d6053199c21
--- /dev/null
+++ b/audio/rvplayer/pkg/COMMENT
@@ -0,0 +1 @@
+RealAudio and RealVideo player
diff --git a/audio/rvplayer/pkg/DESCR b/audio/rvplayer/pkg/DESCR
new file mode 100644
index 00000000000..175f4c6f436
--- /dev/null
+++ b/audio/rvplayer/pkg/DESCR
@@ -0,0 +1 @@
+RealPlayer plays plain and streaming RealAudio and RealVideo media.
diff --git a/audio/rvplayer/pkg/MESSAGE b/audio/rvplayer/pkg/MESSAGE
new file mode 100644
index 00000000000..fdb335d073b
--- /dev/null
+++ b/audio/rvplayer/pkg/MESSAGE
@@ -0,0 +1,11 @@
+===========================================================================
+$NetBSD: MESSAGE,v 1.1.1.1 1999/08/29 01:32:28 jlam Exp $
+
+Please be sure to read the license agreement in
+${PREFIX}/share/doc/rvplayer/License.txt.
+
+The documentation to install a RealPlayer plug-in for Netscape
+can be found by pointing your favorite HTML browser at
+${PREFIX}/share/doc/rvplayer/index.htm.
+
+===========================================================================
diff --git a/audio/rvplayer/pkg/PLIST b/audio/rvplayer/pkg/PLIST
new file mode 100644
index 00000000000..55475a3316d
--- /dev/null
+++ b/audio/rvplayer/pkg/PLIST
@@ -0,0 +1,58 @@
+@comment $NetBSD: PLIST,v 1.1.1.1 1999/08/29 01:32:28 jlam Exp $
+bin/rvplayer
+lib/rvplayer/RAObserver.class
+lib/rvplayer/RAPlayer.class
+lib/rvplayer/libdecdnet.so
+lib/rvplayer/libra14_4.so
+lib/rvplayer/libra28_8.so
+lib/rvplayer/libradnet.so
+lib/rvplayer/librarv10.so
+lib/rvplayer/librasipr.so
+lib/rvplayer/librv10dec.so
+lib/rvplayer/librvcore.so
+lib/rvplayer/librvplayer.so
+lib/rvplayer/rvplayer
+lib/rvplayer/rvplayer.ad
+share/doc/rvplayer/License.txt
+share/doc/rvplayer/Mailcap
+share/doc/rvplayer/Mime.types
+share/doc/rvplayer/README
+share/doc/rvplayer/doc/browser.htm
+share/doc/rvplayer/doc/configure.htm
+share/doc/rvplayer/doc/contents.htm
+share/doc/rvplayer/doc/embed.htm
+share/doc/rvplayer/doc/freebsd.htm
+share/doc/rvplayer/doc/general.htm
+share/doc/rvplayer/doc/gifs/config3.jpg
+share/doc/rvplayer/doc/gifs/config4_1.jpg
+share/doc/rvplayer/doc/gifs/config4_2.jpg
+share/doc/rvplayer/doc/gifs/download.gif
+share/doc/rvplayer/doc/gifs/emhelp.gif
+share/doc/rvplayer/doc/gifs/plugin.jpg
+share/doc/rvplayer/doc/gifs/prefs.jpg
+share/doc/rvplayer/doc/gifs/ra-logo.gif
+share/doc/rvplayer/doc/gifs/ra-logo2.gif
+share/doc/rvplayer/doc/gifs/realplayer4.jpg
+share/doc/rvplayer/doc/gifs/rnlogo.gif
+share/doc/rvplayer/doc/gifs/webhelp.gif
+share/doc/rvplayer/doc/install.htm
+share/doc/rvplayer/doc/intro.htm
+share/doc/rvplayer/doc/irix.htm
+share/doc/rvplayer/doc/license.htm
+share/doc/rvplayer/doc/linux.htm
+share/doc/rvplayer/doc/notes.htm
+share/doc/rvplayer/doc/notice.html
+share/doc/rvplayer/doc/path.htm
+share/doc/rvplayer/doc/plugin.htm
+share/doc/rvplayer/doc/setup.htm
+share/doc/rvplayer/doc/shared.htm
+share/doc/rvplayer/doc/solaris.htm
+share/doc/rvplayer/doc/sysreq.htm
+share/doc/rvplayer/doc/title.html
+share/doc/rvplayer/doc/toc.html
+share/doc/rvplayer/index.htm
+share/doc/rvplayer/welcome.rm
+@dirrm share/doc/rvplayer/doc/gifs
+@dirrm share/doc/rvplayer/doc
+@dirrm share/doc/rvplayer
+@dirrm lib/rvplayer