summaryrefslogtreecommitdiff
path: root/audio
diff options
context:
space:
mode:
authorjlam <jlam@pkgsrc.org>2000-02-17 22:44:19 +0000
committerjlam <jlam@pkgsrc.org>2000-02-17 22:44:19 +0000
commita4fc4814ce5f74a778cb53af7401d4fc10644c1a (patch)
treedffa5aa7ff213a9f1d95f5fe0dcc7a346f3a9cc0 /audio
parente29c26fdcbdab632568655edb558dc7cc41369d8 (diff)
downloadpkgsrc-a4fc4814ce5f74a778cb53af7401d4fc10644c1a.tar.gz
realplayerG2 - Linux RealPlayerG2 for i386
Diffstat (limited to 'audio')
-rw-r--r--audio/realplayerG2/Makefile60
-rw-r--r--audio/realplayerG2/files/md53
-rw-r--r--audio/realplayerG2/files/realplay.sh7
-rw-r--r--audio/realplayerG2/pkg/COMMENT1
-rw-r--r--audio/realplayerG2/pkg/DESCR2
-rw-r--r--audio/realplayerG2/pkg/INSTALL18
-rw-r--r--audio/realplayerG2/pkg/PLIST192
7 files changed, 283 insertions, 0 deletions
diff --git a/audio/realplayerG2/Makefile b/audio/realplayerG2/Makefile
new file mode 100644
index 00000000000..4a3de58262f
--- /dev/null
+++ b/audio/realplayerG2/Makefile
@@ -0,0 +1,60 @@
+# $NetBSD: Makefile,v 1.1.1.1 2000/02/17 22:44:19 jlam Exp $
+#
+
+DISTNAME= g2a1_linux22
+PKGNAME= realplayerG2-1a
+CATEGORIES= audio
+MASTER_SITES=
+EXTRACT_SUFX= .bin
+
+MAINTAINER= jlam@netbsd.org
+HOMEPAGE= http://www.real.com/products/player/
+
+DEPENDS+= suse_linux>=6.1:../../emulators/suse_linux
+
+ONLY_FOR_PLATFORM= NetBSD-*-i386
+NO_CDROM= "Redistribution not permitted"
+RESTRICTED= "Export-controlled"
+MIRROR_DISTFILE= no
+IS_INTERACTIVE= yes
+
+NO_CONFIGURE= yes
+EXTRACT_CMD= HOME=${WRKDIR} ${DISTDIR}/${DISTNAME}${EXTRACT_SUFX}
+
+DOWNLOAD= http://proforma.real.com/real/player/linuxplayer.html
+REALPLAYER_HOME= ${PREFIX}/lib/RealPlayerG2
+
+do-fetch:
+ @if [ ! -f ${DISTDIR}/${DISTNAME}${EXTRACT_SUFX} ]; then \
+ ${ECHO_MSG} "==============================================================="; \
+ ${ECHO_MSG} " RealPlayer G2 for Linux 2.0/2.2 must be fetched into"; \
+ ${ECHO_MSG} " ${DISTDIR} from"; \
+ ${ECHO_MSG} " ${DOWNLOAD}."; \
+ ${ECHO_MSG} "==============================================================="; \
+ ${FALSE}; \
+ fi
+
+pre-extract:
+ @${ECHO_MSG} ""
+ @${ECHO_MSG} "-------------------------------------------------------"
+ @${ECHO_MSG} " Now running the RealPlayerG2 installation script. "
+ @${ECHO_MSG} ""
+ @${ECHO_MSG} " Simply hit <RETURN> on every request. Please do "
+ @${ECHO_MSG} " _not_ try to change any setup parameters. "
+ @${ECHO_MSG} "-------------------------------------------------------"
+ @${ECHO_MSG} ""
+ @${CHMOD} +x ${DISTDIR}/${DISTNAME}${EXTRACT_SUFX}
+
+do-build:
+ ${SED} -e 's#@@REALPLAYER_HOME@@#${REALPLAYER_HOME}#g' \
+ <${FILESDIR}/realplay.sh >${WRKDIR}/realplay.sh
+
+do-install:
+ ${INSTALL_SCRIPT} ${WRKDIR}/realplay.sh ${PREFIX}/bin/realplay
+ cd ${WRKDIR}; ${PAX} -rw RealPlayerG2 ${PREFIX}/lib
+
+post-install:
+ ${SETENV} PKG_PREFIX=${PREFIX} \
+ ${SH} ${INSTALL_FILE} ${PKGNAME} POST-INSTALL
+
+.include "../../mk/bsd.pkg.mk"
diff --git a/audio/realplayerG2/files/md5 b/audio/realplayerG2/files/md5
new file mode 100644
index 00000000000..58ddda17c58
--- /dev/null
+++ b/audio/realplayerG2/files/md5
@@ -0,0 +1,3 @@
+$NetBSD: md5,v 1.1.1.1 2000/02/17 22:44:19 jlam Exp $
+
+MD5 (g2a1_linux22.bin) = a8ef9e43c8b97dbd359aa57e8f0e50f9
diff --git a/audio/realplayerG2/files/realplay.sh b/audio/realplayerG2/files/realplay.sh
new file mode 100644
index 00000000000..cfabc57b50d
--- /dev/null
+++ b/audio/realplayerG2/files/realplay.sh
@@ -0,0 +1,7 @@
+#!/bin/sh
+#
+# $NetBSD: realplay.sh,v 1.1.1.1 2000/02/17 22:44:19 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/realplayerG2/pkg/COMMENT b/audio/realplayerG2/pkg/COMMENT
new file mode 100644
index 00000000000..d6053199c21
--- /dev/null
+++ b/audio/realplayerG2/pkg/COMMENT
@@ -0,0 +1 @@
+RealAudio and RealVideo player
diff --git a/audio/realplayerG2/pkg/DESCR b/audio/realplayerG2/pkg/DESCR
new file mode 100644
index 00000000000..f5717384dab
--- /dev/null
+++ b/audio/realplayerG2/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/realplayerG2/pkg/INSTALL b/audio/realplayerG2/pkg/INSTALL
new file mode 100644
index 00000000000..8a7b3800726
--- /dev/null
+++ b/audio/realplayerG2/pkg/INSTALL
@@ -0,0 +1,18 @@
+#!/bin/sh
+#
+# $NetBSD: INSTALL,v 1.1.1.1 2000/02/17 22:44:19 jlam Exp $
+
+case $2 in
+POST-INSTALL)
+ cat << EOF
+==============================================================
+
+Please be sure to read ${PKG_PREFIX}/lib/RealPlayerG2/LICENSE.
+
+==============================================================
+EOF
+ ;;
+*)
+ ;;
+esac
+exit 0
diff --git a/audio/realplayerG2/pkg/PLIST b/audio/realplayerG2/pkg/PLIST
new file mode 100644
index 00000000000..1ce7c6329d3
--- /dev/null
+++ b/audio/realplayerG2/pkg/PLIST
@@ -0,0 +1,192 @@
+@comment $NetBSD: PLIST,v 1.1.1.1 2000/02/17 22:44:19 jlam Exp $
+bin/realplay
+lib/RealPlayerG2/Codecs/14_4.so.6.0
+lib/RealPlayerG2/Codecs/28_8.so.6.0
+lib/RealPlayerG2/Codecs/cokr.so.6.0
+lib/RealPlayerG2/Codecs/cook.so.6.0
+lib/RealPlayerG2/Codecs/ddnt.so.6.0
+lib/RealPlayerG2/Codecs/dnet.so.6.0
+lib/RealPlayerG2/Codecs/drv1.so.6.0
+lib/RealPlayerG2/Codecs/drv2.so.6.0
+lib/RealPlayerG2/Codecs/dspr.so.6.0
+lib/RealPlayerG2/Codecs/rncolor.so.6.0
+lib/RealPlayerG2/Codecs/rv10.so.6.0
+lib/RealPlayerG2/Codecs/rv20.so.6.0
+lib/RealPlayerG2/Codecs/sipr.so.6.0
+lib/RealPlayerG2/Common/coreres60.xrs
+lib/RealPlayerG2/Common/rmacore.so.6.0
+lib/RealPlayerG2/Help/README
+lib/RealPlayerG2/Help/RealHelp.html
+lib/RealPlayerG2/Help/RealHelp/contents.html
+lib/RealPlayerG2/Help/RealHelp/graphics/PlayerUI.gif
+lib/RealPlayerG2/Help/RealHelp/graphics/RealLogo.gif
+lib/RealPlayerG2/Help/RealHelp/graphics/RealNetx.gif
+lib/RealPlayerG2/Help/RealHelp/graphics/arrowdwn.gif
+lib/RealPlayerG2/Help/RealHelp/graphics/arrowlft.gif
+lib/RealPlayerG2/Help/RealHelp/graphics/arrowrt.gif
+lib/RealPlayerG2/Help/RealHelp/graphics/contents.gif
+lib/RealPlayerG2/Help/RealHelp/graphics/creditroll.gif
+lib/RealPlayerG2/Help/RealHelp/graphics/cursor_hand.gif
+lib/RealPlayerG2/Help/RealHelp/graphics/fulltoc.gif
+lib/RealPlayerG2/Help/RealHelp/graphics/g2-status.gif
+lib/RealPlayerG2/Help/RealHelp/graphics/glossary.gif
+lib/RealPlayerG2/Help/RealHelp/graphics/helppage.gif
+lib/RealPlayerG2/Help/RealHelp/graphics/index.gif
+lib/RealPlayerG2/Help/RealHelp/graphics/jumphere.gif
+lib/RealPlayerG2/Help/RealHelp/graphics/led-buffer-gauge.gif
+lib/RealPlayerG2/Help/RealHelp/graphics/led-connect-wds.gif
+lib/RealPlayerG2/Help/RealHelp/graphics/led-kbps-wds.gif
+lib/RealPlayerG2/Help/RealHelp/graphics/led-live.gif
+lib/RealPlayerG2/Help/RealHelp/graphics/led-nettraffic-red.gif
+lib/RealPlayerG2/Help/RealHelp/graphics/led-nettrafficgreen.gif
+lib/RealPlayerG2/Help/RealHelp/graphics/led-nettrafficyellow.gif
+lib/RealPlayerG2/Help/RealHelp/graphics/led-pause.gif
+lib/RealPlayerG2/Help/RealHelp/graphics/led-play.gif
+lib/RealPlayerG2/Help/RealHelp/graphics/led-stop.gif
+lib/RealPlayerG2/Help/RealHelp/graphics/led-surestreamdown.gif
+lib/RealPlayerG2/Help/RealHelp/graphics/led-surestreamup.gif
+lib/RealPlayerG2/Help/RealHelp/graphics/led-timeleft.gif
+lib/RealPlayerG2/Help/RealHelp/graphics/led-timer.gif
+lib/RealPlayerG2/Help/RealHelp/graphics/moreinfo.gif
+lib/RealPlayerG2/Help/RealHelp/graphics/mute.gif
+lib/RealPlayerG2/Help/RealHelp/graphics/pause.gif
+lib/RealPlayerG2/Help/RealHelp/graphics/play.gif
+lib/RealPlayerG2/Help/RealHelp/graphics/shorttoc.gif
+lib/RealPlayerG2/Help/RealHelp/graphics/stop.gif
+lib/RealPlayerG2/Help/RealHelp/graphics/volslider.gif
+lib/RealPlayerG2/Help/RealHelp/graphics/workings.gif
+lib/RealPlayerG2/Help/RealHelp/graphics/zoom.gif
+lib/RealPlayerG2/Help/RealHelp/index.html
+lib/RealPlayerG2/Help/RealHelp/realhelpAdding_Presets.html
+lib/RealPlayerG2/Help/RealHelp/realhelpBuffered_Play.html
+lib/RealPlayerG2/Help/RealHelp/realhelpChanging_the_Size_of_the_Image_A.html
+lib/RealPlayerG2/Help/RealHelp/realhelpClip_Info_Bar0.html
+lib/RealPlayerG2/Help/RealHelp/realhelpClip_Info_Bar1.html
+lib/RealPlayerG2/Help/RealHelp/realhelpClip_Info__More_Info.html
+lib/RealPlayerG2/Help/RealHelp/realhelpConnection_Preferences.html
+lib/RealPlayerG2/Help/RealHelp/realhelpContent_Preferences.html
+lib/RealPlayerG2/Help/RealHelp/realhelpCreating_a_Preset.html
+lib/RealPlayerG2/Help/RealHelp/realhelpDisplay_Panel.html
+lib/RealPlayerG2/Help/RealHelp/realhelpEdit_Preset.html
+lib/RealPlayerG2/Help/RealHelp/realhelpError_Messages.html
+lib/RealPlayerG2/Help/RealHelp/realhelpFF_Button.html
+lib/RealPlayerG2/Help/RealHelp/realhelpFile_Menu.html
+lib/RealPlayerG2/Help/RealHelp/realhelpGlossary.html
+lib/RealPlayerG2/Help/RealHelp/realhelpHelp_Menu.html
+lib/RealPlayerG2/Help/RealHelp/realhelpHow_do_I_configure_my_browser_to.html
+lib/RealPlayerG2/Help/RealHelp/realhelpHow_does_RealPlayer_work.html
+lib/RealPlayerG2/Help/RealHelp/realhelpHow_to_use_this_Help_File.html
+lib/RealPlayerG2/Help/RealHelp/realhelpInnerWorkings.html
+lib/RealPlayerG2/Help/RealHelp/realhelpIntroduction_to_RealPlayer.html
+lib/RealPlayerG2/Help/RealHelp/realhelpJumpto_Topic.html
+lib/RealPlayerG2/Help/RealHelp/realhelpKeyboard_Shortcuts.html
+lib/RealPlayerG2/Help/RealHelp/realhelpLoading_a_Clip.html
+lib/RealPlayerG2/Help/RealHelp/realhelpMenus.html
+lib/RealPlayerG2/Help/RealHelp/realhelpMiscellaneous_Preferences.html
+lib/RealPlayerG2/Help/RealHelp/realhelpOptions_Menu.html
+lib/RealPlayerG2/Help/RealHelp/realhelpOrganize_Presets.html
+lib/RealPlayerG2/Help/RealHelp/realhelpPause_Button.html
+lib/RealPlayerG2/Help/RealHelp/realhelpPerformance_Preferences.html
+lib/RealPlayerG2/Help/RealHelp/realhelpPicture_Example.html
+lib/RealPlayerG2/Help/RealHelp/realhelpPlay_Button.html
+lib/RealPlayerG2/Help/RealHelp/realhelpPlaylist_Bar0.html
+lib/RealPlayerG2/Help/RealHelp/realhelpPlaylist_Bar1.html
+lib/RealPlayerG2/Help/RealHelp/realhelpPlaylist_navigator.html
+lib/RealPlayerG2/Help/RealHelp/realhelpPosition_Slider.html
+lib/RealPlayerG2/Help/RealHelp/realhelpPresets.html
+lib/RealPlayerG2/Help/RealHelp/realhelpPresets_Menu.html
+lib/RealPlayerG2/Help/RealHelp/realhelpProxyPreferences.html
+lib/RealPlayerG2/Help/RealHelp/realhelpRealPlayer_Components.html
+lib/RealPlayerG2/Help/RealHelp/realhelpRealPlayer_Menus.html
+lib/RealPlayerG2/Help/RealHelp/realhelpRewind_Button.html
+lib/RealPlayerG2/Help/RealHelp/realhelpRoll_Credits.html
+lib/RealPlayerG2/Help/RealHelp/realhelpSecurity.html
+lib/RealPlayerG2/Help/RealHelp/realhelpSelecting_a_Preset.html
+lib/RealPlayerG2/Help/RealHelp/realhelpSetting_Preferences.html
+lib/RealPlayerG2/Help/RealHelp/realhelpSharing_Presets.html
+lib/RealPlayerG2/Help/RealHelp/realhelpSoundcard_Settings.html
+lib/RealPlayerG2/Help/RealHelp/realhelpStatistics_Pane.html
+lib/RealPlayerG2/Help/RealHelp/realhelpStatus_Bar.html
+lib/RealPlayerG2/Help/RealHelp/realhelpStatus_BarStatus_Window.html
+lib/RealPlayerG2/Help/RealHelp/realhelpStop_Button.html
+lib/RealPlayerG2/Help/RealHelp/realhelpSureStream.html
+lib/RealPlayerG2/Help/RealHelp/realhelpThe_RealPlayer_Interface.html
+lib/RealPlayerG2/Help/RealHelp/realhelpTransport_Preferences.html
+lib/RealPlayerG2/Help/RealHelp/realhelpTransport_Settings.html
+lib/RealPlayerG2/Help/RealHelp/realhelpTroubleshooting.html
+lib/RealPlayerG2/Help/RealHelp/realhelpUpgrade_Preferences.html
+lib/RealPlayerG2/Help/RealHelp/realhelpUsing_the_RealPlayer.html
+lib/RealPlayerG2/Help/RealHelp/realhelpVideo_Display_Panel.html
+lib/RealPlayerG2/Help/RealHelp/realhelpView_Menu.html
+lib/RealPlayerG2/Help/RealHelp/realhelpVolume_Controls.html
+lib/RealPlayerG2/Help/RealHelp/realhelpWhat_is_a_stream.html
+lib/RealPlayerG2/Help/RealHelp/realhelpWhat_playback_quality_should_I_b.html
+lib/RealPlayerG2/Help/RealHelp/realhelpWhat_types_of_files_can_RealPlay.html
+lib/RealPlayerG2/Help/RealHelp/realhelpWhy_cant_I_play_clips_on_my_comp.html
+lib/RealPlayerG2/Help/RealHelp/realhelpWhy_dont_I_see_any_messages_from.html
+lib/RealPlayerG2/Help/RealHelp/realhelpWindows_Controls.html
+lib/RealPlayerG2/Help/RealHelp/realhelpWindows_and_Accessories.html
+lib/RealPlayerG2/Help/RealHelp/realhelpWorking_with_sound_and_video_cli.html
+lib/RealPlayerG2/Help/RealHelp/realhelpZoom.html
+lib/RealPlayerG2/Help/RealHelp/styles/body.css
+lib/RealPlayerG2/Help/RealHelp/styles/toc.css
+lib/RealPlayerG2/Help/RealHelp/toc.html
+lib/RealPlayerG2/Help/RealHelp/toc_clip.html
+lib/RealPlayerG2/Help/RealHelp/toc_full.html
+lib/RealPlayerG2/Help/RealHelp/toc_help.html
+lib/RealPlayerG2/Help/RealHelp/toc_keyb.html
+lib/RealPlayerG2/Help/RealHelp/toc_menu.html
+lib/RealPlayerG2/Help/RealHelp/toc_pref.html
+lib/RealPlayerG2/Help/RealHelp/toc_pset.html
+lib/RealPlayerG2/Help/RealHelp/toc_rpui.html
+lib/RealPlayerG2/Help/RealHelp/toc_trbl.html
+lib/RealPlayerG2/Help/RealHelp/toc_user.html
+lib/RealPlayerG2/Help/RealHelp/toc_xwin.html
+lib/RealPlayerG2/LICENSE
+lib/RealPlayerG2/Mailcap
+lib/RealPlayerG2/Mime.types
+lib/RealPlayerG2/Plugins/audplin.so.6.0
+lib/RealPlayerG2/Plugins/authmgr.so.6.0
+lib/RealPlayerG2/Plugins/bascauth.so.6.0
+lib/RealPlayerG2/Plugins/httpfsys.so.6.0
+lib/RealPlayerG2/Plugins/meta.so.6.0
+lib/RealPlayerG2/Plugins/mp3ffpln.so.6.0
+lib/RealPlayerG2/Plugins/mp3mfpln.so.6.0
+lib/RealPlayerG2/Plugins/mp3proxy.so.6.0
+lib/RealPlayerG2/Plugins/mp3rend.so.6.0
+lib/RealPlayerG2/Plugins/pnxres.so.6.0
+lib/RealPlayerG2/Plugins/pxcgif2.so.6.0
+lib/RealPlayerG2/Plugins/pxcjpeg2.so.6.0
+lib/RealPlayerG2/Plugins/pxff.so.6.0
+lib/RealPlayerG2/Plugins/pxgf.so.6.0
+lib/RealPlayerG2/Plugins/pxgr.so.6.0
+lib/RealPlayerG2/Plugins/pxjf.so.6.0
+lib/RealPlayerG2/Plugins/pxjr.so.6.0
+lib/RealPlayerG2/Plugins/pxlive.so.6.0
+lib/RealPlayerG2/Plugins/pxrend2.so.6.0
+lib/RealPlayerG2/Plugins/rarender.so.6.0
+lib/RealPlayerG2/Plugins/rmffplin.so.6.0
+lib/RealPlayerG2/Plugins/rn5auth.so.6.0
+lib/RealPlayerG2/Plugins/rtffplin.so.6.0
+lib/RealPlayerG2/Plugins/rtrender.so.6.0
+lib/RealPlayerG2/Plugins/rvrend.so.6.0
+lib/RealPlayerG2/Plugins/sdpplin.so.6.0
+lib/RealPlayerG2/Plugins/smlffpln.so.6.0
+lib/RealPlayerG2/Plugins/smlrendr.so.6.0
+lib/RealPlayerG2/Plugins/smmrendr.so.6.0
+lib/RealPlayerG2/Plugins/smplfsys.so.6.0
+lib/RealPlayerG2/Plugins/swff.so.6.0
+lib/RealPlayerG2/Plugins/swfrend.so.6.0
+lib/RealPlayerG2/Plugins/vidplin.so.6.0
+lib/RealPlayerG2/Plugins/xlibsite.so.6.0
+lib/RealPlayerG2/README
+lib/RealPlayerG2/audiosig.rm
+lib/RealPlayerG2/realplay
+@dirrm lib/RealPlayerG2/Plugins
+@dirrm lib/RealPlayerG2/Help/RealHelp/styles
+@dirrm lib/RealPlayerG2/Help/RealHelp/graphics
+@dirrm lib/RealPlayerG2/Help/RealHelp
+@dirrm lib/RealPlayerG2/Help
+@dirrm lib/RealPlayerG2/Common
+@dirrm lib/RealPlayerG2/Codecs
+@dirrm lib/RealPlayerG2