commit:     da3ce18965f7c474e4e4162a3299275345905acf
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Mon Jan 22 18:16:46 2018 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Mon Jan 22 19:51:45 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=da3ce189

net-libs/signon-ui: EAPI 6, fix src_prepare

Package-Manager: Portage-2.3.20, Repoman-2.3.6

 net-libs/signon-ui/signon-ui-0.15-r1.ebuild | 54 +++++++++++++++++++++++++++++
 1 file changed, 54 insertions(+)

diff --git a/net-libs/signon-ui/signon-ui-0.15-r1.ebuild 
b/net-libs/signon-ui/signon-ui-0.15-r1.ebuild
new file mode 100644
index 00000000000..d2b2a02363e
--- /dev/null
+++ b/net-libs/signon-ui/signon-ui-0.15-r1.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit qmake-utils
+
+DESCRIPTION="Online accounts 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
+COMMON_DEPEND="
+       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
+"
+DEPEND="${COMMON_DEPEND}
+       test? ( dev-qt/qttest:5 )
+"
+RDEPEND="${COMMON_DEPEND}
+       !<net-libs/libproxy-0.4.12[kde]
+"
+
+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
+}

Reply via email to