blob: 566d9d607b84f73142ab669b98b6bc9f9b83b8ab (
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
131
132
133
134
|
# Copyright 1999-2024 Martin V\"ath and others
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit desktop pax-utils unpacker wrapper xdg-utils
DESCRIPTION="A 3D interface to the planet"
HOMEPAGE="https://www.google.com/earth/desktop/"
SRC_URI="https://dl.google.com/dl/linux/direct/google-earth-pro-stable_${PV}_amd64.deb"
LICENSE="googleearth GPL-2"
SLOT="0"
KEYWORDS="~amd64"
RESTRICT="mirror splitdebug"
IUSE=""
QA_PREBUILT="*"
RDEPEND="
dev-libs/glib:2
dev-libs/nspr
media-libs/fontconfig
media-libs/freetype
media-libs/gstreamer:1.0=
media-libs/gst-plugins-base:1.0=
net-libs/libproxy
net-misc/curl
sys-devel/gcc[cxx]
sys-libs/zlib
virtual/glu
virtual/opengl
virtual/ttf-fonts
x11-libs/libICE
x11-libs/libSM
x11-libs/libX11
x11-libs/libXi
x11-libs/libXext
x11-libs/libXrender
x11-libs/libXau
x11-libs/libXdmcp"
# sci-libs/gdal-1*
BDEPEND="dev-util/patchelf"
S=${WORKDIR}/opt/google/earth/pro
src_unpack() {
# default src_unpack fails with deb2targz installed, also this unpacks the data.tar.lzma as well
unpack_deb ${A}
}
src_prepare() {
# we have no ld-lsb.so.3 symlink
# thanks to Nathan Phillip Brink <ohnobinki@ohnopublishing.net> for suggesting patchelf
einfo "running patchelf"
patchelf --set-interpreter /$(get_libdir)/ld-linux$(usex amd64 "-x86-64" "").so.2 ${PN}-bin || die "patchelf failed"
# Set RPATH for preserve-libs handling (bug #265372).
local x
for x in * ; do
# Use \x7fELF header to separate ELF executables and libraries
[[ -f ${x} && $(od -t x1 -N 4 "${x}") == *"7f 45 4c 46"* ]] || continue
chmod u+w "${x}" || die
[[ ${x} != libicudata.so.* ]] || continue
patchelf --set-rpath '$ORIGIN' "${x}" || \
die "patchelf failed on ${x}"
done
for x in plugins/*.so ; do
[[ -f ${x} ]] || continue
chmod u+w "${x}" || die
patchelf --set-rpath '$ORIGIN/..' "${x}" || \
die "patchelf failed on ${x}"
done
for x in plugins/imageformats/*.so ; do
[[ -f ${x} ]] || continue
chmod u+w "${x}" || die
patchelf --set-rpath '$ORIGIN/../..' "${x}" || \
die "patchelf failed on ${x}"
done
eapply -p0 "${FILESDIR}"/${PN}-${PV%%.*}-pro-desktopfile.patch
default
}
src_install() {
make_wrapper ${PN} ./${PN} /opt/${PN} .
insinto /usr/share/mime/packages
doins "${FILESDIR}/${PN}-mimetypes.xml" || die
domenu google-earth-pro.desktop
local size
for size in 16 22 24 32 48 64 128 256 ; do
newicon -s ${size} product_logo_${size}.png google-earth-pro.png
done
rm -rf xdg-mime xdg-settings google-earth-pro google-earth-pro.desktop product_logo_*
insinto /opt/${PN}
doins -r *
chmod +x "${ED}"/opt/${PN}/{${PN}{,-bin},repair_tool,gpsbabel} || die
find "${ED}" -type f '(' -name '*.so.*' -o -name '*.so' ')' -exec chmod +x '{}' + || die
pax-mark -m "${ED}"/opt/${PN}/${PN}-bin
}
pkg_postinst() {
elog "When you get a crash starting Google Earth, try adding a file ~./.config/Google/GoogleEarthPlus.conf"
elog "with the following options:"
elog "lastTip = 4"
elog "enableTips = false"
elog ""
elog "In addition, the use of free video drivers may cause problems associated with using the Mesa"
elog "library. In this case, Google Earth 6x likely only works with the Gallium3D variant."
elog "To select the 32bit graphic library use the command:"
elog " eselect mesa list"
elog "For example, for Radeon R300 (x86):"
elog " eselect mesa set r300 2"
elog "For Intel Q33 (amd64):"
elog " eselect mesa set 32bit i965 2"
elog "You may need to restart X afterwards"
xdg_desktop_database_update
xdg_mimeinfo_database_update
xdg_icon_cache_update
}
pkg_postrm() {
xdg_desktop_database_update
xdg_mimeinfo_database_update
xdg_icon_cache_update
}
|