blob: fd915cb5725574c8302d79c4d59c0f6561610a52 (
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
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{10..13} pypy3 )
inherit desktop python-single-r1 go-module qmake-utils virtualx xdg
DESCRIPTION="Anonymous encrypted VPN client powered by Bitmask"
HOMEPAGE="https://riseup.net/en/vpn https://0xacab.org/leap/bitmask-vpn https://bitmask.net"
SRC_URI="
https://0xacab.org/leap/bitmask-vpn/-/archive/${PV}/bitmask-vpn-${PV}.tar.gz -> ${P}.tar.gz
https://dev.gentoo.org/~andrewammerlaan/${P}-deps.tar.xz
"
S="${WORKDIR}/bitmask-vpn-${PV}"
# Generated with dev-go/golicense
LICENSE="GPL-3 BSD-2 CC0-1.0 MIT BSD"
SLOT="0"
KEYWORDS="~amd64"
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
IUSE="test"
PROPERTIES="test_network"
RESTRICT="test"
# The tests require internet access to connect to Riseup Networks
BDEPEND="
virtual/pkgconfig
dev-qt/qttools[linguist]
"
DEPEND="
dev-qt/qtbase:6[gui,widgets]
dev-qt/qtdeclarative:6[widgets]
dev-qt/qtsvg:6
media-libs/libglvnd
"
RDEPEND="${DEPEND}
${PYTHON_DEPS}
net-vpn/openvpn
sys-auth/polkit
"
src_prepare() {
default
# do not pre-strip
sed -i -e '/strip $RELEASE\/$TARGET/d' gui/build.sh || die
# We need qmake and lrelease from qt6 bin dir
export PATH="${PATH}:$(qt6_get_bindir)" || die
}
src_compile() {
emake build
}
src_test() {
emake test
virtx emake test_ui
}
src_install() {
einstalldocs
newbin "build/qt/release/bitmask-vpn" riseup-vpn
python_scriptinto /usr/sbin
python_doscript "pkg/pickle/helpers/bitmask-root"
insinto /usr/share/polkit-1/actions
newins "pkg/pickle/helpers/se.leap.bitmask.policy" se.leap.bitmask.riseupvpn.policy
newicon -s scalable "providers/riseup/assets/icon.svg" riseup.svg
make_desktop_entry "${PN}" RiseupVPN riseup Network
dodoc -r docs/*
}
|