blob: 34120077431d18fef8fb3bdd68f3e275f24d989d (
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
124
125
126
127
128
129
130
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-im/skype/skype-2.2.0.35-r1.ebuild,v 1.5 2012/02/29 13:07:46 sping Exp $
EAPI=4
inherit gnome2-utils eutils qt4-r2 pax-utils
SFILENAME=${PN}_static-${PV}.tar.bz2
DFILENAME=${P}.tar.bz2
DESCRIPTION="A P2P-VoiceIP client."
HOMEPAGE="http://www.skype.com/"
SRC_URI="!qt-static? ( http://download.skype.com/linux/${DFILENAME} )
qt-static? ( http://download.skype.com/linux/${SFILENAME} )"
LICENSE="skype-eula"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="qt-static pax_kernel"
RESTRICT="mirror strip" # Bug 299368
EMUL_VER=20091231
RDEPEND="
amd64? ( >=app-emulation/emul-linux-x86-xlibs-${EMUL_VER}
>=app-emulation/emul-linux-x86-baselibs-${EMUL_VER}
>=app-emulation/emul-linux-x86-soundlibs-${EMUL_VER}
>=app-emulation/emul-linux-x86-opengl-${EMUL_VER}
!qt-static? ( >=app-emulation/emul-linux-x86-qtlibs-${EMUL_VER} ) )
x86? ( >=media-libs/alsa-lib-1.0.11
x11-libs/libXScrnSaver
x11-libs/libXv
qt-static? ( media-libs/alsa-lib
x11-libs/libXv
x11-libs/libXScrnSaver
x11-libs/libSM
x11-libs/libICE
x11-libs/libXi
x11-libs/libXrender
x11-libs/libXrandr
media-libs/freetype
media-libs/fontconfig
x11-libs/libXext
x11-libs/libX11
dev-libs/glib:2 )
!qt-static? ( media-libs/alsa-lib
x11-libs/libXv
x11-libs/libXScrnSaver
x11-libs/qt-gui:4[accessibility,dbus]
x11-libs/qt-dbus:4
x11-libs/libXext
x11-libs/libX11 ) )
virtual/ttf-fonts"
# Required for lrelease command at buildtime
DEPEND="!qt-static? ( x11-libs/qt-core:4 )"
QA_EXECSTACK="opt/skype/skype"
QA_WX_LOAD="opt/skype/skype"
QA_DT_HASH="opt/skype/skype"
# QA_PRESTRIPPED="opt/skype/skype"
pkg_setup() {
:
}
src_unpack() {
unpack ${A} || die
[[ ! -d "${S}" ]] && {
mv skype* "${S}" || die
}
}
src_install() {
exeinto /opt/skype
doexe skype
fowners root:audio /opt/skype/skype
make_wrapper skype ./skype /opt/skype /opt/skype
insinto /opt/skype/sounds
doins sounds/*.wav
if ! use qt-static; then
insinto /etc/dbus-1/system.d
doins skype.conf
fi
if ! use qt-static; then
lrelease lang/*.ts
fi
insinto /opt/skype/lang
doins lang/*.qm
insinto /opt/skype/avatars
doins avatars/*.png
local res
for res in 16 32 48; do
insinto /usr/share/icons/hicolor/${res}x${res}/apps
newins icons/SkypeBlue_${res}x${res}.png skype.png
done
dodoc README
make_desktop_entry skype "Skype VoIP" skype "Network;InstantMessaging;Telephony"
dosym /opt/skype /usr/share/skype #Fix for disabled sound notification
if use pax_kernel; then
pax-mark Cm "${D}"/opt/skype/skype || die
eqawarn "You have set USE=pax_kernel meaning that you intend to run"
eqawarn "skype under a PaX enabled kernel. To do so, we must modify"
eqawarn "the skype binary itself and this *may* lead to breakage! If"
eqawarn "you suspect that skype is being broken by this modification,"
eqawarn "please open a bug."
fi
}
pkg_preinst() {
gnome2_icon_savelist
}
pkg_postinst() {
gnome2_icon_cache_update
}
pkg_postrm() {
gnome2_icon_cache_update
}
|