You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
1.1 KiB
61 lines
1.1 KiB
# Copyright 1999-2019 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
COMMIT=4368bb77d9d1abc2978af514225ba4a42c29a646
|
|
inherit qmake-utils
|
|
|
|
DESCRIPTION="Online accounts signon UI"
|
|
HOMEPAGE="https://gitlab.com/accounts-sso/signon-ui"
|
|
SRC_URI="https://gitlab.com/accounts-sso/${PN}/-/archive/${COMMIT}/${PN}-${COMMIT}.tar.bz2 -> ${P}.tar.bz2"
|
|
|
|
LICENSE="GPL-2 GPL-3"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 arm64 x86"
|
|
IUSE="test"
|
|
|
|
BDEPEND="test? ( dev-qt/qttest:5 )"
|
|
DEPEND="
|
|
dev-libs/glib:2
|
|
dev-qt/qtcore:5
|
|
dev-qt/qtdbus:5
|
|
dev-qt/qtdeclarative:5
|
|
dev-qt/qtgui:5
|
|
dev-qt/qtnetwork:5[ssl]
|
|
dev-qt/qtwebengine:5
|
|
dev-qt/qtwidgets:5
|
|
net-libs/accounts-qt
|
|
net-libs/signond
|
|
net-libs/libproxy
|
|
x11-libs/libnotify
|
|
"
|
|
RDEPEND="${DEPEND}
|
|
dev-qt/qtwebchannel:5
|
|
"
|
|
|
|
RESTRICT="test"
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}/${P}-webengine-cachedir-path.patch"
|
|
"${FILESDIR}/${P}-fix-username-field-reading.patch"
|
|
)
|
|
|
|
S="${WORKDIR}/${PN}-${COMMIT}"
|
|
|
|
src_prepare() {
|
|
default
|
|
|
|
if ! use test; then
|
|
sed -i -e '/^SUBDIRS.*/,+1d' tests/tests.pro || die "couldn't disable tests"
|
|
fi
|
|
}
|
|
|
|
src_configure() {
|
|
eqmake5
|
|
}
|
|
|
|
src_install() {
|
|
emake INSTALL_ROOT="${D}" install
|
|
}
|