blob: 0db2520d55cd408a4e60fcadfe46dc9276fe8390 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/realplayer/realplayer-11.0.1.1056-r2.ebuild,v 1.1 2008/10/29 17:32:24 beandog Exp $
inherit nsplugins eutils rpm
MY_PN="RealPlayer"
DESCRIPTION="Real Media Player"
HOMEPAGE="http://www.real.com/ http://player.helixcommunity.org/"
SRC_URI="http://forms.real.com/real/player/download.html?f=unix/RealPlayer11GOLD.rpm"
RESTRICT="mirror strip test"
LICENSE="HBRL"
SLOT="0"
KEYWORDS="-* ~amd64 ~x86"
IUSE="nsplugin"
RDEPEND="=media-libs/realcodecs-${PV}*
x86? (
>=dev-libs/glib-2
>=x11-libs/pango-1.2
>=x11-libs/gtk+-2.2
=virtual/libstdc++-3.3*
)
amd64? (
app-emulation/emul-linux-x86-gtklibs
app-emulation/emul-linux-x86-compat
)"
QA_TEXTRELS="opt/RealPlayer/codecs/raac.so
opt/RealPlayer/codecs/colorcvt.so
opt/RealPlayer/codecs/drv2.so
opt/RealPlayer/codecs/drvc.so
opt/RealPlayer/plugins/theorarend.so
opt/RealPlayer/plugins/vorbisrend.so
opt/RealPlayer/plugins/swfrender.so
opt/RealPlayer/plugins/oggfformat.so"
QA_EXECSTACK="opt/RealPlayer/plugins/swfrender.so
opt/RealPlayer/plugins/vidsite.so
opt/RealPlayer/codecs/raac.so
opt/RealPlayer/codecs/drvc.so
opt/RealPlayer/codecs/drv2.so
opt/RealPlayer/codecs/colorcvt.so
opt/RealPlayer/codecs/atrc.so"
QA_DT_HASH="opt/.*so opt/.*/realplay.bin"
S="${WORKDIR}/opt/real/${MY_PN}"
pkg_nofetch() {
einfo "Download RealPlayer manually from Real's website at"
einfo ${HOMEPAGE}
einfo ""
einfo "Choose Linux/x86 Releases: RealPlayer 10.0.9 Gold: RPM"
einfo "https://helixcommunity.org/projects/player/files/download/2479"
einfo ""
einfo "Then place the file ${SRC_URI}"
einfo "into ${DISTDIR} and restart the emerge."
}
pkg_setup() {
# This is a binary x86 package => ABI=x86
# Please keep this in future versions
# Danny van Dyk <kugelfang@gentoo.org> 2005/03/26
has_multilib_profile && ABI="x86"
}
src_unpack() {
rpm_src_unpack
cd "${S}"
epatch "${FILESDIR}"/${PN}-desktop.patch
}
src_install() {
dodir /opt/${MY_PN}
cd "${S}"
rm "${S}/share/distcode"
# Make them executable, Bug #233415
exeinto "/opt/${MY_PN}/"
doexe realplay realplay.bin
insinto "/opt/${MY_PN}/"
for x in common mozilla plugins share; do
doins -r "${S}/${x}"
done;
domenu "${S}/share/realplay.desktop"
for res in 16 32 48 192; do
insinto /usr/share/icons/hicolor/${res}x${res}/apps
newins "${S}/share/icons/realplay_${res}x${res}.png" \
realplay.png
done
# mozilla plugin
if use nsplugin ; then
exeinto /opt/netscape/plugins
doexe "${S}/mozilla/nphelix.so"
inst_plugin /opt/netscape/plugins/nphelix.so
insinto /opt/netscape/plugins
doins "${S}/mozilla/nphelix.xpt"
inst_plugin /opt/netscape/plugins/nphelix.xpt
fi
dodir /usr/bin
dosym "/opt/${MY_PN}/realplay" /usr/bin/realplay
# Language resources
cd "${D}"/opt/RealPlayer/share/locale
for LC in *; do
mkdir -p "${D}"/usr/share/locale/${LC}/LC_MESSAGES
dosym /opt/RealPlayer/share/locale/${LC}/player.mo /usr/share/locale/${LC}/LC_MESSAGES/realplay.mo
dosym /opt/RealPlayer/share/locale/${LC}/widget.mo /usr/share/locale/${LC}/LC_MESSAGES/libgtkhx.mo
done
cd "${S}"
dodoc README
dohtml share/hxplay_help.html share/tigris.css
}
|