blob: 45e226e2215b9816086a07988cc514d3b53b2199 (
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
|
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake desktop go-env go-module systemd xdg-utils
MY_PN="${PN/-mail/}"
MY_P="${MY_PN}-${PV}"
DESCRIPTION="Serves Proton Mail to IMAP/SMTP clients"
HOMEPAGE="https://proton.me/mail/bridge https://github.com/ProtonMail/proton-bridge/"
SRC_URI="https://github.com/ProtonMail/${MY_PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz
https://dev.gentoo.org/~expeditioneer/distfiles/${CATEGORY}/${PN}/${P}-vendor.tar.xz"
S="${WORKDIR}"/${MY_P}
LICENSE="GPL-3+ Apache-2.0 BSD BSD-2 ISC LGPL-3+ MIT MPL-2.0 Unlicense"
SLOT="0"
KEYWORDS="~amd64"
IUSE="gui"
# Quite a few tests require Internet access
PROPERTIES="test_network"
RESTRICT="test"
RDEPEND="
app-crypt/libsecret
gui? (
>=dev-libs/protobuf-21.12:=
dev-libs/re2:=
>=dev-libs/sentry-native-0.6.5-r1
dev-qt/qtbase:6=[gui,icu,widgets]
dev-qt/qtdeclarative:6=[widgets]
dev-qt/qtsvg:6=
media-libs/mesa
net-libs/grpc:=
)
"
DEPEND="${RDEPEND}"
PATCHES=(
"${FILESDIR}"/${PN}-3.15.1-gui_gentoo.patch
)
# $S is there for bug 957684
DOCS=( "${S}"/{README,Changelog}.md )
src_unpack() {
default
if [[ -d "${WORKDIR}"/vendor ]]; then # if we ship the dependencies
mv "${WORKDIR}"/vendor "${S}"/vendor || die # move them into the tree
fi
go-env_set_compile_environment
}
src_prepare() {
xdg_environment_reset
default
if use gui; then
# prepare desktop file
local desktopFilePath="${S}"/dist/${MY_PN}.desktop
sed -i 's/protonmail/proton-mail/g' ${desktopFilePath} || die
sed -i 's/Exec=proton-mail-bridge/Exec=proton-mail-bridge-gui/g' ${desktopFilePath} || die
# build GUI
local PATCHES=()
BUILD_DIR="${WORKDIR}"/gui_build \
CMAKE_USE_DIR="${S}"/internal/frontend/bridge-gui/bridge-gui \
cmake_src_prepare
fi
}
src_configure() {
if use gui; then
local mycmakeargs=(
-DBRIDGE_APP_FULL_NAME="Proton Mail Bridge"
-DBRIDGE_APP_VERSION="${PV}+git"
-DBRIDGE_REPO_ROOT="${S}"
-DBRIDGE_TAG="NOTAG"
-DBRIDGE_VENDOR="Gentoo Linux"
-DCMAKE_DISABLE_PRECOMPILE_HEADERS=OFF
)
BUILD_DIR="${WORKDIR}"/gui_build \
CMAKE_USE_DIR="${S}"/internal/frontend/bridge-gui/bridge-gui \
cmake_src_configure
fi
}
src_compile() {
emake -Onone build-nogui
if use gui; then
BUILD_DIR="${WORKDIR}"/gui_build \
CMAKE_USE_DIR="${S}"/internal/frontend/bridge-gui/bridge-gui \
cmake_src_compile
fi
}
src_test() {
emake -Onone test
}
src_install() {
exeinto /usr/bin
newexe bridge ${PN}
if use gui; then
BUILD_DIR="${WORKDIR}"/gui_build \
CMAKE_USE_DIR="${S}"/internal/frontend/bridge-gui/bridge-gui \
cmake_src_install
mv "${ED}"/usr/bin/bridge-gui "${ED}"/usr/bin/${PN}-gui || die
newicon {"${S}"/dist/bridge,${PN}}.svg
newmenu {dist/${MY_PN},${PN}}.desktop
fi
systemd_newuserunit "${FILESDIR}"/${PN}.service-r1 ${PN}.service
einstalldocs
}
|