blob: 2913bfb8a1f51edcc5706cd964cf306d97cb4bfb (
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
|
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
inherit qmake-utils
DESCRIPTION="Mission control plugin for Telepathy to provide IM accounts and authentication"
HOMEPAGE="https://01.org/gsso"
SRC_URI="https://dev.gentoo.org/~johu/distfiles/${P}.tar.xz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE=""
DEPEND="
dev-libs/glib:2
net-im/telepathy-mission-control
net-libs/libaccounts-glib
net-libs/libsignon-glib
net-libs/telepathy-glib
"
RDEPEND="${DEPEND}"
src_configure() {
eqmake5
}
src_install() {
emake INSTALL_ROOT="${D}" install
}
|