blob: b26be1ac4f28a916710d6885eea143a42369381a (
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
|
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit gnome2-utils qmake-utils
if [[ ${PV} == "9999" ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/ricochet-im/ricochet"
else
SRC_URI="https://github.com/ricochet-im/ricochet/archive/v${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64 ~x86"
fi
DESCRIPTION="Privacy-focused instant messaging through Tor hidden services"
HOMEPAGE="https://ricochet.im"
LICENSE="BSD"
SLOT="0"
IUSE="debug hardened"
RDEPEND="
dev-libs/openssl:0=
dev-libs/protobuf:0=
dev-qt/qtcore:5
dev-qt/qtdeclarative:5
dev-qt/qtgui:5
dev-qt/qtmultimedia:5
dev-qt/qtnetwork:5
dev-qt/qtquickcontrols:5
dev-qt/qtwidgets:5
net-vpn/tor"
DEPEND="${RDEPEND}
dev-qt/linguist-tools:5
virtual/pkgconfig"
src_configure() {
local qmakeargs=( 'DEFINES+=RICOCHET_NO_PORTABLE' )
qmakeargs+=( $(usex debug 'CONFIG+=debug' 'CONFIG+=release') )
qmakeargs+=( $(usex hardened 'CONFIG+=hardened' 'CONFIG+=no-hardened') )
eqmake5 "${qmakeargs[@]}"
}
src_install() {
emake INSTALL_ROOT="${D}" install
}
pkg_postinst() {
gnome2_icon_cache_update
}
pkg_postrm() {
gnome2_icon_cache_update
}
|