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.
gentoo-overlay/net-libs/signon-ui/signon-ui-0.15.ebuild

50 lines
942 B

# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
inherit qmake-utils
DESCRIPTION="Signon UI"
HOMEPAGE="https://launchpad.net/signon-ui"
SRC_URI="https://launchpad.net/${PN}/trunk/${PV}/+download/${P}.tar.bz2"
LICENSE="GPL-2 GPL-3"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE="test"
RESTRICT="test"
# <libproxy-0.4.12[kde] results in segfaults due to symbol collisions with qt4
RDEPEND="
dev-libs/glib:2
dev-qt/qtcore:5
dev-qt/qtdbus:5
dev-qt/qtgui:5
dev-qt/qtnetwork:5[ssl]
dev-qt/qtwebkit:5
dev-qt/qtwidgets:5
net-libs/accounts-qt
net-libs/signond
net-libs/libproxy
x11-libs/libnotify
!<net-libs/libproxy-0.4.12[kde]
"
DEPEND="${RDEPEND}
test? ( dev-qt/qttest:5 )
"
src_prepare() {
use test || sed -i -e '/^SUBDIRS.*/,+1d' tests/tests.pro || die "couldn't disable tests"
}
src_configure() {
eqmake5
}
src_install() {
emake INSTALL_ROOT="${D}" install
}