diff options
author | mezz <mezz@df743ca5-7f9a-e211-a948-0013205c9059> | 2006-08-02 11:50:45 +0800 |
---|---|---|
committer | mezz <mezz@df743ca5-7f9a-e211-a948-0013205c9059> | 2006-08-02 11:50:45 +0800 |
commit | 33f250a3cf1b152b258672d4093076dba4bc8545 (patch) | |
tree | d849de3c90b68f0b00003b47743a7df60d2dc9f3 | |
parent | f754cba34c28e01db6b8d24dd2f16a59f607d8e6 (diff) | |
download | marcuscom-ports-33f250a3cf1b152b258672d4093076dba4bc8545.tar marcuscom-ports-33f250a3cf1b152b258672d4093076dba4bc8545.tar.gz marcuscom-ports-33f250a3cf1b152b258672d4093076dba4bc8545.tar.bz2 marcuscom-ports-33f250a3cf1b152b258672d4093076dba4bc8545.tar.lz marcuscom-ports-33f250a3cf1b152b258672d4093076dba4bc8545.tar.xz marcuscom-ports-33f250a3cf1b152b258672d4093076dba4bc8545.tar.zst marcuscom-ports-33f250a3cf1b152b258672d4093076dba4bc8545.zip |
X11BASE -> LOCALBASE, GNOME stuff live in LOCALBASE. Bump the PORTREVISION.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@6939 df743ca5-7f9a-e211-a948-0013205c9059
-rw-r--r-- | multimedia/linux-realplayer/Makefile | 134 | ||||
-rw-r--r-- | multimedia/linux-realplayer/distinfo | 6 | ||||
-rwxr-xr-x | multimedia/linux-realplayer/files/realplay | 4 | ||||
-rw-r--r-- | multimedia/linux-realplayer/pkg-descr | 5 | ||||
-rw-r--r-- | multimedia/linux-realplayer/pkg-plist | 244 |
5 files changed, 393 insertions, 0 deletions
diff --git a/multimedia/linux-realplayer/Makefile b/multimedia/linux-realplayer/Makefile new file mode 100644 index 000000000..34cb710d9 --- /dev/null +++ b/multimedia/linux-realplayer/Makefile @@ -0,0 +1,134 @@ +# New ports collection makefile for: linux-realplayer +# Date created: 31 January 1999 +# Whom: Kris Kennaway <kkennawa@physics.adelaide.edu.au> +# +# $FreeBSD$ +# + +PORTNAME= linux-realplayer +DISTVERSION= 10.0.7.785-20060201 +PORTREVISION= 1 +CATEGORIES= multimedia audio linux +MASTER_SITES= https://helixcommunity.org/download.php/1917/:player \ + ftp://rpmfind.net/linux/sourceforge/m/mp/mplayer-tru/:codecs +DISTFILES= RealPlayer-${DISTVERSION}.i586.rpm:player \ + mplayer-codecs-linux-real-20040626-1.i386.rpm:codecs + +MAINTAINER= ports@FreeBSD.org +COMMENT= Linux RealPlayer 10 from RealNetworks + +EXTRACT_DEPENDS= rpm2cpio.pl:${PORTSDIR}/archivers/rpm2cpio +RUN_DEPENDS= ${LINUXBASE}/usr/lib/libgtk-x11-2.0.so.0:${PORTSDIR}/x11-toolkits/linux-gtk2 + +WRKSRC= ${WRKDIR}/usr/local/RealPlayer +ONLY_FOR_ARCHS= i386 amd64 +USE_LINUX= yes +USE_X_PREFIX= yes +RESTRICTED= Redistribution not allowed +NO_BUILD= yes + +RADIR= ${PREFIX}/lib/RealPlayer +PLUGINSDIR= ${PREFIX}/lib/linux-mozilla/plugins +RABINDIR= ${PREFIX}/bin + +.if defined(WITHOUT_NLS) +PLIST_SUB+= NLS="@comment " +.else +PLIST_SUB+= NLS="" +.endif + +.include <bsd.port.pre.mk> + +.if exists(${LOCALBASE}/share/icons) +WITH_ICONS= yes +PLIST_SUB+= ICONS="" +.else +PLIST_SUB+= ICONS="@comment " +.endif + +.if exists(${LOCALBASE}/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} + @set -x; for f in ${_DISTFILES}; do\ + cd ${WRKDIR}; rpm2cpio.pl ${DISTDIR}/$$f | \ + ${CPIO} -id --quiet; \ + done + +post-patch: + @${SED} 's|/usr/local|${PREFIX}|' \ + < ${FILESDIR}/realplay > ${WRKSRC}/realplay + +do-install: + @${MKDIR} ${RADIR} + ${INSTALL_DATA} ${WRKSRC}/LICENSE ${WRKSRC}/README ${RADIR} + ${INSTALL_PROGRAM} ${WRKSRC}/realplay.bin ${RADIR} + ${BRANDELF} -t Linux ${RADIR}/realplay.bin +.for dir in codecs common lib plugins share/default share/realplay + @${MKDIR} ${RADIR}/${dir} + ${INSTALL_DATA} ${WRKSRC}/${dir}/* ${RADIR}/${dir} +.endfor + +# Extra codecs from the RealPlayer-9 -- no longer shipped by Real, +# but still in use by major content providers, such as Amazon: +.for c in dnet ddnt + ${INSTALL_DATA} ${WRKDIR}/usr/lib/codecs/$c.so.6.0 \ + ${RADIR}/codecs/ + ${LN} -s $c.so.6.0 ${RADIR}/codecs/$c.so +.endfor + +.if !defined(WITHOUT_NLS) + @${MKDIR} ${RADIR}/share/locale + ${CP} -R ${WRKSRC}/share/locale/* ${RADIR}/share/locale + ${CHOWN} -R ${SHAREOWN}:${SHAREGRP} ${RADIR}/share/locale +.endif + + @${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} ${LOCALBASE}/share/icons/hicolor/${size}/apps + ${INSTALL_DATA} ${WRKSRC}/share/icons/realplay_${size}.png \ + ${LOCALBASE}/share/icons/hicolor/${size}/apps +. endfor +. for size in 48x48 192x192 + @${MKDIR} ${LOCALBASE}/share/icons/hicolor/${size}/mimetypes + ${INSTALL_DATA} ${WRKSRC}/share/icons/mime-*_${size}.png \ + ${LOCALBASE}/share/icons/hicolor/${size}/mimetypes +. endfor +.endif + +.if defined(WITH_GNOME) + @${MKDIR} ${LOCALBASE}/share/gnome/pixmaps + ${INSTALL_DATA} ${WRKSRC}/share/realplay.png \ + ${LOCALBASE}/share/gnome/pixmaps + + @${MKDIR} ${LOCALBASE}/share/gnome/applications + ${INSTALL_DATA} ${WRKSRC}/share/realplay.desktop \ + ${LOCALBASE}/share/gnome/applications + + @${MKDIR} ${LOCALBASE}/share/gnome/application-registry + ${INSTALL_DATA} ${WRKSRC}/share/realplay.applications \ + ${LOCALBASE}/share/gnome/application-registry + + @${MKDIR} ${LOCALBASE}/share/gnome/mime-info + ${INSTALL_DATA} ${WRKSRC}/share/realplay.keys ${WRKSRC}/share/realplay.mime \ + ${LOCALBASE}/share/gnome/mime-info +.endif + +.include <bsd.port.post.mk> diff --git a/multimedia/linux-realplayer/distinfo b/multimedia/linux-realplayer/distinfo new file mode 100644 index 000000000..4775dbad4 --- /dev/null +++ b/multimedia/linux-realplayer/distinfo @@ -0,0 +1,6 @@ +MD5 (RealPlayer-10.0.7.785-20060201.i586.rpm) = 3de2e377fd6f00ea1de8f3016469fe5e +SHA256 (RealPlayer-10.0.7.785-20060201.i586.rpm) = 664da00b021d722ef66c938a0022fcb236be42b198efb04fc815e103746548d7 +SIZE (RealPlayer-10.0.7.785-20060201.i586.rpm) = 6650006 +MD5 (mplayer-codecs-linux-real-20040626-1.i386.rpm) = c4126cba33257f4d78907c7d254b8200 +SHA256 (mplayer-codecs-linux-real-20040626-1.i386.rpm) = 338c8e595a95c9ab5192e4fbd4e5e86faf9a6040fab51381d53950ddad75c2e9 +SIZE (mplayer-codecs-linux-real-20040626-1.i386.rpm) = 595298 diff --git a/multimedia/linux-realplayer/files/realplay b/multimedia/linux-realplayer/files/realplay new file mode 100755 index 000000000..af83d450d --- /dev/null +++ b/multimedia/linux-realplayer/files/realplay @@ -0,0 +1,4 @@ +#!/bin/sh + +export HELIX_LIBS="/usr/local/lib/RealPlayer" +exec "$HELIX_LIBS/realplay.bin" "$@" diff --git a/multimedia/linux-realplayer/pkg-descr b/multimedia/linux-realplayer/pkg-descr new file mode 100644 index 000000000..e296db31f --- /dev/null +++ b/multimedia/linux-realplayer/pkg-descr @@ -0,0 +1,5 @@ +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. + +WWW: https://player.helixcommunity.org/ diff --git a/multimedia/linux-realplayer/pkg-plist b/multimedia/linux-realplayer/pkg-plist new file mode 100644 index 000000000..2324fa7c2 --- /dev/null +++ b/multimedia/linux-realplayer/pkg-plist @@ -0,0 +1,244 @@ +bin/realplay +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/ddnt.so.6.0 +lib/RealPlayer/codecs/dnet.so.6.0 +lib/RealPlayer/codecs/ddnt.so +lib/RealPlayer/codecs/dnet.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/hi/LICENSE +%%NLS%%lib/RealPlayer/share/locale/hi/README +%%NLS%%lib/RealPlayer/share/locale/hi/player.mo +%%NLS%%lib/RealPlayer/share/locale/hi/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/pl/LICENSE +%%NLS%%lib/RealPlayer/share/locale/pl/README +%%NLS%%lib/RealPlayer/share/locale/pl/player.mo +%%NLS%%lib/RealPlayer/share/locale/pl/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/hi +@dirrm lib/RealPlayer/share/locale/it +@dirrm lib/RealPlayer/share/locale/ja +@dirrm lib/RealPlayer/share/locale/ko +@dirrm lib/RealPlayer/share/locale/pl +@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 +@dirrmtry lib/linux-mozilla/plugins +@dirrmtry lib/linux-mozilla +%%X11%%@cwd %%LOCALBASE%% +%%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%%@dirrmtry share/gnome/application-registry +%%GNOME%%@dirrmtry share/gnome/applications +%%GNOME%%@dirrmtry share/gnome/mime-info +%%GNOME%%@dirrmtry share/gnome/pixmaps +%%ICONS%%@dirrmtry share/icons/hicolor/48x48/apps +%%ICONS%%@dirrmtry share/icons/hicolor/48x48/mimetypes +%%ICONS%%@dirrmtry share/icons/hicolor/48x48 +%%ICONS%%@dirrmtry share/icons/hicolor/192x192/apps +%%ICONS%%@dirrmtry share/icons/hicolor/192x192/mimetypes +%%ICONS%%@dirrmtry share/icons/hicolor/192x192 +%%ICONS%%@dirrmtry share/icons/hicolor |