Upgrade to Realplayer 10.0.1.436 (gold).

Notes:
- linux_base-8 is needed to run its dependencies;
- the committed port is a merge of PR ports/68145 and ports/74229
  with my modifications.

PR:		ports/68145
Submitted by:	Jean-Yves Lefort
PR:		ports/74229
Submitted by:	Craig Rodrigues.
This commit is contained in:
Thierry Thomas 2004-12-15 21:02:13 +00:00
parent e1f4c55aee
commit b1c2c7eea0
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=124158
7 changed files with 328 additions and 415 deletions

2
LEGAL
View File

@ -467,7 +467,7 @@ robocode-* ports/games/robocode Restrictive license. Particularly,
redistribution isn't permitted
and user should delete software
after 60 days.
rp*_linux20_libc6_i386_*_rpm ports/audio/linux-realplayer Redistribution not allowed.
linux-realplayer-*.rpm ports/audio/linux-realplayer Redistribution not allowed.
rpm/i386/8.0/* ports/emulators/linux_base-8 binaries under GNU GPL
without accompanying source
rtplib-* ports/devel/rtplib Limited use license.

View File

@ -6,95 +6,120 @@
#
PORTNAME= linux-realplayer
PORTVERSION= 8.cs2
PORTREVISION= 5
PORTVERSION= 10.0.1
CATEGORIES= multimedia audio linux
MASTER_SITES= http://docs.real.com/docs/playerpatch/unix/:update
DISTFILES= ${MAINDIST} ${UPDATEDIST:S/$/:update/}
EXTRACT_ONLY= ${UPDATEDIST}
MASTER_SITES= https://helixcommunity.org/download.php/643/
EXTRACT_SUFX= .rpm
MAINTAINER= ports@FreeBSD.org
COMMENT= Linux RealPlayer 8.0 from RealNetworks
COMMENT= Linux RealPlayer 10 from RealNetworks
EXTRACT_DEPENDS= rpm2cpio.pl:${PORTSDIR}/archivers/rpm2cpio
RUN_DEPENDS= ${LINUXBASE}/lib/libc.so.6:${PORTSDIR}/emulators/linux_base \
${LINUXBASE}/usr/lib/libesd.so.0:${PORTSDIR}/audio/linux-esound
RUN_DEPENDS= \
${LINUXBASE}/lib/libc.so.6:${PORTSDIR}/emulators/linux_base-8 \
${LINUXBASE}/usr/lib/libgtk-x11-2.0.so.0:${PORTSDIR}/x11-toolkits/linux-gtk2 \
${LINUXBASE}/usr/lib/libesd.so.0:${PORTSDIR}/audio/linux-esound
MAINDIST= rp${PORTVERSION:R}_linux20_libc6_i386_${PORTVERSION:E}_rpm
UPDATEDIST= rv9_libc6_i386_cs2.tgz
RADIR= ${PREFIX}/lib/RealPlayer${PORTVERSION:R}
WRKSRC= ${WRKDIR}/usr/lib/RealPlayer${PORTVERSION:R}
PLUGINSDIR= ${PREFIX}/lib/netscape-linux/plugins
RABINDIR= ${PREFIX}/bin
WRKSRC= ${WRKDIR}/usr/local/RealPlayer
ONLY_FOR_ARCHS= i386
RESTRICTED= "Redistribution not allowed"
NO_BUILD= yes
# Linux binary should not be stripped by INSTALL_PROGRAM
# because as a side effect it brands the binary as FreeBSD.
STRIP=
.include <bsd.port.pre.mk>
RADIR= ${PREFIX}/lib/RealPlayer
PLUGINSDIR= ${PREFIX}/lib/linux-mozilla/plugins
RABINDIR= ${PREFIX}/bin
.if !exists(${DISTDIR}/${MAINDIST})
IGNORE= may not be automatically fetched due to licensing\
restrictions. You MUST manually fetch the Linux RPM version after\
reading and agreeing to the license at:\
http://forms.real.com/real/player/blackjack.html \
- once ${DISTFILES} has been downloaded, move it to\
${DISTDIR} and then restart this build.
.if defined(WITHOUT_NLS)
PLIST_SUB+= NLS="@comment "
.else
PLIST_SUB+= NLS=""
.endif
USE_REINPLACE= yes
ONLY_FOR_ARCHS= i386
NO_CDROM= "Redistribution not allowed"
NO_BUILD= yes
.include <bsd.port.pre.mk>
post-extract:
cd ${WRKDIR}; rpm2cpio.pl ${DISTDIR}/${MAINDIST} | ${CPIO} -id --quiet
.if exists(${X11BASE}/share/icons)
WITH_ICONS= yes
PLIST_SUB+= ICONS=""
.else
PLIST_SUB+= ICONS="@comment "
.endif
.if exists(${X11BASE}/share/gnome)
WITH_GNOME= yes
PLIST_SUB+= GNOME=""
.else
PLIST_SUB+= GNOME="@comment "
.endif
.if defined(WITH_ICONS) || defined(WITH_GNOME)
PLIST_SUB+= X11=""
.else
PLIST_SUB+= X11="@comment "
.endif
do-extract:
@${MKDIR} ${WRKDIR}
cd ${WRKDIR}; rpm2cpio.pl ${DISTDIR}/${DISTNAME}${EXTRACT_SUFX} | \
${CPIO} -id --quiet
post-patch:
${REINPLACE_CMD} -e \
"s@/usr/lib@${PREFIX}/lib@" ${WRKSRC}/postinstall.sh
@${SED} 's|/usr/local|${PREFIX}|' \
< ${FILESDIR}/realplay > ${WRKSRC}/realplay
do-install:
${MKDIR} ${RADIR}
.for f in mimeinstall.sh pluginstall.sh postinstall.sh
${INSTALL_SCRIPT} ${WRKSRC}/${f} ${RADIR}
.endfor
.for f in realplay rpnp.so
${INSTALL_PROGRAM} ${WRKSRC}/${f} ${RADIR}
.endfor
.for f in LICENSE Mailcap Mime.types README app.kdelnk audiosig.rm \
firstrun.rm mime.kdelnk raclass.zip \
realplay.desktop rp7.xpm rp7doc.png rp7doc.xpm rp7mini.xpm
${INSTALL_DATA} ${WRKSRC}/${f} ${RADIR}
.endfor
.for d in Codecs Common Plugins
${MKDIR} ${RADIR}/${d}
${INSTALL_PROGRAM} ${WRKSRC}/${d}/*.so* ${RADIR}/${d}
.endfor
${MKDIR} ${RADIR}/Plugins/ExtResources
${INSTALL_PROGRAM} ${WRKSRC}/Plugins/ExtResources/* ${RADIR}/Plugins/ExtResources/
${INSTALL_PROGRAM} ${WRKDIR}/rv9/codecs/drv4.so.6.0 ${RADIR}/Codecs/
${INSTALL_PROGRAM} ${WRKDIR}/rv9/codecs/rv40.so.6.0 ${RADIR}/Codecs/
${INSTALL_DATA} ${WRKSRC}/LICENSE ${WRKSRC}/README ${RADIR}
${INSTALL_PROGRAM} ${WRKSRC}/realplay.bin ${RADIR}
${LN} -sf ${RADIR}/realplay ${RABINDIR}
.for dir in codecs common lib plugins share/default share/realplay
${MKDIR} ${RADIR}/${dir}
${INSTALL_DATA} ${WRKSRC}/${dir}/* ${RADIR}/${dir}
.endfor
.if exists(${PLUGINSDIR})
${LN} -sf ${RADIR}/raclass.zip ${PLUGINSDIR}
${LN} -sf ${RADIR}/rpnp.so ${PLUGINSDIR}
.if !defined(WITHOUT_NLS)
${MKDIR} ${RADIR}/share/locale
${CP} -R ${WRKSRC}/share/locale/* ${RADIR}/share/locale
${CHOWN} -R ${SHAREOWN}:${SHAREGRP} ${RADIR}/share/locale
.endif
.if !defined(NOPORTDOCS)
${MKDIR} ${PREFIX}/share/doc/RealPlayer8
${INSTALL_DATA} ${WRKSRC}/Help/readme ${PREFIX}/share/doc/RealPlayer8
${INSTALL_DATA} ${WRKSRC}/Help/realplay.htm ${PREFIX}/share/doc/RealPlayer8
${MKDIR} ${PREFIX}/share/doc/RealPlayer8/realplay
${INSTALL_DATA} ${WRKSRC}/Help/realplay/*.htm ${PREFIX}/share/doc/RealPlayer8/realplay
${MKDIR} ${PREFIX}/share/doc/RealPlayer8/realplay/pics
${INSTALL_DATA} ${WRKSRC}/Help/realplay/pics/* ${PREFIX}/share/doc/RealPlayer8/realplay/pics
${MKDIR} ${PLUGINSDIR}
${INSTALL_DATA} ${WRKSRC}/mozilla/* ${PLUGINSDIR}
${MKDIR} ${PREFIX}/bin
${INSTALL_SCRIPT} ${WRKSRC}/realplay ${PREFIX}/bin
.if defined(WITH_ICONS)
. for size in 16x16 32x32 48x48 192x192
${MKDIR} ${X11BASE}/share/icons/hicolor/${size}/apps
${INSTALL_DATA} ${WRKSRC}/share/icons/realplay_${size}.png \
${X11BASE}/share/icons/hicolor/${size}/apps
. endfor
. for size in 48x48 192x192
${MKDIR} ${X11BASE}/share/icons/hicolor/${size}/mimetypes
${INSTALL_DATA} ${WRKSRC}/share/icons/mime-*_${size}.png \
${X11BASE}/share/icons/hicolor/${size}/mimetypes
. endfor
.endif
post-install:
@${CAT} ${PKGMESSAGE}
.if defined(WITH_GNOME)
${MKDIR} ${X11BASE}/share/gnome/pixmaps
${INSTALL_DATA} ${WRKSRC}/share/realplay.png ${X11BASE}/share/gnome/pixmaps
${MKDIR} ${X11BASE}/share/gnome/applications
${INSTALL_DATA} ${WRKSRC}/share/realplay.desktop \
${X11BASE}/share/gnome/applications
${MKDIR} ${X11BASE}/share/gnome/application-registry
${INSTALL_DATA} ${WRKSRC}/share/realplay.applications \
${X11BASE}/share/gnome/application-registry
${MKDIR} ${X11BASE}/share/gnome/mime-info
${INSTALL_DATA} ${WRKSRC}/share/realplay.keys ${WRKSRC}/share/realplay.mime \
${X11BASE}/share/gnome/mime-info
.endif
.include <bsd.port.post.mk>

View File

@ -1,4 +1,2 @@
MD5 (rp8_linux20_libc6_i386_cs2_rpm) = d3fe263a8df91c17e6917f7ccd8288c6
SIZE (rp8_linux20_libc6_i386_cs2_rpm) = 5124844
MD5 (rv9_libc6_i386_cs2.tgz) = b2fd9f4148edfd8e2a714dd57634ae1b
SIZE (rv9_libc6_i386_cs2.tgz) = 814305
MD5 (linux-realplayer-10.0.1.rpm) = 1e5522aa0d27b90ea7d4cadd1a41dee1
SIZE (linux-realplayer-10.0.1.rpm) = 8180515

View File

@ -0,0 +1,4 @@
#!/bin/sh
export HELIX_LIBS="/usr/local/lib/RealPlayer"
exec "$HELIX_LIBS/realplay.bin" "$@"

View File

@ -1,10 +1,5 @@
This is the Linux version of RealPlayer 8.0 Basic from RealNetworks,
the player for RealAudio and RealVideo streaming broadcasts from the net.
It can be used as a standalone application, an external "helper" app from
Netscape, or a plugin in the Linux version of netscape.
The RealPlayer for Linux is built on top of the Helix Player for Linux
and includes support for several non-open source components including
RealAudio/RealVideo, MP3 etc.
Due to license restrictions, this package must be manually downloaded
from the RealNetworks web site:
http://www.real.com/player/
WWW: http://www.real.com/player/
WWW: https://player.helixcommunity.org/2004/unix/

View File

@ -1,22 +0,0 @@
************************************************************
HINT:
If you experience crashes, try setting the
audio driver option under
view->Preference->Performance->Audio Driver Options
to
"Enable support for old OSS drivers"
Take the following hint with a grain of salt:
After install goto ${PREFIX}/lib/RealPlayer8 directory
(as user) and launch:
./mimeinstall.sh - for install mime types for the mail and
browser
./pluginstall.sh - for install plugin for the Linux
Netscape
************************************************************

View File

@ -1,316 +1,229 @@
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/drv4.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/rv40.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/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/postinstall.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
%%PORTDOCS%%share/doc/RealPlayer8/readme
%%PORTDOCS%%share/doc/RealPlayer8/realplay.htm
%%PORTDOCS%%share/doc/RealPlayer8/realplay/aud_play.htm
%%PORTDOCS%%share/doc/RealPlayer8/realplay/buffered.htm
%%PORTDOCS%%share/doc/RealPlayer8/realplay/cinfobar.htm
%%PORTDOCS%%share/doc/RealPlayer8/realplay/clip_bar.htm
%%PORTDOCS%%share/doc/RealPlayer8/realplay/clipinfo.htm
%%PORTDOCS%%share/doc/RealPlayer8/realplay/clipwork.htm
%%PORTDOCS%%share/doc/RealPlayer8/realplay/compact.htm
%%PORTDOCS%%share/doc/RealPlayer8/realplay/con_pref.htm
%%PORTDOCS%%share/doc/RealPlayer8/realplay/configur.htm
%%PORTDOCS%%share/doc/RealPlayer8/realplay/cont_menu.htm
%%PORTDOCS%%share/doc/RealPlayer8/realplay/disp_hlp.htm
%%PORTDOCS%%share/doc/RealPlayer8/realplay/display.htm
%%PORTDOCS%%share/doc/RealPlayer8/realplay/distort.htm
%%PORTDOCS%%share/doc/RealPlayer8/realplay/error690.htm
%%PORTDOCS%%share/doc/RealPlayer8/realplay/error693.htm
%%PORTDOCS%%share/doc/RealPlayer8/realplay/error698.htm
%%PORTDOCS%%share/doc/RealPlayer8/realplay/file_menu.htm
%%PORTDOCS%%share/doc/RealPlayer8/realplay/filetype.htm
%%PORTDOCS%%share/doc/RealPlayer8/realplay/gen_pref.htm
%%PORTDOCS%%share/doc/RealPlayer8/realplay/glossary.htm
%%PORTDOCS%%share/doc/RealPlayer8/realplay/gotoreal.htm
%%PORTDOCS%%share/doc/RealPlayer8/realplay/help_menu.htm
%%PORTDOCS%%share/doc/RealPlayer8/realplay/how_to.htm
%%PORTDOCS%%share/doc/RealPlayer8/realplay/index.htm
%%PORTDOCS%%share/doc/RealPlayer8/realplay/inner.htm
%%PORTDOCS%%share/doc/RealPlayer8/realplay/intrface.htm
%%PORTDOCS%%share/doc/RealPlayer8/realplay/introduction.htm
%%PORTDOCS%%share/doc/RealPlayer8/realplay/jump_to.htm
%%PORTDOCS%%share/doc/RealPlayer8/realplay/keyshort.htm
%%PORTDOCS%%share/doc/RealPlayer8/realplay/loadclip.htm
%%PORTDOCS%%share/doc/RealPlayer8/realplay/manually.htm
%%PORTDOCS%%share/doc/RealPlayer8/realplay/menubar.htm
%%PORTDOCS%%share/doc/RealPlayer8/realplay/menus.htm
%%PORTDOCS%%share/doc/RealPlayer8/realplay/mute.htm
%%PORTDOCS%%share/doc/RealPlayer8/realplay/notice.htm
%%PORTDOCS%%share/doc/RealPlayer8/realplay/panels.htm
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pause.htm
%%PORTDOCS%%share/doc/RealPlayer8/realplay/per_pref.htm
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/DOCUMENTB.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/RealLogo.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/RealNetx.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/SHED-EXAMPLE.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/back.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/backbutt.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/bckbutt.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/brightness.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/btn_a.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/btn_b.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/btn_c.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/btn_d.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/btn_e.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/btn_f.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/btn_g.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/btn_h.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/btn_i.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/btn_j.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/btn_k.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/btn_l.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/btn_m.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/btn_n.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/btn_o.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/btn_p.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/btn_q.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/btn_r.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/btn_s.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/btn_t.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/btn_u.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/btn_v.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/btn_w.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/btn_x.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/btn_y.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/btn_z.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/callouts.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/channelstab.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/closed2.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/cnt0.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/cnt1.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/colorcontrol.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/compbutt.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/contrast.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/creditroll.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/cursor_hand.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/delete3.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/do-it.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/dropdwnarrow.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/eq-autogainadj.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/eq-on-off.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/eq-onbutton.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/eq-restoredefault.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/eq-slider3.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/eq-smarteq.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/equalizer3.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/favicon.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/favoritestab.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/forward.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/forwardbutt.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/fullplayershed.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/fulltoc.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/fwdbutt.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/g2-status.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/glossary.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/index.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/index_a.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/index_b.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/index_c.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/index_d.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/index_e.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/index_f.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/index_g.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/index_h.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/index_i.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/index_j.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/index_k.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/index_l.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/index_m.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/index_n.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/index_o.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/index_p.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/index_q.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/index_r.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/index_s.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/index_t.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/index_u.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/index_v.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/index_w.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/index_x.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/index_y.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/index_z.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/led-buffer-gauge.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/led-connect-wds.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/led-kbps-wds.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/led-live.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/led-nettraffic-red.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/led-nettrafficgreen.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/led-nettrafficyellow.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/led-pause.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/led-play.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/led-stop.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/led-surestreamdown.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/led-surestreamup.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/led-timeleft.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/led-timer.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/moreinfo.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/mute.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/mute3.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/newchannels.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/next.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/next0.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/next1.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/notice.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/optionsbutt.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/pause.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/play.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/plus2.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/pregain3.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/prev0.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/prev1.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/readme.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/real.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/realplay00000000.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/realplay00000013.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/realplay00000046.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/realplay00000071.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/realplay00090000.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/realplay00090001.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/recbutt.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/recbuttondwn.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/reverb3.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/roomsize3.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/saturation.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/savesettings3.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/scan.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/search.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/settings4.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/sharpness.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/shortcut.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/shorttoc.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/stationstab.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/stop.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/tint.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/unixplay.jpg
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/videocontrols3.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/volslider.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/zoom.gif
%%PORTDOCS%%share/doc/RealPlayer8/realplay/pics/zoomtest
%%PORTDOCS%%share/doc/RealPlayer8/realplay/play.htm
%%PORTDOCS%%share/doc/RealPlayer8/realplay/play_menu.htm
%%PORTDOCS%%share/doc/RealPlayer8/realplay/playclip.htm
%%PORTDOCS%%share/doc/RealPlayer8/realplay/position.htm
%%PORTDOCS%%share/doc/RealPlayer8/realplay/prx_pref.htm
%%PORTDOCS%%share/doc/RealPlayer8/realplay/real_wrk.htm
%%PORTDOCS%%share/doc/RealPlayer8/realplay/rollcred.htm
%%PORTDOCS%%share/doc/RealPlayer8/realplay/set_pref.htm
%%PORTDOCS%%share/doc/RealPlayer8/realplay/size.htm
%%PORTDOCS%%share/doc/RealPlayer8/realplay/slider.htm
%%PORTDOCS%%share/doc/RealPlayer8/realplay/snd_set.htm
%%PORTDOCS%%share/doc/RealPlayer8/realplay/stat_bar.htm
%%PORTDOCS%%share/doc/RealPlayer8/realplay/statist.htm
%%PORTDOCS%%share/doc/RealPlayer8/realplay/status.htm
%%PORTDOCS%%share/doc/RealPlayer8/realplay/stop.htm
%%PORTDOCS%%share/doc/RealPlayer8/realplay/streams.htm
%%PORTDOCS%%share/doc/RealPlayer8/realplay/sup_pref.htm
%%PORTDOCS%%share/doc/RealPlayer8/realplay/surestrm.htm
%%PORTDOCS%%share/doc/RealPlayer8/realplay/sync_snd.htm
%%PORTDOCS%%share/doc/RealPlayer8/realplay/takefive.htm
%%PORTDOCS%%share/doc/RealPlayer8/realplay/toc.htm
%%PORTDOCS%%share/doc/RealPlayer8/realplay/toc_full.htm
%%PORTDOCS%%share/doc/RealPlayer8/realplay/toc_menu.htm
%%PORTDOCS%%share/doc/RealPlayer8/realplay/toc_pref.htm
%%PORTDOCS%%share/doc/RealPlayer8/realplay/toc_strt.htm
%%PORTDOCS%%share/doc/RealPlayer8/realplay/toc_trbl.htm
%%PORTDOCS%%share/doc/RealPlayer8/realplay/trn_pref.htm
%%PORTDOCS%%share/doc/RealPlayer8/realplay/trn_set.htm
%%PORTDOCS%%share/doc/RealPlayer8/realplay/trouble.htm
%%PORTDOCS%%share/doc/RealPlayer8/realplay/use_real.htm
%%PORTDOCS%%share/doc/RealPlayer8/realplay/vid_play.htm
%%PORTDOCS%%share/doc/RealPlayer8/realplay/video.htm
%%PORTDOCS%%share/doc/RealPlayer8/realplay/view_menu.htm
%%PORTDOCS%%share/doc/RealPlayer8/realplay/volume.htm
%%PORTDOCS%%share/doc/RealPlayer8/realplay/win_ctrl.htm
%%PORTDOCS%%share/doc/RealPlayer8/realplay/zoom.htm
%%PORTDOCS%%share/doc/RealPlayer8/realplay/zoomhelp.htm
@unexec rm -f %D/lib/netscape-linux/plugins/raclass.zip %D/lib/netscape-linux/plugins/rpnp.so
@dirrm lib/RealPlayer8/Plugins/ExtResources
@dirrm lib/RealPlayer8/Plugins
@dirrm lib/RealPlayer8/Common
@dirrm lib/RealPlayer8/Codecs
@dirrm lib/RealPlayer8
%%PORTDOCS%%@dirrm share/doc/RealPlayer8/realplay/pics
%%PORTDOCS%%@dirrm share/doc/RealPlayer8/realplay
%%PORTDOCS%%@dirrm share/doc/RealPlayer8
lib/RealPlayer/LICENSE
lib/RealPlayer/README
lib/RealPlayer/codecs/amrn.so
lib/RealPlayer/codecs/amrw.so
lib/RealPlayer/codecs/atrc.so
lib/RealPlayer/codecs/colorcvt.so
lib/RealPlayer/codecs/cook.so
lib/RealPlayer/codecs/cvt1.so
lib/RealPlayer/codecs/drv1.so
lib/RealPlayer/codecs/drv2.so
lib/RealPlayer/codecs/drvc.so
lib/RealPlayer/codecs/raac.so
lib/RealPlayer/codecs/rv10.so
lib/RealPlayer/codecs/rv20.so
lib/RealPlayer/codecs/rv30.so
lib/RealPlayer/codecs/rv40.so
lib/RealPlayer/codecs/sipr.so
lib/RealPlayer/common/clntcore.so
lib/RealPlayer/common/clntxres.so
lib/RealPlayer/lib/libgtkhx.so
lib/RealPlayer/plugins/aacff.so
lib/RealPlayer/plugins/amrff.so
lib/RealPlayer/plugins/audplin.so
lib/RealPlayer/plugins/aufformat.so
lib/RealPlayer/plugins/authmgr.so
lib/RealPlayer/plugins/clbascauth.so
lib/RealPlayer/plugins/giffformat.so
lib/RealPlayer/plugins/gifrender.so
lib/RealPlayer/plugins/h263render.so
lib/RealPlayer/plugins/httpfsys.so
lib/RealPlayer/plugins/hxsdp.so
lib/RealPlayer/plugins/hxxml.so
lib/RealPlayer/plugins/jpgfformat.so
lib/RealPlayer/plugins/jpgrender.so
lib/RealPlayer/plugins/memfsys.so
lib/RealPlayer/plugins/mp3fformat.so
lib/RealPlayer/plugins/mp3metaff.so
lib/RealPlayer/plugins/mp3render.so
lib/RealPlayer/plugins/mp4arender.so
lib/RealPlayer/plugins/mp4fformat.so
lib/RealPlayer/plugins/oggfformat.so
lib/RealPlayer/plugins/pcmrend.so
lib/RealPlayer/plugins/pngfformat.so
lib/RealPlayer/plugins/pngrender.so
lib/RealPlayer/plugins/ramfformat.so
lib/RealPlayer/plugins/ramrender.so
lib/RealPlayer/plugins/rarender.so
lib/RealPlayer/plugins/rmfformat.so
lib/RealPlayer/plugins/rn5auth.so
lib/RealPlayer/plugins/rpfformat.so
lib/RealPlayer/plugins/rpgifplin.so
lib/RealPlayer/plugins/rpjpgplin.so
lib/RealPlayer/plugins/rppngplin.so
lib/RealPlayer/plugins/rprender.so
lib/RealPlayer/plugins/rtfformat.so
lib/RealPlayer/plugins/rtrender.so
lib/RealPlayer/plugins/rvxrender.so
lib/RealPlayer/plugins/sdpplin.so
lib/RealPlayer/plugins/smlfformat.so
lib/RealPlayer/plugins/smlrender.so
lib/RealPlayer/plugins/smmrender.so
lib/RealPlayer/plugins/smplfsys.so
lib/RealPlayer/plugins/swfformat.so
lib/RealPlayer/plugins/swfrender.so
lib/RealPlayer/plugins/theorarend.so
lib/RealPlayer/plugins/vidsite.so
lib/RealPlayer/plugins/vorbisrend.so
lib/RealPlayer/plugins/vsrcplin.so
lib/RealPlayer/plugins/vsrlocal.so
lib/RealPlayer/plugins/wbmpfformat.so
lib/RealPlayer/plugins/wbmprend.so
lib/RealPlayer/realplay.bin
lib/RealPlayer/share/default/clipinfo.png
lib/RealPlayer/share/default/congestion.png
lib/RealPlayer/share/default/fastforward.png
lib/RealPlayer/share/default/next.png
lib/RealPlayer/share/default/pause.png
lib/RealPlayer/share/default/play.png
lib/RealPlayer/share/default/prefs_advanced.png
lib/RealPlayer/share/default/prefs_connection.png
lib/RealPlayer/share/default/prefs_content.png
lib/RealPlayer/share/default/prefs_hardware.png
lib/RealPlayer/share/default/prefs_internet.png
lib/RealPlayer/share/default/prefs_mediatypes.png
lib/RealPlayer/share/default/prefs_playback.png
lib/RealPlayer/share/default/prefs_proxy.png
lib/RealPlayer/share/default/prefs_raw.png
lib/RealPlayer/share/default/prefs_transport.png
lib/RealPlayer/share/default/previous.png
lib/RealPlayer/share/default/rewind.png
lib/RealPlayer/share/default/stop.png
lib/RealPlayer/share/default/tactoggle.png
lib/RealPlayer/share/default/volume_high.png
lib/RealPlayer/share/default/volume_low.png
lib/RealPlayer/share/default/volume_mid.png
lib/RealPlayer/share/default/volume_mute.png
lib/RealPlayer/share/default/volume_off.png
lib/RealPlayer/share/default/volume_popup_high.png
lib/RealPlayer/share/default/volume_popup_low.png
lib/RealPlayer/share/default/volume_popup_mid.png
lib/RealPlayer/share/default/volume_popup_mute.png
lib/RealPlayer/share/default/volume_popup_off.png
%%NLS%%lib/RealPlayer/share/locale/de/LICENSE
%%NLS%%lib/RealPlayer/share/locale/de/README
%%NLS%%lib/RealPlayer/share/locale/de/player.mo
%%NLS%%lib/RealPlayer/share/locale/de/widget.mo
%%NLS%%lib/RealPlayer/share/locale/es/LICENSE
%%NLS%%lib/RealPlayer/share/locale/es/README
%%NLS%%lib/RealPlayer/share/locale/es/player.mo
%%NLS%%lib/RealPlayer/share/locale/es/widget.mo
%%NLS%%lib/RealPlayer/share/locale/fr/LICENSE
%%NLS%%lib/RealPlayer/share/locale/fr/README
%%NLS%%lib/RealPlayer/share/locale/fr/player.mo
%%NLS%%lib/RealPlayer/share/locale/fr/widget.mo
%%NLS%%lib/RealPlayer/share/locale/it/LICENSE
%%NLS%%lib/RealPlayer/share/locale/it/README
%%NLS%%lib/RealPlayer/share/locale/it/player.mo
%%NLS%%lib/RealPlayer/share/locale/it/widget.mo
%%NLS%%lib/RealPlayer/share/locale/ja/LICENSE
%%NLS%%lib/RealPlayer/share/locale/ja/README
%%NLS%%lib/RealPlayer/share/locale/ja/player.mo
%%NLS%%lib/RealPlayer/share/locale/ja/widget.mo
%%NLS%%lib/RealPlayer/share/locale/ko/LICENSE
%%NLS%%lib/RealPlayer/share/locale/ko/README
%%NLS%%lib/RealPlayer/share/locale/ko/player.mo
%%NLS%%lib/RealPlayer/share/locale/ko/widget.mo
%%NLS%%lib/RealPlayer/share/locale/pt_BR/LICENSE
%%NLS%%lib/RealPlayer/share/locale/pt_BR/README
%%NLS%%lib/RealPlayer/share/locale/pt_BR/player.mo
%%NLS%%lib/RealPlayer/share/locale/pt_BR/widget.mo
%%NLS%%lib/RealPlayer/share/locale/zh_CN/LICENSE
%%NLS%%lib/RealPlayer/share/locale/zh_CN/README
%%NLS%%lib/RealPlayer/share/locale/zh_CN/player.mo
%%NLS%%lib/RealPlayer/share/locale/zh_CN/widget.mo
%%NLS%%lib/RealPlayer/share/locale/zh_TW/LICENSE
%%NLS%%lib/RealPlayer/share/locale/zh_TW/README
%%NLS%%lib/RealPlayer/share/locale/zh_TW/player.mo
%%NLS%%lib/RealPlayer/share/locale/zh_TW/widget.mo
lib/RealPlayer/share/realplay/embedded_logo.png
lib/RealPlayer/share/realplay/icon.png
lib/RealPlayer/share/realplay/logo.png
lib/RealPlayer/share/realplay/prefs_general.png
lib/RealPlayer/share/realplay/setup_title.png
lib/RealPlayer/share/realplay/setup_welcome.png
lib/linux-mozilla/plugins/nphelix.so
lib/linux-mozilla/plugins/nphelix.xpt
@dirrm lib/RealPlayer/codecs
@dirrm lib/RealPlayer/common
@dirrm lib/RealPlayer/lib
@dirrm lib/RealPlayer/plugins
@dirrm lib/RealPlayer/share/default
@dirrm lib/RealPlayer/share/locale/de
@dirrm lib/RealPlayer/share/locale/es
@dirrm lib/RealPlayer/share/locale/fr
@dirrm lib/RealPlayer/share/locale/it
@dirrm lib/RealPlayer/share/locale/ja
@dirrm lib/RealPlayer/share/locale/ko
@dirrm lib/RealPlayer/share/locale/pt_BR
@dirrm lib/RealPlayer/share/locale/zh_CN
@dirrm lib/RealPlayer/share/locale/zh_TW
@dirrm lib/RealPlayer/share/locale
@dirrm lib/RealPlayer/share/realplay
@dirrm lib/RealPlayer/share
@dirrm lib/RealPlayer
@unexec rmdir %D/lib/linux-mozilla/plugins 2>/dev/null || true
%%X11%%@cwd %%X11BASE%%
%%GNOME%%share/gnome/application-registry/realplay.applications
%%GNOME%%share/gnome/applications/realplay.desktop
%%GNOME%%share/gnome/mime-info/realplay.keys
%%GNOME%%share/gnome/mime-info/realplay.mime
%%GNOME%%share/gnome/pixmaps/realplay.png
%%ICONS%%share/icons/hicolor/16x16/apps/realplay_16x16.png
%%ICONS%%share/icons/hicolor/192x192/apps/realplay_192x192.png
%%ICONS%%share/icons/hicolor/192x192/mimetypes/mime-application-generic_192x192.png
%%ICONS%%share/icons/hicolor/192x192/mimetypes/mime-application-ogg_192x192.png
%%ICONS%%share/icons/hicolor/192x192/mimetypes/mime-application-ram_192x192.png
%%ICONS%%share/icons/hicolor/192x192/mimetypes/mime-application-rm_192x192.png
%%ICONS%%share/icons/hicolor/192x192/mimetypes/mime-application-rpm_192x192.png
%%ICONS%%share/icons/hicolor/192x192/mimetypes/mime-application-smil_192x192.png
%%ICONS%%share/icons/hicolor/192x192/mimetypes/mime-audio-aiff_192x192.png
%%ICONS%%share/icons/hicolor/192x192/mimetypes/mime-audio-au_192x192.png
%%ICONS%%share/icons/hicolor/192x192/mimetypes/mime-audio-generic_192x192.png
%%ICONS%%share/icons/hicolor/192x192/mimetypes/mime-audio-mp3_192x192.png
%%ICONS%%share/icons/hicolor/192x192/mimetypes/mime-audio-mp4_192x192.png
%%ICONS%%share/icons/hicolor/192x192/mimetypes/mime-audio-ogg_192x192.png
%%ICONS%%share/icons/hicolor/192x192/mimetypes/mime-audio-ra_192x192.png
%%ICONS%%share/icons/hicolor/192x192/mimetypes/mime-audio-wav_192x192.png
%%ICONS%%share/icons/hicolor/192x192/mimetypes/mime-text-realtext_192x192.png
%%ICONS%%share/icons/hicolor/192x192/mimetypes/mime-video-avi_192x192.png
%%ICONS%%share/icons/hicolor/192x192/mimetypes/mime-video-generic_192x192.png
%%ICONS%%share/icons/hicolor/192x192/mimetypes/mime-video-mov_192x192.png
%%ICONS%%share/icons/hicolor/192x192/mimetypes/mime-video-ogg_192x192.png
%%ICONS%%share/icons/hicolor/192x192/mimetypes/mime-video-rv_192x192.png
%%ICONS%%share/icons/hicolor/192x192/mimetypes/mime-video-swf_192x192.png
%%ICONS%%share/icons/hicolor/32x32/apps/realplay_32x32.png
%%ICONS%%share/icons/hicolor/48x48/apps/realplay_48x48.png
%%ICONS%%share/icons/hicolor/48x48/mimetypes/mime-application-generic_48x48.png
%%ICONS%%share/icons/hicolor/48x48/mimetypes/mime-application-ogg_48x48.png
%%ICONS%%share/icons/hicolor/48x48/mimetypes/mime-application-ram_48x48.png
%%ICONS%%share/icons/hicolor/48x48/mimetypes/mime-application-rpm_48x48.png
%%ICONS%%share/icons/hicolor/48x48/mimetypes/mime-application-rm_48x48.png
%%ICONS%%share/icons/hicolor/48x48/mimetypes/mime-application-smil_48x48.png
%%ICONS%%share/icons/hicolor/48x48/mimetypes/mime-audio-aiff_48x48.png
%%ICONS%%share/icons/hicolor/48x48/mimetypes/mime-audio-au_48x48.png
%%ICONS%%share/icons/hicolor/48x48/mimetypes/mime-audio-generic_48x48.png
%%ICONS%%share/icons/hicolor/48x48/mimetypes/mime-audio-mp3_48x48.png
%%ICONS%%share/icons/hicolor/48x48/mimetypes/mime-audio-mp4_48x48.png
%%ICONS%%share/icons/hicolor/48x48/mimetypes/mime-audio-ogg_48x48.png
%%ICONS%%share/icons/hicolor/48x48/mimetypes/mime-audio-ra_48x48.png
%%ICONS%%share/icons/hicolor/48x48/mimetypes/mime-audio-wav_48x48.png
%%ICONS%%share/icons/hicolor/48x48/mimetypes/mime-text-realtext_48x48.png
%%ICONS%%share/icons/hicolor/48x48/mimetypes/mime-video-avi_48x48.png
%%ICONS%%share/icons/hicolor/48x48/mimetypes/mime-video-generic_48x48.png
%%ICONS%%share/icons/hicolor/48x48/mimetypes/mime-video-mov_48x48.png
%%ICONS%%share/icons/hicolor/48x48/mimetypes/mime-video-ogg_48x48.png
%%ICONS%%share/icons/hicolor/48x48/mimetypes/mime-video-rv_48x48.png
%%ICONS%%share/icons/hicolor/48x48/mimetypes/mime-video-swf_48x48.png
%%GNOME%%@unexec rmdir %D/share/gnome/application-registry 2>/dev/null || true
%%GNOME%%@unexec rmdir %D/share/gnome/applications 2>/dev/null || true
%%GNOME%%@unexec rmdir %D/share/gnome/mime-info 2>/dev/null || true
%%GNOME%%@unexec rmdir %D/share/gnome/pixmaps 2>/dev/null || true
%%ICONS%%@unexec rmdir %D/share/icons/hicolor/48x48/apps 2>/dev/null || true
%%ICONS%%@unexec rmdir %D/share/icons/hicolor/48x48/mimetypes 2>/dev/null || true
%%ICONS%%@unexec rmdir %D/share/icons/hicolor/48x48 2>/dev/null || true
%%ICONS%%@unexec rmdir %D/share/icons/hicolor/192x192/apps 2>/dev/null || true
%%ICONS%%@unexec rmdir %D/share/icons/hicolor/192x192/mimetypes 2>/dev/null || true
%%ICONS%%@unexec rmdir %D/share/icons/hicolor/192x192 2>/dev/null || true
%%ICONS%%@unexec rmdir %D/share/icons/hicolor 2>/dev/null || true